@donedev/claude-skill
v0.3.6
Published
Done Agent Pack — Claude Code skill. Drop SKILL.md into ~/.claude/skills/done/ to teach Claude Code how to operate Done workspaces natively.
Downloads
362
Maintainers
Readme
@donedev/claude-skill
Native Claude Code skill for Done Agent Pack. Teaches Claude Code to operate Done workspaces with the full methodology (forward motion, roadmap-first, agent-owned QA, Visual E2E) automatically.
What's inside
SKILL.md— the skill file Claude Code reads. Contains the full operating manual for Done workspaces.index.js+index.d.ts— programmatic accessors so tools (e.g.donepack init) can install the skill into a user's Claude Code config.
Install (manual)
Install the package:
npm install @donedev/claude-skillCopy
SKILL.mdinto your Claude Code skills directory:mkdir -p ~/.claude/skills/done cp node_modules/@donedev/claude-skill/SKILL.md ~/.claude/skills/done/SKILL.mdRestart Claude Code (or reload your skills).
Open any Done Agent Pack workspace (folder containing
.done/). Claude Code activates thedoneskill automatically.
Install (programmatic)
import { SKILL_PATH, readSkill } from "@donedev/claude-skill";
console.log("SKILL.md path:", SKILL_PATH);
console.log(readSkill().slice(0, 200));What the skill does
When active, the skill overrides Claude Code defaults with the Done operating manual:
- Forward motion — no cosmetic "do you want me to continue?" checkpoints.
- Roadmap-first — no coding without
ROADMAP.md. - Agent-owned QA — including Browser / Visual E2E for any interactive ticket.
- 13 explicit stop conditions — everything else is execution.
- 10 canonical workspace modes — automatic classification.
- CLI integration — uses
donepackBash commands when faster.
Compatibility
- Claude Code (primary).
- Other agents that read
AGENTS.mdshould use the genericdone-agent-packpackage instead — they don't need the skill, sinceAGENTS.md+CLAUDE.mdare loaded directly from the pack.
License
MIT
