doc
Documentation Skill
Config-driven documentation scaffolding. Config lives inside the skill at config/defaults.yaml — no repo-root files needed.
Commands
| Command | What to run |
|---|---|
| start <name> | bash ${AGENTS_SKILLS_DIR}/scripts/start.sh "<name>" |
| expt <name> | bash ${AGENTS_SKILLS_DIR}/scripts/expt.sh "<name>" |
| plan <index> <title> | bash ${AGENTS_SKILLS_DIR}/scripts/plan.sh <index> "<title>" |
| finding <index> <title> | bash ${AGENTS_SKILLS_DIR}/scripts/finding.sh <index> "<title>" |
| ckpt <index> <description> | bash ${AGENTS_SKILLS_DIR}/scripts/ckpt.sh <index> "<description>" |
| research <index> <topic> | bash ${AGENTS_SKILLS_DIR}/scripts/research.sh <index> "<topic>" |
| review <index> <title> | bash ${AGENTS_SKILLS_DIR}/scripts/review.sh <index> "<title>" |
| learn <index> <domain> <title> | bash ${AGENTS_SKILLS_DIR}/scripts/learn.sh <index> "<domain>" "<title>" |
| list | bash ${AGENTS_SKILLS_DIR}/scripts/list.sh |
| status <index> | bash ${AGENTS_SKILLS_DIR}/scripts/status.sh <index> |
| resume <index> | bash ${AGENTS_SKILLS_DIR}/scripts/resume.sh <index> |
More from quickcall-dev/skills
worktree-fleet
Independence-validated parallel fleet that runs each worker (claude -p, codex exec, or pi -p) in its own git worktree. Use when tasks touch non-overlapping files and you need merge-safe isolation (each worker on its own branch). For DAG-ordered one-shot workers with budgets, use dag-fleet. For headless iteration with a reviewer loop, use iterative-fleet.
30fleet-plan
Analyze a task, pick the right fleet type, and generate a ready-to-launch fleet (fleet.json + prompt.md files). Discovers available fleet skills dynamically. Use when the user wants to run work in parallel, asks to "plan a fleet", or says "fleet-plan".
29dag-fleet
Persistent, budgeted, DAG-ordered runner for parallel `claude -p`, `codex exec`, or `pi -p` workers in tmux. Use ONLY when you need persistence across sessions, per-worker budget caps, dependency ordering, or mixed models/providers per worker. For ad-hoc parallel sub-agents inside a live conversation, use Claude Code's built-in Agent tool instead.
29iterative-fleet
Reviewer-gated iterative fleet for headless `claude -p`, `codex exec`, or `pi -p` workers that run in cycles until a designated reviewer approves the output. Use when the work needs multiple rounds of iteration with a quality gate — a reviewer worker reads all worker logs, writes a verdict (lgtm | iterate | escalate), and the orchestrator decides whether to continue, pause, or stop. NEVER kills or restarts workers automatically; the operator owns all kill/pause decisions.
29autoresearch-fleet
Karpathy-inspired autonomous research loop. Agent edits one file, evals, keeps or discards, repeats. Plateau-triggered web search breaks through ceilings. Git as state machine. Runs until stopped or budget exhausted. Supports claude, codex, and pi providers.
29