一键导入
para-archive
Archive the current context to create a clean slate for the next task. Removes worktrees, resets context/context.md, preserves summaries.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Archive the current context to create a clean slate for the next task. Removes worktrees, resets context/context.md, preserves summaries.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Display the PARA-Programming quick-reference guide with all 11 skills and the Research→Plan→Review→Execute→Review→Summarize→Archive workflow.
Decision helper to determine if PARA workflow should be used for a given request. Triages tasks into PARA-worthy vs direct-answer categories.
Execute the active plan by creating an isolated git worktree and tracking todos. Supports simple and phased plans with TDD-first commit-per-todo discipline.
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.
Create a planning document through collaborative dialogue with support for multi-phase plans. Use for all non-trivial changes before writing code. Gates the para-execute skill.
Perform deep codebase exploration and produce a context-compressed research document for planning. Use before the para-plan skill for non-trivial tasks to gather contracts, patterns, and interface boundaries.
| name | para-archive |
| description | Archive the current context to create a clean slate for the next task. Removes worktrees, resets context/context.md, preserves summaries. |
| 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 references to completed summaries.
context/context.md and extract worktree metadata, including top-level worktree_path and per-phase worktree paths.context/summaries/git worktree remove {worktree_path}para-archive skill again; do NOT force-remove because that can permanently destroy uncommitted workgit worktree prune to clean up stale references.para-worktrees/ if emptycontext/context.md to context/archives/YYYY-MM-DD-HHMM-context.mdcontext/context.md seeded from ../para-init/assets/context-template.md--fresh was specifiedSee ../para-init/references/context-schema.md for the full context metadata field reference.
If ../para-init/assets/context-template.md is not available in this install, create a minimal fresh context/context.md with empty active_context, completed_summaries, and research_docs arrays plus a current last_updated timestamp.
If ../para-init/references/context-schema.md is not available in this install, the minimal fields needed are: active_context (string[]), completed_summaries (string[]), research_docs (string[]), worktree_path (string or null), and last_updated (ISO 8601 string).
--freshCreate a clean context with no carryover references. Use this when all current work is complete and no summaries need to stay active.
--seedCreate a clean context from ../para-init/assets/context-template.md, then seed it with references to completed summaries and any still-relevant research docs.
Do NOT archive if work is still in progress or you need the current context for continued work.
ls -lt context/archives/
cp context/archives/2025-11-24-1430-context.md context/context.md
To restore a worktree after archive if the branch still exists:
git worktree add .para-worktrees/{task-name} para/{task-name}
grep -r "keyword" context/archives/