This repository is structured as a multi-skill package for the skills.sh ecosystem.
.
├── skills-lock.json
└── skills
└── osint-dorking
├── SKILL.md
├── README.md
├── requirements.txt
├── data
├── evals
└── scripts
Install the OSINT dorking skill directly via subpath:
npx skills add 000001000000/agent-toolkit/skills/osint-dorkingInstall the Claude SEO skill directly via subpath:
npx skills add 000001000000/agent-toolkit/skills/claude-seoInstall the Dev Playbook skill directly via subpath:
npx skills add 000001000000/agent-toolkit/skills/dev-playbookRepository URL:
- skills/osint-dorking: OSINT dorking workflow with GHDB-backed search tooling and trigger-eval utilities.
- skills/claude-seo: Generic-agent packaging of the Claude SEO workflow with vendored upstream scripts, prompts, and reference material.
- skills/dev-playbook: Default software development playbook with TDD-first flow, frontend/backend/full-stack rules, and verification gates.
For projects where you want this behavior by default:
- Install playbook skill:
npx skills add 000001000000/agent-toolkit/skills/dev-playbook- Invoke
dev-playbookonce in that project.
- On first invocation, the skill runs one-time setup automatically.
- It installs companion
tddfrom Matt Pocock's skills repository. - It merges or appends the managed workspace instructions block.
- It writes
.dev-playbook/.initializedso later invocations skip setup.
- Continue using
dev-playbooknormally.
- On every invocation, setup sync checks for template updates and refreshes the managed instructions block automatically when needed.
Optional manual setup (for non-interactive/bootstrap scripting):
bash .agents/skills/dev-playbook/scripts/setup-project.shFirst-run behavior:
- On first use of dev-playbook in a target project, it runs one-time setup via
.agents/skills/dev-playbook/scripts/ensure-setup.sh. - This installs companion
tdd, merges or appends the managed workspace instructions block, and writes.dev-playbook/.initialized.
Update behavior:
- On later invocations, the same script runs in sync mode and updates the managed instructions block only if the template changed.
Each skill is self-contained so adding additional skills later does not break existing installation paths.