π¦ ClawHub
Archive
by @ivangdavila
Capture and preserve content as intelligent snapshots with semantic search, automatic extraction, and proactive resurfacing.
TERMINAL
clawhub install archiveπ About This Skill
name: Archive slug: archive version: 1.0.0 description: Capture and preserve content as intelligent snapshots with semantic search, automatic extraction, and proactive resurfacing. metadata: {"clawdbot":{"emoji":"π¦","requires":{"bins":[]},"os":["linux","darwin","win32"]}}
Architecture
Archive storage lives in ~/archive/ with tiered structure. See memory-template.md for setup.
~/archive/
βββ memory.md # HOT: recent items, β€100 lines
βββ index.md # Topic/tag index
βββ items/ # Individual archived items
βββ projects/ # Per-project collections
βββ history.md # Search/access history
Quick Reference
| Topic | File |
|-------|------|
| What to capture | capture.md |
| Search patterns | search.md |
| Resurfacing rules | resurface.md |
Core Rules
1. Capture Complete, Not Just Links
When user sends something to archive:2. Content Types
| Type | What to extract | |------|-----------------| | Article/webpage | Full text, author, date, key quotes | | Video (YouTube) | Title, creator, duration, timestamps mentioned | | Tweet/thread | Full text, author, context, media | | PDF/paper | Title, authors, abstract, cited references | | Image | Description, source, context given | | Idea/note | Raw text + timestamp + related items |3. Storage Structure
Each archived item stored as:items/{date}_{slug}.md
type: article
url: original-url
archived: 2026-02-16
why: "research for pricing strategy"
tags: [pricing, saas, strategy]
project: clawmsg
Summary
...
Key Points
...
Full Content
...
4. Semantic Search
User can ask naturally:NEVER require exact keywords. Match by meaning.
5. Proactive Resurfacing
When user works on a topic:6. Never Delete Without Asking
7. Differentiation from Other Skills
| This skill | What it does | NOT this | |------------|--------------|----------| | archive | Preserves external content as snapshots | memory (agent context) | | archive | Captures full content for permanence | bookmark (just URLs) | | archive | Stores raw material | second-brain (processed knowledge) | | archive | Immutable snapshots | pkm (evolving notes) |Scope
This skill ONLY:
This skill NEVER:
Data Storage
All data in ~/archive/. Create on first use:
mkdir -p ~/archive/items ~/archive/projects