<< All versions
Skill v1.0.0
Automated scan100/100camacho/ai-skills/archive
──Details
PublishedApril 29, 2026 at 03:41 PM
Content Hashsha256:8c2b32f88606da45...
Git SHAef152e829788
──Files
Files (1 file, 1.3 KB)
SKILL.md1.3 KBactive
SKILL.md · 55 lines · 1.3 KB
version: "1.0.0" name: archive description: Fills Outcomes & Learnings in a plan file and renames it to .done.md.
Inputs
- Plan file path (default: most recent non-
.done.mdinai-workspace/plans/)
Steps
- Find the plan file:
``bash ls -t ai-workspace/plans/*.md | grep -v '.done.md' | head -1 ` If 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:
```markdown ## Outcomes & Learnings
Completed: [date]
### What Worked
- [bullet points]
### What Didn't
- [bullet points]
### Learnings
- [bullet points]
```
- Rename to .done.md:
``bash git mv ai-workspace/plans/<name>.md ai-workspace/plans/<name>.done.md ``
- Commit the archive:
``bash git add ai-workspace/plans/<name>.done.md git commit -m "docs: archive plan <name>" ``
Output: Confirmation that the plan is archived with path to .done.md file.