Skip to main content
ClaudeWave
Skill0 repo starsupdated yesterday

mindforge-new-project

The mindforge-new-project skill initializes a new project by executing a structured workflow that gathers context through guided questioning, optionally conducts domain research, and generates foundational planning documents including PROJECT.md, REQUIREMENTS.md, and ROADMAP.md. Use this skill when starting a new project to establish clear scope, requirements, and execution phases before beginning development work.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/sairam0424/MindForge /tmp/mindforge-new-project && cp -r /tmp/mindforge-new-project/.agent/skills/mindforge-new-project ~/.claude/skills/mindforge-new-project
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

<context>
**Flags:**
- `--auto` — Automatic mode. After config questions, runs research → requirements → roadmap without further interaction. Expects idea document via @ reference.
</context>

<objective>
Initialize a new project through unified flow: questioning → research (optional) → requirements → roadmap.

**Creates:**
- `.planning/PROJECT.md` — project context
- `.planning/config.json` — workflow preferences
- `.planning/research/` — domain research (optional)
- `.planning/REQUIREMENTS.md` — scoped requirements
- `.planning/ROADMAP.md` — phase structure
- `.planning/STATE.md` — project memory

**After this command:** Run `/mindforge-plan-phase 1` to start execution.
</objective>

<execution_context>
@.agent/workflows/mindforge-new-project.md
@.agent/references/questioning.md
@.agent/references/ui-brand.md
@.agent/templates/project.md
@.agent/templates/requirements.md
</execution_context>

<process>
Execute the new-project workflow from @.agent/workflows/mindforge-new-project.md end-to-end.
Preserve all workflow gates (validation, approvals, commits, routing).
</process>