Add plan key support for concurrent work streams #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces plan keys to the PARA workflow, enabling multiple concurrent work streams in the same repository without collision.
Changes
1. Command Updates (
commands/plan.md)/plan [plan-key] [task-description]-or_)PLAN-123,add_user_auth,fix-memory-leak2. File Naming Convention
YYYY-MM-DD-descriptive-name.extensionYYYY-MM-DD-{plan-key}-descriptive-name.extension2025-11-11-AUTH-123-refactor.md2025-11-11-add_user_auth-api-payload.json3. Context Structure (
resources/CLAUDE.md)active_contextfrom array to object grouped by plan key:Before:
{ "active_context": [ "context/plans/2025-11-08-payroll-api-mcp.md", "context/data/2025-11-08-payload-example.json" ] }After:
{ "active_context": { "PLAN-123": [ "context/plans/2025-11-08-PLAN-123-payroll-api-mcp.md", "context/data/2025-11-08-PLAN-123-payload-example.json" ], "add_user_authentication": [ "context/plans/2025-11-08-add_user_authentication-jwt-auth.md" ] } }4. Human-Readable Summaries
context/context.md:5. Template Updates
**Plan Key:** {PLAN_KEY}to plan template metadataBenefits
✅ Support multiple concurrent work streams - Work on different features/fixes simultaneously
✅ No collision between work - Each plan key groups its own files
✅ Clear organization - Easy to find all files related to specific work
✅ Better context management - Human-readable summaries per plan
✅ Scalable workflow - Handles complex projects with parallel work
Example Usage
Test Plan
🤖 Generated with Claude Code