Claude agent skill
The Starsystem skill teaches your AI agent how to operate ss — provision services, register domains, manage vault credentials, deploy to cloud providers, and use the MCP tools — without you having to explain the API each time.
Once installed, the agent automatically uses the skill whenever you ask it to do anything infrastructure-related.
Install
Section titled “Install”Claude Code — personal (all projects)
Section titled “Claude Code — personal (all projects)”mkdir -p ~/.claude/skills/starsystemcurl -o ~/.claude/skills/starsystem/SKILL.md \ https://docs.celestialintelligence.com/skills/starsystem.mdTakes effect immediately in the current session — no restart needed.
Claude Code — this project only
Section titled “Claude Code — this project only”mkdir -p .claude/skills/starsystemcurl -o .claude/skills/starsystem/SKILL.md \ https://docs.celestialintelligence.com/skills/starsystem.mdCommit .claude/skills/starsystem/SKILL.md to share it with your team.
Cursor
Section titled “Cursor”mkdir -p .cursor/skills/starsystemcurl -o .cursor/skills/starsystem/SKILL.md \ https://docs.celestialintelligence.com/skills/starsystem.mdKilo Code
Section titled “Kilo Code”mkdir -p .kilo/skills/starsystemcurl -o .kilo/skills/starsystem/SKILL.md \ https://docs.celestialintelligence.com/skills/starsystem.mdOpenCode
Section titled “OpenCode”mkdir -p .opencode/skills/starsystemcurl -o .opencode/skills/starsystem/SKILL.md \ https://docs.celestialintelligence.com/skills/starsystem.mdOpenCode also loads .claude/skills/ automatically, so the Claude Code project install works here too.
Antigravity
Section titled “Antigravity”mkdir -p .agent/skills/starsystemcurl -o .agent/skills/starsystem/SKILL.md \ https://docs.celestialintelligence.com/skills/starsystem.mdWindsurf
Section titled “Windsurf”Windsurf uses a single rules file rather than a skills directory:
curl -s https://docs.celestialintelligence.com/skills/starsystem.md >> .windsurfrules# Personal — applies to all projectscurl -o ~/.codex/AGENTS.md \ https://docs.celestialintelligence.com/skills/starsystem.md
# Project-levelcurl -o AGENTS.md \ https://docs.celestialintelligence.com/skills/starsystem.mdManual download
Section titled “Manual download”Download starsystem.md and place it at:
| Environment | Path |
|---|---|
| Claude Code (personal) | ~/.claude/skills/starsystem/SKILL.md |
| Claude Code (project) | .claude/skills/starsystem/SKILL.md |
| Cursor | .cursor/skills/starsystem/SKILL.md |
| Kilo Code | .kilo/skills/starsystem/SKILL.md |
| OpenCode | .opencode/skills/starsystem/SKILL.md |
| Antigravity | .agent/skills/starsystem/SKILL.md |
| Windsurf | append to .windsurfrules |
| Codex (personal) | ~/.codex/AGENTS.md |
| Codex (project) | AGENTS.md |
What it teaches your agent
Section titled “What it teaches your agent”Once installed, your agent knows how to:
- Provision infrastructure — Neon, Supabase, Fly, Railway, Cloudflare, AWS, local processes
- Register domains and wire DNS — Porkbun domain registration with automatic DNS record wiring
- Browse the provider catalog — compare pricing tiers across Neon, Hetzner, Porkbun, and 30+ SaaS services
- Manage vault credentials — store and reference secrets safely without exposing values
- Use MCP tools — the full
starsystem_*tool set, in the right order - Write correct YAML — service types, provider names, vault ref syntax,
depends_onordering
Example prompts after installing
Section titled “Example prompts after installing”Register myapp.io through Porkbun and point it at my Fly appSet up a Neon database for the staging environmentWhat providers are available for object storage and what do they cost?Deploy the api service to Fly and wire the domain DNS automaticallyCheck which vault credentials are missing before I deployStaying up to date
Section titled “Staying up to date”The skill file is updated alongside each Starsystem release. To update, re-run the original install command for your IDE.
Raw file
Section titled “Raw file”Direct URL: https://docs.celestialintelligence.com/skills/starsystem.md