install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ReScienceLab/opc-skills/archive" ~/.claude/skills/comeonoliver-skillshub-archive && rm -rf "$T"
manifest:
skills/ReScienceLab/opc-skills/archive/SKILL.mdsource content
Archive Skill
Capture, index, and reuse project knowledge across sessions.
When to Archive
- After completing a significant task (deploy, migration, major feature)
- After resolving a tricky debugging session
- When the user says "archive this"
- After any multi-step process with learnings worth preserving
When to Consult Archives
- Before debugging infrastructure, deploy, or CI issues
- Before repeating a process done in a past session
- When encountering an error that may have been solved before
Search:
grep -ri "keyword" .archive/
Index: .archive/MEMORY.md
Archive Workflow
- Read
— check for related existing archives.archive/MEMORY.md - Create
directory if needed.archive/YYYY-MM-DD/ - Write markdown file with YAML frontmatter (see
)references/TEMPLATE.md - Update
: add one-line entry under the right category.archive/MEMORY.md - If related archives exist, add
field in frontmatterrelated
Lookup Workflow
- Read
to find relevant entries.archive/MEMORY.md - Read the specific archive file for detailed context
- Apply learnings to current task
Categories
- infrastructure — AWS, ECS, IAM, networking, secrets, CloudWatch
- release — TestFlight, versioning, Git Flow, CHANGELOG
- debugging — Bug fixes, error resolution, gotchas
- feature — Feature design, implementation notes
- design — UI/UX, icons, visual design
Rules
must be in.archive/
— local-only notes.gitignore- Keep entries concise but reproducible
- Focus on problems, fixes, and exact commands
- Always update MEMORY.md after creating an archive
- Use descriptive filenames (e.g.,
notcloudwatch-logging.md
)session.md - Include YAML frontmatter with
,tags
, and optionalcategoryrelated