cs-getting-started
Installation
SKILL.md
Getting started with CodeSpring
This skill gets the agent connected to CodeSpring and points the user at the right next step. Keep it short and friendly — the goal is to remove setup friction, then hand off to a focused skill.
See the codespring skill for how CodeSpring works and the full CLI. See references/pitfalls.md for guardrails.
Step 1 — Connect (always do this first)
- CLI installed? If
codespringis missing, tell the user:npm i -g @codespring-app/cli. - Authenticated? Run
codespring auth status. If not authenticated / expired, ask them to runcodespring auth login(browser) and wait for confirmation. (Running the command also refreshes an expired token.) - Project linked? Run
codespring status.- Linked → note the project name and continue.
- Not linked → either link an existing project (
codespring projects→codespring init --project <id> --force) or, if they're starting new, create one (codespring project create --name "..."→codespring init --project <id> --force). - Always rely on the LOCAL
.codespring/config.jsonfor which project is active.
Report back plainly: "Connected to CodeSpring as , project ."