skills/setup-wizard/SKILL.md
Interactive onboarding wizard for environment setup. Guides through plugin installation, IDE integration, MCP servers, and API tokens. Use when user wants to set up, onboard, configure environment, or install tools.
npx skillsauth add RonanCodes/ronan-skills setup-wizardInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Interactive environment onboarding. Runs all sections by default, or target a specific one with flags.
/setup-wizard # Full onboarding (all sections)
/setup-wizard --tokens # API token setup only
/setup-wizard --ide # IDE integration only
/setup-wizard --mcp # MCP server setup only
/setup-wizard --check # Verify everything works
Run each section in order (or just the flagged one). Use AskUserQuestion for every choice.
Detect what's already installed:
~/.claude/plugins/ for the ro plugin/plugin to see currently installed pluginsRecommended — install as a Claude Code plugin (bundles all skills, one command):
/plugin marketplace add RonanCodes/ronan-skills
/plugin install ro@ronan-skills
Skills then invoke as /ro:<skill-name> (e.g., /ro:ralph, /ro:commit).
Alternative for non-Claude-Code agents (Cursor IDE, other agents using SKILL.md):
skills/npx skills add RonanCodes/ronan-skills/skills/<name> -gDetect the environment:
$TERM_PROGRAM — "vscode" means VS Code/Cursor$CURSOR_* env vars — confirms Cursor.cursor/ directory — Cursor project.vscode/ directory — VS Code projectBased on detection, guide setup:
~/.claude/skills/ (global) or .claude/skills/ (project).cursor/rules/ (project) or .cursorrules (legacy)Check current MCP config:
~/.claude/mcp.json if it existsSuggest useful MCP servers (ask which to install):
| Server | Purpose | Install |
|--------|---------|---------|
| Context7 | Up-to-date library docs | npx @anthropic-ai/claude-code mcp add context7 -- npx -y @upstash/context7-mcp@latest |
| Playwright | Browser automation & testing | npx @anthropic-ai/claude-code mcp add playwright -- npx -y @anthropic-ai/mcp-server-playwright |
| Fetch | HTTP requests from Claude | npx @anthropic-ai/claude-code mcp add fetch -- npx -y @anthropic-ai/mcp-server-fetch |
For each selected server, run the install command and verify it appears in config.
For each token, walk the user through setup:
| Token | Service | Signup URL | Used By |
|-------|---------|-----------|---------|
| PERPLEXITY_API_KEY | Perplexity AI | https://perplexity.ai/settings/api | perplexity-research |
| OPENAI_API_KEY | OpenAI | https://platform.openai.com/api-keys | various |
| GITHUB_TOKEN | GitHub | gh auth login or https://github.com/settings/tokens | GitHub integrations |
For each token:
gh auth login for GitHub)curl -s -o /dev/null -w "%{http_code}" -H "Authorization: Bearer $KEY" https://api.perplexity.ai/chat/completions -d '{"model":"sonar","messages":[{"role":"user","content":"test"}]}'curl -s -o /dev/null -w "%{http_code}" -H "Authorization: Bearer $KEY" https://api.openai.com/v1/modelsgh auth status${CLAUDE_PLUGIN_DATA}/.env (Claude Code plugin) or ~/.config/ro/.env (other agents). Use mkdir -p "$CLAUDE_PLUGIN_DATA" && echo "KEY=value" >> "$CLAUDE_PLUGIN_DATA/.env".--check)Verify all configured services still work:
development
--- name: worktree description: Coordinate multiple agents on one repo via a worktree-lock pool, so two agents never clobber each other's working tree. Acquire the first free slot (main, then beta/gamma… worktrees, created on demand), work there on your own branch, release when you've pushed. Use before modifying any repo that might be in use by another agent (factory, dataforce, etc.), or whenever you're told a repo is being worked on. Backed by `ro worktree`. category: development argument-hin
testing
--- name: ship description: Ship a feature branch the local-CI-first way — run the full local gate, push, open a PR, squash-merge, then deploy, without waiting on GitHub Actions. Use when a branch is ready for main and you want it merged and deployed now. Reads CI policy from `ro ci` (default skips remote CI because GitHub Actions billing keeps hitting limits). Sibling to /ro:gh-ship (waits on GitHub checks) and /ro:cf-ship (the deploy half). Triggers on "ship it", "ship this", "merge and deploy
testing
--- name: setup-logging description: Set up (or audit) the observability stack in a TanStack Start + Cloudflare Workers app so it is "diagnosable by default" — structured logging (logtape) with a request context carrying trace_id + userId + tenant/orgId, a trace_id propagated FE→BE→logs→Sentry→PostHog, Cloudflare Workers observability enabled, and Sentry + PostHog wired. Two modes: `setup` (wire it into an app) and `audit` (check an existing app + report gaps). Use when scaffolding a new app, wh
development
Manage credentials INSIDE the active ~/.claude/.env file — read which token/account to use for a given app (Simplicity vs Dataforce vs Ronan-personal), add or update a secret WITHOUT it passing through the chat (an interactive Terminal window prompts for it), and track secrets that were exposed in a transcript so they get rotated. Sibling to /ro:context (which switches WHICH env file is active). Use when the user wants to add an API key/token/secret, asks "which credential do I use for X", needs the env organized/labelled, or a secret was pasted into the chat and should be rotated.