Generate and maintain help center articles from your codebase.
# All agents (Claude Code, Codex, Cursor, Windsurf, Gemini CLI, etc.)
npx skills add selvoapp/skillsOther install methods
Claude Code plugin:
/plugin marketplace add selvoapp/skills
/plugin install selvo-help-center@selvo
Manual:
git clone https://github.com/selvoapp/skills ~/.claude/skills/selvonpm install -g @selvo/cliCreate an API key in your Selvo dashboard under Settings > API Keys, then:
selvo loginVerify everything is connected:
selvo doctor/generate-help-center
| Skill | Command | Description |
|---|---|---|
| generate-help-center | /generate-help-center |
Reads your codebase and creates structured help articles organized into collections |
| update-help-center | /update-help-center |
Detects stale docs after code changes and surgically updates only what changed |
Reads your README, routes, config, and APIs. Creates structured articles organized into collections with proper content hierarchy. All articles are created as drafts for your review.
/generate-help-center
/generate-help-center billing and API docs
Three-phase pipeline: detect code changes, match to existing articles, decide what to update. Supports surgical section-level edits, dry-run mode, and dismissal memory.
/update-help-center
/update-help-center --since "1 week ago"
/update-help-center --dry-run
/update-help-center --full-scan
Automate documentation maintenance with GitHub Actions:
| Workflow | Trigger | Description |
|---|---|---|
| sync-docs.yml | Push to docs/help-center/ |
Sync markdown files to Selvo |
| changelog.yml | GitHub release published | Create help center article from release notes |
| doc-drift.yml | PR merged to main | Check for stale docs and update them |
- A Selvo account (Starter plan or above)
- An API key from Settings > API Keys
- The Selvo CLI (
npm install -g @selvo/cli) - An MCP-compatible AI agent (Claude Code, Codex, Cursor, Windsurf, etc.)
MIT

