Agent skills for Railcode, extracted from the main railcode repo so they can be
installed and versioned on their own.
These skills ship through the open agent-skills ecosystem (the skills CLI), so they
work across Claude Code, Codex, Cursor, and other agents.
| Skill | Description |
|---|---|
create-railcode-app |
Build, modify, debug, and deploy Railcode static apps end-to-end — scaffolding with the CLI, wiring the zero-config SDK globals, configuring access policies, testing with railcode dev, and deploying. |
create-railcode-agent |
Build, test, publish, invoke, and schedule organization or personal Railcode managed agents. |
manage-railcode-org |
Administer apps, members, roles/grants, saved queries, connections, service connectors, analytics, and logs through the CLI. |
Worked, deployable Railcode apps and agents live in
Railcode-HQ/railcode-examples. Each skill
carries the slice it needs — create-railcode-app the apps/ examples, create-railcode-agent
the agents/ ones — and tells agents to copy a single example directory (no git) when it covers
what the user is asking for.
Install or update all Railcode skills:
npx skills add Railcode-HQ/railcode-skillsOr install a single skill by name:
npx skills add Railcode-HQ/railcode-skills --skill create-railcode-appUpdate it later:
npx skills update create-railcode-apponboard.sh runs the full step-by-step onboarding end to end —
the same flow as the in-app "Step by step" tab: install the CLI, install the
skill, sign in, scaffold a "hello world" app, and deploy it.
./onboard.sh # full flow (login opens your browser)
./onboard.sh --help # options: --app, --dir, --api-url, --agent, --skip-*, --no-deployThe skill is installed non-interactively to a default agent set (Claude Code,
OpenCode, Codex, Pi, Kiro, Cursor); change it with --agent <list> or fall back
to the interactive picker with --prompt-agent. Signing in is always
interactive (it opens your browser). Everything else is automatic and idempotent
— re-running skips work that's already done.