A Claude Code plugin that provides the JARPA methodology (Journal, Architecture, Requirements, Plan, Actions) for structured documentation in AI-assisted software engineering projects.
JARPA maintains clear, up-to-date documentation while preserving complete project history in a cumulative journal. It automates session workflows so you never lose context between Claude Code sessions.
- Journal - Cumulative session history (append-only)
- Architecture - System design and components (current state)
- Requirements - Project requirements and constraints (current state)
- Plan - Milestones and current progress (current state)
- Actions - Task list with Now/Next/Later sections (current state)
Only the Journal is cumulative. All other documents reflect the current state of your project.
Add the marketplace to ~/.claude/settings.json:
{
"extraKnownMarketplaces": {
"hephaistos": {
"source": {
"source": "git",
"url": "https://github.com/pgaufillet/hephaistos-marketplace.git"
}
}
}
}Then install and enable:
claude plugin install jarpa@hephaistos
claude plugin enable --scope local jarpa@hephaistosgit clone https://github.com/pgaufillet/jarpa.git ~/jarpaAdd to ~/.claude/settings.json:
{
"pluginDirs": ["~/jarpa"]
}- Claude Code CLI
- Git
-
Initialize in your project directory:
/jarpa:init
This creates a
jarpa/directory with 5 documentation files and a.claude/jarpa.local.mdsettings file. -
Fill in initial documentation:
jarpa/PROJECT_PLAN.md- Define goal, milestones, current stepjarpa/TODO.md- Add your first task (aim for 2-4 hours of work)jarpa/REQUIREMENTS.md- Document initial requirementsjarpa/ARCHITECTURE.md- Sketch initial architecture
-
Start working. Session hooks handle the rest:
- On session start: shows current milestone, task, and recent progress
- Before commits: reminds you to update the journal
- On session end: guides you through journal entry and doc updates
| Command | Description |
|---|---|
/jarpa:init |
Initialize JARPA documentation structure in your project |
/jarpa:session-end |
End-of-session documentation (also triggered automatically) |
/jarpa:archive |
Archive older journal entries when JOURNAL.md grows large |
/jarpa:status |
Show current project status |
/jarpa:migrate |
Migrate a legacy JARPA project to the plugin format |
/jarpa:test-installation |
Verify the plugin is installed correctly |
After initialization, your project will contain:
your-project/
├── jarpa/
│ ├── PROJECT_PLAN.md # Current milestones and progress
│ ├── TODO.md # Task list (Now/Next/Later)
│ ├── REQUIREMENTS.md # Current requirements
│ ├── ARCHITECTURE.md # Current design
│ ├── JOURNAL.md # Cumulative session history
│ └── archive/
│ └── JOURNAL_*.md # Archived journal entries
└── .claude/
└── jarpa.local.md # Project settings (not committed)
- Issues: Report bugs or request features
- Contributing: Pull requests welcome
MIT License - See LICENSE file for details.
Created by Pierre Gaufillet.
JARPA was designed and built using Claude by Anthropic. The methodology, plugin architecture, and documentation were developed through AI-assisted pair programming - which is exactly what JARPA is designed to support.