Loading...
Loading...
Update naming and documentation references across the Claude Pilot codebase. Use when renaming features, updating descriptions, changing terminology, or ensuring consistency after modifying commands, skills, or workflows. Triggers on "update references", "rename X to Y across codebase", "sync documentation", or "update all mentions of X".
npx skill4agent add maxritter/claude-pilot update-refs| Location | What to Check |
|---|---|
| Welcome banner text, feature descriptions |
| Pilot CLI help text and messages |
| Installer CLI help text, prompts |
| Post-install instructions |
| UI banner and status messages |
| Location | What to Check |
|---|---|
| Feature descriptions, usage examples, counts (rules, hooks, skills, commands) |
| SEO meta tags, page title, structured data |
| SEO description, structured data counts |
| Stats bar counts (rules, hooks, skills, LSPs, MCP) |
| Feature cards, descriptions, item counts |
| Under the Hood subtitle counts, hooks pipeline, rules categories |
| /spec workflow details, All Commands grid |
| Before & After comparison table |
| Standard plan feature counts, value proposition |
| Installation instructions |
| Footer links |
| Navigation links |
| Location | What to Check |
|---|---|
| Package name, description, metadata |
| Shell installer script messages |
| Package docstring |
| Location | What to Check |
|---|---|
| Command descriptions in frontmatter ( |
| Skill descriptions in frontmatter |
| Standard rules content |
| Hook configuration and event triggers |
| Hook script messages and logic |
| Sub-agent definitions (plan-verifier, spec-verifier) |
| LSP server configuration |
| Language mode definitions |
| Location | What to Check |
|---|---|
| Project-specific rules (git-commits.md, project.md) |
| Project-specific skills (lsp-cleaner, pr-review, update-refs) |
| ❌ Don't | ✅ Do |
|---|---|
| "22 rules loaded every session" | "Production-tested rules loaded every session" |
| "7 hooks auto-lint on every edit" | "Hooks auto-lint, format, type-check on every edit" |
| "14 coding skills" | "Coding skills activated dynamically" |
| "5 MCP servers + 3 LSP servers" | "MCP servers + language servers pre-configured" |
| "2,900+ lines of best practices" | "Production-tested best practices" |
Grep pattern="old term" glob="*.{md,py,tsx,json,ts}"Grep pattern="old term" glob="*.{md,py,tsx,json,ts}"cd docs/site && npm run build| Change Type | Key Locations |
|---|---|
| Command rename/add | pilot/commands/*.md, README.md, WorkflowSteps.tsx, WhatsInside.tsx, counts table |
| Skill rename | pilot/skills/*/SKILL.md, README.md, WhatsInside.tsx, DeepDiveSection.tsx |
| Rule add/remove | pilot/rules/*.md, README.md, all count locations (see table above) |
| Hook change | pilot/hooks/hooks.json, pilot/hooks/*.py, DeepDiveSection.tsx, README.md |
| Feature description | launcher/banner.py, README.md, site components, Index.tsx structured data |
| Workflow change | pilot/commands/.md, pilot/rules/.md, README.md, WorkflowSteps.tsx |
| Package rename | pyproject.toml, install.sh, launcher/init.py, README.md |
| Installer message | installer/.py, installer/steps/.py |
| Terminology change | Search all locations in checklist above — grep for old term, replace everywhere |