skills/task-archiver/SKILL.md
archives a local agent task directory so it can be recalled for future reference
npx skillsauth add barkbarkgoose/ai-agents task-archiverInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Archive completed task projects by compressing artifacts while preserving a human-readable summary.
Use this skill when:
.agent-tasks/archive/.agent-tasks/archive (will be requested by user)You must be provided:
.agent-tasks/archive/20260130-facebook-api-v24-upgrade)Verify the project has:
ORCHESTRATOR.md file (required - serves as the summary)complete/If ORCHESTRATOR.md is missing, stop and ask the user to create one or provide an alternative summary.
Create ARCHIVE_INFO.md with:
Using tar, compress all subdirectories:
tar -czvf artifacts.tar.gz complete/ pending/ testing/ agent-transcripts/ --ignore-failed-read
Note: --ignore-failed-read handles missing folders gracefully.
After successful compression, remove the original folders:
complete/pending/testing/agent-transcripts/NOTE: you MUST delete these empty directories
Keep these files uncompressed:
ORCHESTRATOR.md — Primary summary documentARCHIVE_INFO.md — Archive metadataIMPLEMENTATION_COMPLETE.md — If present, useful summaryartifacts.tar.gz — The compressed archiveProvide:
NOTE: if not done yet, the task/project folder MUST be moved to .agent-tasks/archive/
archive/[project-name]/
├── ORCHESTRATOR.md # Human-readable project summary
├── ARCHIVE_INFO.md # Archive metadata and restore instructions
├── IMPLEMENTATION_COMPLETE.md # (if present)
└── artifacts.tar.gz # Compressed: all task folders and transcripts
To restore an archived project:
cd .agent-tasks/archive/[YYYYMMDD-task-folder]
tar -xzvf artifacts.tar.gz
Use the task-archiver skill to archive:
- Project: .agent-tasks/archive/20260130-facebook-api-v24-upgrade
# Archive Information
**Project:** [Project Name]
**Archived:** [Date]
**Archived By:** Cursor Agent
## Contents
The following folders have been compressed into `artifacts.tar.gz`:
| Folder | File Count | Description |
|--------|------------|-------------|
| complete/ | X files | Completed task definitions |
| pending/ | X files | Remaining/skipped tasks |
| testing/ | X files | Testing strategies |
| agent-transcripts/ | X files | Agent execution logs |
## Restoration
To extract the archived contents:
\`\`\`bash
tar -xzvf artifacts.tar.gz
\`\`\`
## Summary
See `ORCHESTRATOR.md` for the complete project summary, task list, and progress notes.
Before archiving, verify:
ORCHESTRATOR.md exists and is completeORCHESTRATOR.md uncompressed because it serves as the project's historical recordIMPLEMENTATION_COMPLETE.md or similar summary file, preserve it as welltar commandtools
Use this skill when working on Vue 3 + TypeScript client-side code, including creating new components, refactoring existing UI, implementing store logic with Pinia, or building reusable composition functions.
data-ai
orchestration skill for tasks, takes a task folder as input and runs one sub-agent for each individual task file. Should NOT execute or make any changes on its own, only sub-agents may do that.
tools
create tasks as files in local project directory
tools
Use this skill when you need to style UI components using Tailwind CSS with BEM naming conventions. This includes tasks like creating new component styles, refactoring existing Tailwind utility clusters into maintainable BEM classes, organizing CSS layers, improving template readability, or ensuring consistent styling patterns across a codebase.