From docflow
Scaffolds a docs tree, writes docflow.json, and adds agent guidance for repo documentation when no meaningful docs exist yet.
How this skill is triggered — by the user, by Claude, or both
Slash command
/docflow:initThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Goal: initialize docflow only when doctor says this repo has no meaningful docs yet. Keep existing user-authored files; generated maintenance files may be refreshed.
Goal: initialize docflow only when doctor says this repo has no meaningful docs yet. Keep existing user-authored files; generated maintenance files may be refreshed.
bash scripts/docflow-doctor.sh --target <REPO ROOT>
Route by recommendation.
docflow-init: continue.docflow-adopt: stop and run /docflow:adopt instead (preserves existing docs).docflow-repair: stop and run /docflow:repair instead.Pick docs root.
docs/ unless the user explicitly chooses another root.Pick project name.
README.md has clear project title, use that.Run scaffold from plugin root (idempotent; skips existing user content, refreshes generated files):
bash scripts/scaffold.sh --docs-root <DOCS_ROOT> --project "<PROJECT NAME>" --target "<REPO ROOT>"
This creates the category tree, drops templates, writes docflow.json, and scaffolds AGENTS.md + GEMINI.md + .cursorrules.
Add root README link if missing:
## Documentation<DOCS_ROOT>/README.mdSeed the first changelog. Create <DOCS_ROOT>/changelog/(mmm-yy).md for the current month from the template, summarizing recent history (git log --no-merges --pretty='%h %ad %s' --date=short -20). Use the changelog skill for the format.
Regenerate the map and validate:
bash scripts/docflow-map.sh "<REPO ROOT>/<DOCS_ROOT>"
bash scripts/docflow-validate.sh --target "<REPO ROOT>"
Fresh template placeholders are warnings; validation errors are blockers.
Report what was created (docs root, docflow.json, AGENTS.md, GEMINI.md, .cursorrules, validation status) and point the user at /docflow:author (writing), /docflow:router (reading), /docflow:validate (readiness), /docflow:repair (maintenance).
/docflow:adopt over /docflow:init.AGENTS.md and docflow.json aligned on docs root.<DOCS_ROOT>/NAMING.md for every file you create after.npx claudepluginhub medadembha/docflow --plugin docflowAdds docflow infrastructure to a repository with existing documentation, adding missing config, folders, helpers, agent guidance, and an adoption review without rewriting existing docs.
Bootstraps or repairs the llmdoc documentation skeleton in a repository. Automates directory creation, investigation, and initial doc generation.
Organizes project documentation into intent-based structure (BUILD/FIX/UNDERSTAND/LOOKUP) by auditing files and creating directories. Use for new projects, chaotic docs, or navigation issues.