archive
Archive session learnings, debugging solutions, and deployment logs to .archive/yyyy-mm-dd/ as indexed markdown with searchable tags. Use when completing a significant task, resolving a tricky bug, deploying, or when the user says "archive this". Maintains .archive/MEMORY.md index for cross-session knowledge reuse.
Author
Category
File ManagementInstall
Hot:4
Download and extract to your skills directory
Copy command and send to AI Agent for auto-install:
Download and install this skill https://openskills.cc/api/download?slug=resciencelab-skills-archive&locale=en&source=copy
Archive Skill - A Tool for Archiving Session Experiences and Reusing Knowledge Across Sessions
Skill Overview
The Archive skill archives learning outcomes, debugging solutions, and deployment logs from sessions into the
.archive/yyyy-mm-dd/ directory. It preserves project knowledge in indexed Markdown files with searchable tags for quick reference and reuse in future sessions.Applicable Scenarios
.archive/MEMORY.md to confirm whether similar issues have been resolved before.Core Features
.archive/YYYY-MM-DD/ directory by date, write Markdown files with YAML frontmatter (tags, category, related), and use descriptive filenames (such as cloudwatch-logging.md) for easy identification..archive/MEMORY.md, forming a browsable cross-session directory.related field. Full-text searches can be performed with grep -ri "keyword" .archive/.Frequently Asked Questions
Where is archived content stored, and will it be committed to Git?
Archives are stored locally in the project’s
.archive/ directory, organized into subdirectories by date. This skill requires adding .archive/ to .gitignore, so archives are purely local notes and will not be committed to the repository.How can I retrieve previously archived experience?
There are two ways: first, read the
.archive/MEMORY.md index, locate the relevant entry by category, and then open the specific file; or directly run grep -ri "keyword" .archive/ to perform a full-text search across all archives.When should an archive be created?
There are four occasions: after completing an important task (deployment, migration, or major feature); after resolving a difficult debugging issue; after completing a multi-step process with valuable lessons; or when you directly tell the agent, “archive this.” Before archiving, the system first checks
MEMORY.md for existing related records to avoid duplication.