From devflow
Use when writing, updating, or reviewing documentation — API docs, README, inline comments, architecture docs
npx claudepluginhub nexuz-sys/devflow --plugin devflowThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Standards and process for maintaining accurate, useful documentation.
Announce at start: "I'm using the devflow:documentation skill to update docs."
// Good: explains why
// Retry 3 times because the payment API has transient 503s during deploys
await retry(chargeCard, { attempts: 3 });
// Bad: explains what (the code already says this)
// Call retry with 3 attempts
await retry(chargeCard, { attempts: 3 });
agent({ action: "orchestrate", agents: ["documentation-writer"], task: "<description>" })
skill({ action: "getContent", skill: "documentation" })
Read .context/agents/documentation-writer.md and .context/skills/documentation/SKILL.md.
Apply the checklist and layers above directly.
| Pattern | Problem |
|---|---|
| "I'll document later" | Later never comes. Document during Confirmation phase. |
| Documenting implementation details | Implementation changes; document behavior and contracts. |
| Copy-pasting code as examples | Examples should be simplified, self-contained. |
| No examples at all | One example beats three paragraphs of explanation. |
| Stale docs left in place | Wrong docs mislead worse than no docs. Remove or update. |