Stats
Actions
Tags
From para
Initializes PARA-Programming structure: sets up context directories (data,plans,summaries,archives,servers), global/project CLAUDE.md files from templates, and .gitignore for .para-worktrees/. Use at project start for Claude workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/para:inithaikuThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Initialize PARA-Programming structure in the current project.
Initialize PARA-Programming structure in the current project.
/para:init
/para:init --template=basic # Minimal project CLAUDE.md (default)
/para:init --template=full # Comprehensive project CLAUDE.md
~/.claude/CLAUDE.md (copied from resources/CLAUDE.md if missing; never overwrites existing)mkdir -p context/{data,plans,summaries,archives,servers}
context/context.md seeded from context-template.md:
# Current Work Summary
Ready to start first task.
---
```json
{
"active_context": [],
"completed_summaries": [],
"last_updated": "TIMESTAMP"
}
```
See context-schema.md for the full field reference.CLAUDE.md (if missing) from claude-basic-template.md (default, --template=basic) or claude-full-template.md (--template=full).gitignore to include .para-worktrees/:
.gitignore exists, check for .para-worktrees/ entry; append if missing.gitignore does not exist, create it with .para-worktrees/ as its contentAfter initialization, display:
PARA-Programming Structure Initialized
context/
├── archives/ # Historical context snapshots
├── data/ # Input files, payloads, datasets
├── plans/ # Pre-work planning documents
├── servers/ # MCP tool wrappers
├── summaries/ # Post-work reports
└── context.md # Active session context
.para-worktrees/ # Git worktree isolation (gitignored)
Files created/updated:
- ~/.claude/CLAUDE.md (global methodology, if it didn't exist)
- context/context.md (fresh context file)
- CLAUDE.md (project-specific context, if it didn't exist)
- .gitignore (added .para-worktrees/ entry)
Next steps:
1. Edit CLAUDE.md with your project-specific context
2. Create your first plan: /para:plan <task-description>
3. Check status: /para:status
4. Get help: /para:help
npx claudepluginhub brian-lai/para-programming-plugin --plugin paraGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.