Skip to content

Commit 98f2a2f

Browse files
committed
chore: rename repo d-cryptic/claude-sentinel → d-cryptic/ccsentinel
1 parent 38ec0ee commit 98f2a2f

15 files changed

Lines changed: 23 additions & 23 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ version = "0.1.0"
1111
edition = "2021"
1212
authors = ["d-cryptic"]
1313
license = "MIT"
14-
repository = "https://github.com/d-cryptic/claude-sentinel"
14+
repository = "https://github.com/d-cryptic/ccsentinel"
1515

1616
[workspace.dependencies]
1717
# Serialization

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
```bash
2626
# macOS / Linux
27-
curl -fsSL https://raw.githubusercontent.com/d-cryptic/claude-sentinel/main/install.sh | sh
27+
curl -fsSL https://raw.githubusercontent.com/d-cryptic/ccsentinel/main/install.sh | sh
2828

2929
# Cargo
3030
cargo install cst-cli

alfred/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Claude Sentinel -- Alfred Workflow
22

3-
Alfred script commands for [claude-sentinel](https://github.com/d-cryptic/claude-sentinel).
3+
Alfred script commands for [claude-sentinel](https://github.com/d-cryptic/ccsentinel).
44

55
## Install
66

crates/cst-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ description = "Claude Sentinel — intelligent Claude Code multi-account manager
88
keywords = ["claude", "cli", "profile-manager", "anthropic", "dev-tools"]
99
categories = ["command-line-utilities", "authentication"]
1010
readme = "../../README.md"
11-
documentation = "https://github.com/d-cryptic/claude-sentinel/blob/main/docs/USAGE.md"
12-
homepage = "https://github.com/d-cryptic/claude-sentinel"
11+
documentation = "https://github.com/d-cryptic/ccsentinel/blob/main/docs/USAGE.md"
12+
homepage = "https://github.com/d-cryptic/ccsentinel"
1313
repository.workspace = true
1414
default-run = "cst"
1515

crates/cst-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["claude", "cli", "auth", "profile-manager", "anthropic"]
99
categories = ["command-line-utilities", "authentication", "config"]
1010
readme = "../../README.md"
1111
documentation = "https://docs.rs/cst-core"
12-
homepage = "https://github.com/d-cryptic/claude-sentinel"
12+
homepage = "https://github.com/d-cryptic/ccsentinel"
1313
repository.workspace = true
1414
exclude = ["/tests", "/.github"]
1515

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
### Clone and build
1919

2020
```bash
21-
git clone https://github.com/d-cryptic/claude-sentinel
21+
git clone https://github.com/d-cryptic/ccsentinel
2222
cd claude-sentinel
2323

2424
# Auto-activate with direnv, or manually:

docs/INSTALL.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
### macOS / Linux
66

77
```bash
8-
curl -fsSL https://raw.githubusercontent.com/d-cryptic/claude-sentinel/main/install.sh | sh
8+
curl -fsSL https://raw.githubusercontent.com/d-cryptic/ccsentinel/main/install.sh | sh
99
```
1010

1111
### macOS — Homebrew
1212

1313
```bash
14-
brew tap d-cryptic/claude-sentinel
14+
brew tap d-cryptic/ccsentinel
1515
brew install claude-sentinel
1616
```
1717

@@ -20,10 +20,10 @@ The Homebrew formula automatically installs shell completions for bash, zsh, and
2020
### Windows (PowerShell)
2121

2222
```powershell
23-
iwr https://raw.githubusercontent.com/d-cryptic/claude-sentinel/main/install.ps1 | iex
23+
iwr https://raw.githubusercontent.com/d-cryptic/ccsentinel/main/install.ps1 | iex
2424
```
2525

26-
Or download `cst-vX.Y.Z-x86_64-windows.zip` from [GitHub Releases](https://github.com/d-cryptic/claude-sentinel/releases), extract, and add `cst.exe` to your PATH.
26+
Or download `cst-vX.Y.Z-x86_64-windows.zip` from [GitHub Releases](https://github.com/d-cryptic/ccsentinel/releases), extract, and add `cst.exe` to your PATH.
2727

2828
### Via Cargo
2929

@@ -48,8 +48,8 @@ Each archive ships a `.sha256` checksum file. Download and install manually:
4848
```bash
4949
# Example: macOS Apple Silicon
5050
VERSION=v0.1.0
51-
curl -LO https://github.com/d-cryptic/claude-sentinel/releases/download/${VERSION}/cst-${VERSION}-aarch64-apple-darwin.tar.gz
52-
curl -LO https://github.com/d-cryptic/claude-sentinel/releases/download/${VERSION}/cst-${VERSION}-aarch64-apple-darwin.tar.gz.sha256
51+
curl -LO https://github.com/d-cryptic/ccsentinel/releases/download/${VERSION}/cst-${VERSION}-aarch64-apple-darwin.tar.gz
52+
curl -LO https://github.com/d-cryptic/ccsentinel/releases/download/${VERSION}/cst-${VERSION}-aarch64-apple-darwin.tar.gz.sha256
5353

5454
# Verify checksum
5555
sha256sum -c cst-${VERSION}-aarch64-apple-darwin.tar.gz.sha256

homebrew-tap/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ After `git push --tags` triggers the release workflow:
2828
## Test locally before publishing
2929

3030
```bash
31-
brew tap d-cryptic/claude-sentinel /tmp/homebrew-tap
31+
brew tap d-cryptic/ccsentinel /tmp/homebrew-tap
3232
brew install claude-sentinel
3333
cst --version
3434
```

raycast/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Claude Sentinel — Raycast Script Commands
22

3-
Raycast script commands for [claude-sentinel](https://github.com/d-cryptic/claude-sentinel).
3+
Raycast script commands for [claude-sentinel](https://github.com/d-cryptic/ccsentinel).
44

55
## Install
66

website/app/components/AnnouncementBanner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export function AnnouncementBanner() {
22
return (
33
<div className="bg-black border-b-2 border-magenta/60 shadow-[0_0_12px_rgba(255,0,255,0.25)] py-2 px-3 sm:px-6 text-center text-xs sm:text-sm font-mono">
44
<a
5-
href="https://github.com/d-cryptic/claude-sentinel"
5+
href="https://github.com/d-cryptic/ccsentinel"
66
target="_blank"
77
rel="noopener noreferrer"
88
className="inline-flex items-center gap-2 text-neongreen hover:text-cyan transition-colors uppercase tracking-wider"

0 commit comments

Comments
 (0)