From para-skills
Initialize PARA-Programming structure in the current project. Use when setting up a new repo for PARA workflow, creating context/ directory, or bootstrapping AGENTS.md.
How this skill is triggered — by the user, by Claude, or both
Slash command
/para-skills: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 AGENTS.md (default)
$para-init --template=full # Comprehensive project AGENTS.md
~/.agents/AGENTS.md (copied from resources/AGENTS.md if missing; never overwrites existing).mkdir -p context/{data,plans,summaries,archives,servers}
context/context.md seeded from assets/context-template.md:
# Current Work Summary
Ready to start first task.
---
```json
{
"active_context": [],
"completed_summaries": [],
"last_updated": "TIMESTAMP"
}
```
See references/context-schema.md for the full field reference.AGENTS.md (if missing) from assets/agents-basic-template.md (default, --template=basic) or assets/agents-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 content.If references/context-schema.md is not available in this install (single-skill copy without the bundled resource), the minimal required context.md JSON schema is:
{
"active_context": [],
"completed_summaries": [],
"last_updated": "ISO-8601"
}
Required fields: active_context (string[]), completed_summaries (string[]), last_updated (ISO 8601 string). Optional fields include research_docs (string[]), worktree_path, execution_branch, execution_started, phased_execution, and workflow — all documented in the full schema.
After 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:
- ~/.agents/AGENTS.md (global methodology, if it didn't exist)
- context/context.md (fresh context file)
- AGENTS.md (project-specific context, if it didn't exist)
- .gitignore (added .para-worktrees/ entry)
Next steps:
1. Edit AGENTS.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
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub brian-lai/para-programming-agent-skills --plugin para-skills