Author a Multi-Skill Card
A multi-skill card should keep each skill as a normal skill directory with its own SKILL.md, then include those skill names in the card manifest.
Create the source:
drwn card new @team/review-stack --no-git
Add bundled skills:
drwn card source add-skill @team/review-stack architecture-review --from ./skills/architecture-review
drwn card source add-skill @team/review-stack test-review --from ./skills/test-review
drwn card source add-skill @team/review-stack docs-review --from ./skills/docs-review
Add any MCP definitions the card should carry:
drwn card source add-mcp @team/review-stack context7
Set metadata before publishing:
drwn card source set @team/review-stack --description "Team review stack" --version 1.0.0
drwn card source set @team/review-stack --stability stable --last-validated-with 0.1.0 --test-status-badge https://example.com/review-stack.svg
Validate the source and publish:
drwn card source show @team/review-stack
drwn card source doctor @team/review-stack
drwn card publish @team/review-stack
drwn card validate @team/review-stack@1.0.0
When replacing a bundled skill, rerun drwn card source add-skill with --force. When you want to remove a manifest reference but leave files in place for manual cleanup, use drwn card source remove-skill @team/review-stack docs-review --keep-files.