How to install archive
npx skills add https://github.com/camacho/ai-skills --skill archiveFull instructions (SKILL.md)
Source of truth, from camacho/ai-skills.
name: archive description: Fills Outcomes & Learnings in a plan file and renames it to .done.md.
Inputs
WORKTREE: absolute path to current worktree (resolve from session CWD orgit rev-parse --show-toplevel)- Plan file path (default: most recent non-
.done.mdin$WORKTREE/ai-workspace/plans/)
Steps
-
Find the plan file:
ls -t "$WORKTREE/ai-workspace/plans/"*.md | grep -v '.done.md' | head -1If plan is already
.done.md→ error: "Already archived." -
Read the plan file to understand what was planned.
-
Gather outcomes: Ask the user (or infer from git log + branch context):
- What worked well?
- What didn't go as planned?
- What would you do differently?
If user skips → write "Outcomes: not recorded" (don't block).
-
Write Outcomes & Learnings section to the plan file:
## Outcomes & Learnings **Completed**: [date] ### What Worked - [bullet points] ### What Didn't - [bullet points] ### Learnings - [bullet points] -
Rename to .done.md:
git -C "$WORKTREE" mv ai-workspace/plans/<name>.md ai-workspace/plans/<name>.done.md -
Commit the archive:
git -C "$WORKTREE" add ai-workspace/plans/<name>.done.md git -C "$WORKTREE" commit -m "docs: archive plan <name> Co-Authored-By: Claude <model>"
Output: Confirmation that the plan is archived with path to .done.md file.
Related skills
More from camacho/ai-skills and the wider catalog.
bail
Reflects, updates GitHub Issue, closes PR if open, cleans up worktree/branch.
capture
Creates a draft GitHub Issue with triage label from natural language description.
plan-review
Auto-assembles review panel using deterministic rules, dispatches agents against plan file, collects verdicts.
orient
Fetches issue context, auto-detects task type, maps to branch prefix, presents brief.
reflect
Use after merging a branch or completing a task to consolidate learnings into memory layers, close out issues, and verify the phase gate.