Hackathon curriculum plugins from Devpost — spec-driven development from idea to working app.
npx claudepluginhub trojanhorse7/standup-bot-hackathonA complete hackathon curriculum delivered as seven slash commands. Walk through spec-driven development from idea spark to working app in 3-4 hours.
A hackathon curriculum that guides you from idea spark to working app in 3–4 hours, delivered as seven agent commands.
Commands: /scope → /prd → /spec → /checklist → /build → /iterate → /evaluate
Works with Claude Code, OpenAI Codex, and Cursor.
/plugin marketplace add dvt-labs-testing/curriculum
/plugin install hackathon-in-a-plugin@curriculum
Then run /scope to start.
Requires Claude Code v1.0.33+.
Codex uses the same SKILL.md format natively. Clone and symlink the skills into your project:
git clone https://github.com/dvt-labs-testing/curriculum.git ~/.devpost-curriculum
# Copy skills into your project
cp -r ~/.devpost-curriculum/plugins/hackathon-in-a-plugin/skills .agents/skills/hackathon
Or copy the whole plugin into your home skills directory for global access:
mkdir -p ~/.agents/skills
cp -r ~/.devpost-curriculum/plugins/hackathon-in-a-plugin/skills/* ~/.agents/skills/
The AGENTS.md at the plugin root also works as a drop-in — copy it to your project root:
cp ~/.devpost-curriculum/plugins/hackathon-in-a-plugin/AGENTS.md ./AGENTS.md
Then run /scope to start.
Cursor uses .cursor/rules/*.mdc files. This repo includes a pre-built adapter:
git clone https://github.com/dvt-labs-testing/curriculum.git ~/.devpost-curriculum
# Copy the Cursor rules into your project
mkdir -p .cursor/rules
cp ~/.devpost-curriculum/cursor-rules/*.mdc .cursor/rules/
Then tell the agent: "Let's run /scope" to start the hackathon curriculum.
A complete hackathon curriculum built as a set of agent skills. Each command produces artifacts that downstream commands consume — scope doc, PRD, technical spec, build checklist, and final evaluation.
The curriculum teaches spec-driven development: the planning documents aren't busywork, they're the submission itself. The agent acts as a hackathon coach — brisk, sharp, encouraging — interviewing you through each phase.
Skills:
| Command | What it does |
|---|---|
/scope | Brainstorm and refine your idea into a focused project scope |
/prd | Turn scope into detailed product requirements |
/spec | Translate PRD into a technical blueprint |
/checklist | Break the spec into a concrete build checklist |
/build | Work through checklist items one at a time |
/iterate | Optional polish pass after the build is done |
/evaluate | Final evaluation with feedback and reflection |
docs/ folder — it contains your scope, PRD, spec, and other artifacts that downstream commands depend on.docs/ folder.MIT