Initialize project with overview document and scaffold
Initializes new projects with structured documentation, templates, and scaffolded directories for organized development.
/plugin marketplace add https://www.claudepluginhub.com/api/plugins/jaimearboleda-nextjs-claude-workflow/marketplace.json/plugin install jaimearboleda-nextjs-claude-workflow@cpd-jaimearboleda-nextjs-claude-workflowCheck for existing files (docs/overview.md, .claude/workflow.md, .claude/documentation-rules.md, .claude/CLAUDE.md). If any exist, ask whether to overwrite or skip.
Copy workflow templates from the plugin:
mkdir -p .claude docs planning/active planning/history
cp "${CLAUDE_PLUGIN_ROOT}/templates/workflow.md" .claude/workflow.md
cp "${CLAUDE_PLUGIN_ROOT}/templates/documentation-rules.md" .claude/documentation-rules.md
cp "${CLAUDE_PLUGIN_ROOT}/templates/CLAUDE.md" .claude/CLAUDE.md
Gather project information via AskUserQuestion:
Create docs/overview.md following documentation-rules.md Layer 1 format:
# [Project Name]
## Project Objective
[Description]
**Target Audience:** [From user]
**Main Use Cases:**
- [Use case 1]
## General Architecture
[Next.js-specific: App Router vs Pages Router, rendering strategies, data fetching]
## Key Technical Decisions
[Based on tech stack choices]
## Project Map
[Standard Next.js structure with explanations]
Create scaffold directories (if not already present):
app/, components/, lib/, docs/, docs/routes/, docs/apis/, planning/, planning/active/, planning/history/
Create docs/scope-changes.md with empty template.
Output summary: List files/dirs created. Next step: /create-plan-overview