A scaffold for quickly launching new projects with agent-friendly structure and guardrails. See AGENTS.md for directory structure and conventions.
This project uses custom skills that are not bundled by default. Install both before running AI-assisted workflows.
Superpowers — core agentic skills (planning, TDD, debugging, etc.):
/plugin install superpowers@claude-plugins-officialMcD's Agentic Tools — project-analysis, self-improvement, and code review skills:
git clone git@github.com:csmcdermott/mcds_agentic_tools.git ~/mcds_agentic_tools
cp -r ~/mcds_agentic_tools/skills/* ~/.claude/skills/Superpowers — add to ~/.config/opencode/opencode.json:
{
"plugin": [
"superpowers@git+https://github.com/obra/superpowers.git"
]
}McD's Agentic Tools:
git clone git@github.com:csmcdermott/mcds_agentic_tools.git ~/mcds_agentic_tools
mkdir -p ~/.config/agents/skills
mkdir -p ~/.config/agents/commands
cp -r ~/mcds_agentic_tools/skills/* ~/.config/opencode/skills/
cp -r ~/mcds_agentic_tools/commands/* ~/.config/opencode/commands/One-time install required before running any just recipes:
brew install justjust install-pre-push- Clone or use this repo as a GitHub template.
- Replace
{PROJECT NAME}placeholders inAGENTS.mdanddocs/agent/project-analysis.md. - Add project-specific tech stack, architecture notes, and constraints to
AGENTS.md. - Run
just install-pre-pushto enable the pre-push hook. - Fill in the stub justfile recipes (
lint,test,coverage) with real commands.