with one click
archive
Archive the current context to create a clean slate for the next task
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Archive the current context to create a clean slate for the next task
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Initialize PARA-Programming structure in the current project
Create a planning document through collaborative dialogue, with support for multi-phase plans
Perform deep codebase exploration and produce a context-compressed research document
Orchestrate the full PARA execution cycle across phases
Execute the active plan by creating an isolated worktree and tracking todos
Spawn an independent subagent with a Staff+ FAANG engineer persona to review a plan or PR
| name | archive |
| description | Archive the current context to create a clean slate for the next task |
| model | haiku |
| effort | low |
Archive the current context to create a clean slate for the next task.
/para:archive
/para:archive --fresh # Completely empty context
/para:archive --seed # Carry forward relevant context
Default: create fresh context with reference to completed summaries.
context/context.md and extract worktree metadata (worktree_path, or per-phase worktree_path entries for phased plans)worktree_path found in metadata, run git worktree remove {worktree_path}/para:archive; do NOT force-remove (this would permanently destroy uncommitted work)git worktree prune to clean up stale references.para-worktrees/ directory if emptycontext/context.md to context/archives/YYYY-MM-DD-HHMM-context.mdcontext/context.md seeded from ../init/context-template.md:# Current Work Summary
Ready for next task.
---
```json
{
"active_context": [],
"completed_summaries": [
"context/summaries/YYYY-MM-DD-task-name-summary.md"
],
"last_updated": "TIMESTAMP"
}
```
See ../init/context-schema.md for the full field reference.
Do NOT archive if work is still in progress or you need the current context for continued work.
ls -lt context/archives/ # List archives
cp context/archives/2025-11-24-1430-context.md context/context.md # Restore
To restore a worktree after archive (if branch still exists):
git worktree add .para-worktrees/{task-name} para/{task-name}
grep -r "keyword" context/archives/