syncable-cli-skills
v0.1.15
Published
Install Syncable CLI skills for AI coding agents (Claude Code, Cursor, Windsurf, Codex, Gemini CLI)
Maintainers
Readme
One command installs 11 skills (7 command + 4 workflow) that give AI coding agents full access to Syncable's security scanning, vulnerability detection, IaC validation, Kubernetes optimization, and deployment pipeline - all through the sync-ctl CLI.
Supported Agents
| Agent | Install Type | Format |
|-------|-------------|--------|
| Claude Code | Plugin (~/.claude/plugins/cache/syncable/) | Plugin marketplace with SKILL.md directories |
| Codex | Global (~/.agents/skills/) | SKILL.md directories |
| Cursor | Per-project (.cursor/rules/) | .mdc with alwaysApply |
| Windsurf | Per-project (.windsurf/rules/) | .md with trigger: always |
| Gemini CLI | Global (~/.gemini/<profile>/skills/) | SKILL.md directories |
Quick Start
npx syncable-cli-skillsThat's it. The installer will:
- Check if
sync-ctlis installed (and offer to install it viacargoif not) - Detect which AI coding agents you have
- Let you pick which agents should receive skills
- Install skills in each agent's native format
Then open your agent and say: "assess this project"
What Gets Installed
Command Skills
Atomic wrappers around individual sync-ctl commands. Each skill teaches the agent when and how to invoke a specific tool:
| Skill | What it does |
|-------|-------------|
| syncable-analyze | Detect tech stack, languages, frameworks, dependencies |
| syncable-security | Scan for secrets, hardcoded credentials, insecure patterns |
| syncable-vulnerabilities | Check dependencies for known CVEs |
| syncable-dependencies | Audit licenses, find outdated or deprecated packages |
| syncable-validate | Lint Dockerfiles, Compose files, Terraform, K8s manifests |
| syncable-optimize | Analyze Kubernetes resource requests, limits, cost efficiency |
| syncable-platform | Authenticate, select projects/environments, deploy |
Workflow Skills
Multi-step orchestrations that chain command skills together with decision logic:
| Skill | What it does |
|-------|-------------|
| syncable-project-assessment | Full health check: stack analysis + security + vulnerabilities + dependencies |
| syncable-security-audit | Deep pre-deployment security review with paranoid mode scanning |
| syncable-iac-pipeline | Validate all IaC files + Kubernetes optimization (conditional) |
| syncable-deploy-pipeline | End-to-end deploy: auth, analyze, security gate, deploy + monitor |
CLI Reference
npx syncable-cli-skills [command] [options]Commands
| Command | Description |
|---------|-------------|
| install | Install sync-ctl and skills (default) |
| uninstall | Remove skills from agents |
| update | Update skills to the latest version |
| status | Show what's installed and where |
Options
| Option | Description |
|--------|-------------|
| --skip-cli | Skip the sync-ctl installation check |
| --dry-run | Preview what would happen without making changes |
| --agents <list> | Comma-separated list: claude,cursor,windsurf,codex,gemini |
| --global-only | Only install to global agents (Claude Code, Codex) |
| --project-only | Only install to project-level agents (Cursor, Windsurf, Gemini) |
| -y, --yes | Skip all confirmation prompts |
| --verbose | Show detailed output for debugging |
Examples
# Interactive install (default)
npx syncable-cli-skills
# Install for specific agents only
npx syncable-cli-skills install --agents claude,cursor
# Non-interactive CI install
npx syncable-cli-skills install --yes --global-only
# Preview without making changes
npx syncable-cli-skills install --dry-run
# Check current installation status
npx syncable-cli-skills status
# Update to latest skills
npx syncable-cli-skills update
# Remove all skills
npx syncable-cli-skills uninstall --yesPrerequisites
- Node.js >= 18 (required to run the installer)
- Rust / Cargo (required for
sync-ctl- the installer can set this up for you) - sync-ctl (the Syncable CLI - the installer can install this via
cargo install syncable-cli)
If cargo or sync-ctl are missing, the installer will walk you through setting them up interactively.
How It Works
Skills are markdown files with YAML frontmatter that describe when to use a tool and how to invoke it. They don't execute code directly - they teach the AI agent's reasoning layer about the capabilities available through sync-ctl.
When an agent encounters a task like "check this project for vulnerabilities," the skill gives it the exact command, flags, output interpretation logic, and error handling to do the job correctly.
Each agent has its own format for loading skills:
- Claude Code reads
.mdfiles from~/.claude/skills/ - Codex reads
SKILL.mdfrom directories in~/.codex/skills/ - Cursor reads
.mdcfiles with special frontmatter from.cursor/rules/ - Windsurf reads
.mdfiles withtrigger: alwaysfrom.windsurf/rules/ - Gemini CLI reads from a
GEMINI.mdfile in the project root
The installer transforms skills into each format automatically.
Updating
Skills are bundled in the npm package. When new skills or improvements are published:
npx syncable-cli-skills updateThis removes the old skills and installs the latest version.
Uninstalling
npx syncable-cli-skills uninstallThis removes only the Syncable skills. It does not uninstall sync-ctl, cargo, or rustup - those are general-purpose tools you may rely on.
Privacy
This installer runs entirely locally. It does not collect analytics, send telemetry, or phone home. The only network requests it makes are to install rustup or sync-ctl if you explicitly approve those steps.
License
GPL-3.0 - See LICENSE for details.
Links
- Syncable CLI - The CLI toolbox these skills teach agents to use
- crates.io -
cargo install syncable-cli
