archive

Fills Outcomes & Learnings in a plan file and renames it to .done.md.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "archive" with this command: npx skills add camacho/ai-skills/camacho-ai-skills-archive

Inputs

  • Plan file path (default: most recent non-.done.md in ai-workspace/plans/)

Steps

  1. Find the plan file:

    ls -t ai-workspace/plans/*.md | grep -v '.done.md' | head -1
    

    If plan is already .done.md → error: "Already archived."

  2. Read the plan file to understand what was planned.

  3. 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).

  4. Write Outcomes & Learnings section to the plan file:

    ## Outcomes & Learnings
    
    **Completed**: [date]
    
    ### What Worked
    - [bullet points]
    
    ### What Didn't
    - [bullet points]
    
    ### Learnings
    - [bullet points]
    
  5. Rename to .done.md:

    git mv ai-workspace/plans/<name>.md ai-workspace/plans/<name>.done.md
    
  6. Commit the archive:

    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.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

plan-review

No summary provided by upstream source.

Repository SourceNeeds Review
General

clone-website

No summary provided by upstream source.

Repository SourceNeeds Review
General

archive

No summary provided by upstream source.

Repository SourceNeeds Review
General

frontend-ui-animator

No summary provided by upstream source.

Repository SourceNeeds Review