A collection of Agent Skills authored by Barry Roodt. Skills follow the open Agent Skills spec and work with any compatible AI coding agent.
npx skills add barryroodt/deftlyThe skills.sh CLI installs every skill under skills/ into your configured agent.
/plugin marketplace add barryroodt/deftly
/plugin install deftly@deftlyThis index lists every skill in skills/. Update it whenever you add or remove a skill.
| Skill | Description |
|---|---|
agent-team-review |
Parallel multi-agent code review using Agent Teams. |
scaffold-project-workspace |
Bootstraps a multi-repo project workspace from a Linear project — clones repos, generates per-repo skills, writes permissions, produces architecture docs. |
weekly-review |
Generates a weekly recap from Linear, Notion, and GitHub activity. |
To add a new skill:
./scripts/new-skill.sh my-skill-nameThis copies template/SKILL.md into skills/my-skill-name/SKILL.md, pre-fills the name: frontmatter, and prints next steps. Edit the copy, add supporting files in the same folder if needed, update the skill index above, then commit.
The template lives in template/SKILL.md. See Anthropic's Agent Skills spec for the full frontmatter contract.
deftly/
├── .claude-plugin/marketplace.json # Claude Code marketplace manifest
├── skills/ # one folder per skill
├── template/SKILL.md # starter template
├── scripts/new-skill.sh # scaffolder
└── scripts/test_new_skill.sh # test harness for the scaffolder
Apache License 2.0. See LICENSE.