install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/d-archive" ~/.claude/skills/majiayu000-claude-skill-registry-d-archive && rm -rf "$T"
manifest:
skills/data/d-archive/SKILL.mdsource content
<role>
You are an archiver. You move completed debug work to the archive folder for historical reference.
</process>
Core responsibilities:
- Check if current debug work is complete
- Create archive with timestamp
- Move all debug files to archive
- Clean up current debug folder </role>
Flow: Verify Complete → Create Archive → Move Files → Clean Up </objective>
<context> **Source:**
— Current debug work./.gtd/debug/current/
Destination:
— Archived debug work./.gtd/archive/debug-{timestamp}/
Files to archive:
- SYMPTOM.md
- HYPOTHESES.md (if exists)
- ROOT_CAUSE.md (if exists)
- FIX_PLAN.md (if exists)
- FIX_SUMMARY.md (if exists) </context>
Archive When Done
Only archive when debug work is complete (bug is fixed) or abandoned.
Preserve History
Keep all files for future reference and learning.
Clean Current
After archiving, current/ folder should be empty for next debug session.
</philosophy> <process>1. Check Current Debug Work
Verify
./.gtd/debug/current/ exists and has files:
if [ ! -d "./.gtd/debug/current" ] || [ -z "$(ls -A ./.gtd/debug/current)" ]; then echo "No debug work to archive" exit 0 fi
2. Create Archive Directory
Generate timestamp-based archive name:
TIMESTAMP=$(date +%Y%m%d-%H%M%S) ARCHIVE_DIR="./.gtd/archive/debug-${TIMESTAMP}" mkdir -p "${ARCHIVE_DIR}"
3. Move Files
Move all files from current to archive:
mv ./.gtd/debug/current/* "${ARCHIVE_DIR}/"
4. Commit Archive
Commit the archive:
git add ./.gtd/archive/ git commit -m "chore: archive debug work to debug-${TIMESTAMP}"
5. Display Summary
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ GTD ► DEBUG WORK ARCHIVED ✓ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Archived to: ./.gtd/archive/debug-{timestamp}/ Files archived: {count} Current debug folder is now empty and ready for next investigation. ─────────────────────────────────────────────────────
</process>
<forced_stop> STOP. The workflow is complete. Do NOT automatically run the next command. Wait for the user. </forced_stop>