Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v4

- name: Copy installer scripts to public
run: |
cp install.ps1 docs/public/install.ps1
cp install.sh docs/public/install.sh

- name: Build with VitePress
run: npm run docs:build
working-directory: docs
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ Auto-detects your OS and architecture (macOS arm64/x86_64, Linux x86_64/aarch64)
Run this one-liner in PowerShell (5.1 or later):

```powershell
irm https://raw.githubusercontent.com/stephenleo/cship/main/install.ps1 | iex
irm https://cship.dev/install.ps1 | iex
```

Installs to `%LOCALAPPDATA%\Programs\cship\cship.exe`, writes config to `%USERPROFILE%\.config\cship.toml`, and registers the statusline in `%APPDATA%\Claude\settings.json`.

> You can inspect the script before running: [install.ps1](https://raw.githubusercontent.com/stephenleo/cship/main/install.ps1)
> You can inspect the script before running: [install.ps1](https://cship.dev/install.ps1)

### 📦 Method 2: cargo install

Expand Down
1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ node_modules
.vitepress/dist
.vitepress/cache
public/install.sh
public/install.ps1
public/examples
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ Auto-detects your OS and architecture (macOS arm64/x86_64, Linux x86_64/aarch64)
Run this one-liner in PowerShell (5.1 or later):

```powershell
irm https://raw.githubusercontent.com/stephenleo/cship/main/install.ps1 | iex
irm https://cship.dev/install.ps1 | iex
```

Installs to `%LOCALAPPDATA%\Programs\cship\cship.exe`, writes config to `%USERPROFILE%\.config\cship.toml`, and registers the statusline in `%APPDATA%\Claude\settings.json`.

> You can inspect the script before running: [install.ps1](https://raw.githubusercontent.com/stephenleo/cship/main/install.ps1)
> You can inspect the script before running: [install.ps1](https://cship.dev/install.ps1)

### Cargo Install {#install-cargo}

Expand Down
Loading