{"id":42932557,"url":"https://github.com/leynier/ccst","last_synced_at":"2026-01-30T19:08:50.396Z","repository":{"id":331820437,"uuid":"1132002990","full_name":"leynier/ccst","owner":"leynier","description":"ccst (Claude Code Switch Tools) provides utilities for CCS daemon management and configuration backup/restore.","archived":false,"fork":false,"pushed_at":"2026-01-17T04:10:17.000Z","size":128,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-19T12:35:00.579Z","etag":null,"topics":["claude","claude-code","cli","config","contexts","switcher"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@leynier/ccst","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leynier.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-11T05:43:08.000Z","updated_at":"2026-01-18T23:06:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/leynier/ccst","commit_stats":null,"previous_names":["leynier/ccst"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/leynier/ccst","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leynier%2Fccst","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leynier%2Fccst/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leynier%2Fccst/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leynier%2Fccst/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leynier","download_url":"https://codeload.github.com/leynier/ccst/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leynier%2Fccst/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28917484,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T16:37:38.804Z","status":"ssl_error","status_checked_at":"2026-01-30T16:37:37.878Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude","claude-code","cli","config","contexts","switcher"],"created_at":"2026-01-30T19:08:49.698Z","updated_at":"2026-01-30T19:08:50.389Z","avatar_url":"https://github.com/leynier.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ccst - Claude Code Switch Tools\n\n\u003e Tools for managing CCS daemon and configuration\n\n**ccst** (Claude Code Switch Tools) provides utilities for CCS daemon management and configuration backup/restore.\n\n## Features\n\n- CCS daemon management\n- Configuration backup and restore\n- Shell completions for major shells\n\n## Quick Start\n\n### Installation\n\nInstall globally with npm (default):\n\n```bash\nnpm install -g @leynier/ccst\n```\n\nAlternative package managers:\n\n```bash\n# bun\nbun add -g @leynier/ccst\n\n# pnpm\npnpm add -g @leynier/ccst\n\n# yarn\nyarn global add @leynier/ccst\n```\n\n## CCS Daemon Management\n\n### Installation \u0026 Setup\n\n```bash\n# Install CCS CLI tool (interactive package manager selection)\nccst install\n\n# Run initial setup\nccst setup\n\n# Force setup even if already configured\nccst setup -f\n```\n\n### Starting \u0026 Stopping\n\n```bash\n# Start daemon\nccst start\n\n# Start with specific dashboard port\nccst start -p 3001\n\n# Set startup timeout (Windows only, default: 30 seconds)\nccst start -t 60\n\n# Force restart if already running\nccst start -f\n\n# Keep existing logs (append instead of truncate)\nccst start --keep-logs\n\n# Stop daemon\nccst stop\n\n# Force kill daemon\nccst stop -f\n```\n\n### Monitoring\n\n```bash\n# Check daemon status\nccst status\n\n# View logs (last 50 lines by default)\nccst logs\n\n# View more lines\nccst logs -n 100\n\n# Follow logs in real-time\nccst logs -f\n```\n\n## Configuration Backup\n\nBackup and restore all CCS configuration:\n\n```bash\n# Export configuration to ZIP file\nccst config dump\n\n# Export to custom path\nccst config dump my-backup.zip\n\n# Import configuration from ZIP\nccst config load\n\n# Import from custom path\nccst config load my-backup.zip\n\n# Replace all existing files during import\nccst config load -r\n\n# Skip confirmation prompt\nccst config load -y\n```\n\n## File Structure\n\nCCS daemon files (`~/.ccs/`):\n\n```text\n~/.ccs/\n├── .daemon.pid            # Daemon process ID\n├── .daemon.log            # Daemon log file\n└── .daemon.ports          # Dashboard port tracking\n```\n\n## Complete Command Reference\n\n### Daemon Commands\n\n- `ccst install` - Install CCS CLI tool (interactive package manager selection)\n- `ccst setup` - Run CCS initial setup\n- `ccst setup -f` - Force setup even if already configured\n- `ccst start` - Start CCS daemon\n- `ccst start -f` - Force restart if already running\n- `ccst start -p \u003cport\u003e` - Start with specific dashboard port\n- `ccst start -t \u003cseconds\u003e` - Set startup timeout (Windows only)\n- `ccst start --keep-logs` - Keep existing logs (append instead of truncate)\n- `ccst stop` - Stop CCS daemon\n- `ccst stop -f` - Force kill daemon (SIGKILL)\n- `ccst status` - Show daemon status, PID, and log info\n- `ccst logs` - View daemon logs (last 50 lines)\n- `ccst logs -n \u003clines\u003e` - View specified number of lines\n- `ccst logs -f` - Follow log output in real-time\n\n### Configuration Commands\n\n- `ccst config dump [output]` - Export CCS config to ZIP (default: ccs-config.zip)\n- `ccst config load [input]` - Import CCS config from ZIP (default: ccs-config.zip)\n- `ccst config load -r` - Replace all existing files during import\n- `ccst config load -y` - Skip confirmation prompt\n\n### Shell Completions\n\nEnable tab completion for faster workflow:\n\n```bash\n# Bash\nccst --completions bash \u003e ~/.local/share/bash-completion/completions/ccst\n\n# Zsh\nccst --completions zsh \u003e /usr/local/share/zsh/site-functions/_ccst\n\n# Fish\nccst --completions fish \u003e ~/.config/fish/completions/ccst.fish\n\n# PowerShell\nccst --completions powershell \u003e ccst.ps1\n```\n\n### Other Options\n\n- `ccst --completions \u003cshell\u003e` - Generate shell completions\n- `ccst --help` - Show help information\n- `ccst --version` - Show version\n\n## Note\n\nThis tool has been simplified to focus exclusively on CCS daemon management and configuration backup/restore. Profile switching and permission merging features have been removed as they are now natively supported by CCS.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleynier%2Fccst","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleynier%2Fccst","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleynier%2Fccst/lists"}