Agent skill
archivist
Universal content cataloging system. Save URLs, files, snippets, or voice notes with descriptions, auto-tag everything, make it all searchable. Use when: building a personal knowledge base, saving reference material, or organizing research. NOT for: file backup, website mirroring, or large-scale web scraping.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/archivist
Metadata
Additional technical details for this skill
- openpaw
-
{ "emoji": "\ud83d\udcc1", "install": [ { "id": "npm", "bins": [ "archivist" ], "kind": "node", "label": "Install Archivist (npm)", "package": "@pawhub/archivist" } ], "requires": { "bins": [ "curl", "sqlite3" ] } }
SKILL.md
Archivist ๐
Your personal librarian. Save anything โ URLs, files, notes, screenshots โ and Paw makes it searchable, tagged, and instantly retrievable.
When to Use
โ USE this skill when:
- "Save this article for later"
- Building a personal knowledge base
- Organizing research materials
- Archiving reference links
- Saving code snippets with context
- Creating a searchable bookmark library
- Capturing voice notes with transcription
- Organizing screenshots with descriptions
- Building a "second brain"
When NOT to Use
โ DON'T use this skill when:
- Full file backup/sync โ use Time Machine, Backblaze, etc.
- Website mirroring โ use wget, HTTrack
- Large-scale web scraping โ use Scrapy, Apify
- Photo library management โ use Photos, Lightroom
- Document version control โ use Git, Dropbox versioning
- Collaborative wikis โ use Notion, Obsidian Sync
Setup
Install Archivist:
npm install -g @pawhub/archivist
Initialize your archive:
# Create archive database
archivist init
# Set storage location (default: ~/.archivist)
archivist config set storage-path ~/Documents/Archive
# Verify setup
archivist status
Example Interactions
Saving Content
You: Save this for later: https://example.com/great-article
Paw: fetches and archives the page
โ Saved: "How to Build Better APIs"
Captured:
- Full HTML (for offline reading)
- Screenshot (visual reference)
- Extracted text (for search)
- Title: "How to Build Better APIs"
- Author: Jane Smith
- Published: 2026-01-15
Auto-tags: #api-design #programming #webdev
Summary (AI-generated):
Article discusses REST vs GraphQL trade-offs, API versioning strategies, and authentication best practices. Includes code examples in Python and Node.js.
Archive ID: arch_abc123
Want to add custom tags or notes? Just say the word. ๐พ
You: Add tags: must-read, reference, backend
Paw: updates the entry
โ Tags updated:
- #api-design (auto)
- #programming (auto)
- #webdev (auto)
- #must-read (you)
- #reference (you)
- #backend (you)
Searchable immediately. Try: archivist search "api design must-read" ๐
You: Save this snippet:
def retry_with_backoff(func, max_retries=3):
for attempt in range(max_retries):
try:
return func()
except Exception as e:
if attempt == max_retries - 1:
raise
time.sleep(2 ** attempt)
Paw: analyzes and archives the code
โ Saved: Code snippet
Details:
- Language: Python
- Type: Function definition
- Name:
retry_with_backoff - Lines: 9
Auto-tags: #python #error-handling #retry-logic
AI Summary:
Implements exponential backoff retry logic. Useful for API calls and network operations.
Archive ID: arch_xyz789
Suggested title: "Python Retry with Exponential Backoff"
Looks good? (yes/edit)
You: Yes
Paw: Perfect. Archived under #python #error-handling. Search it anytime with archivist search retry or just ask me "find that Python retry function." ๐
Searching Your Archive
You: Find articles about API design
Paw: searches archive
Found 4 results for "API design":
1. How to Build Better APIs (2 days ago) ๐ Article ยท https://example.com/great-article Tags: #api-design #programming #must-read REST vs GraphQL trade-offs, versioning...
2. REST API Best Practices 2026 (1 week ago) ๐ Article ยท https://dev.to/rest-best-practices Tags: #api-design #rest #backend Modern patterns for REST APIs including...
3. Designing APIs for Scale (2 weeks ago) ๐ Article ยท https://scaling.example.com Tags: #api-design #distributed-systems Load balancing, rate limiting, caching strategies...
4. GraphQL Schema Design (3 weeks ago) ๐ Article ยท https://graphql-guide.example.com Tags: #api-design #graphql Schema-first development, resolvers...
Want me to open one? (1-4) ๐
You: Open 1
Paw: opens the archived page
Opening "How to Build Better APIs" in your browser... (Archived version โ works offline)
Quick actions:
archivist note arch_abc123 "Used this for the v2 API redesign"archivist share arch_abc123(get shareable link)archivist export arch_abc123 --format pdf
Anything else? ๐พ
Voice Notes
You: [voice message] "Idea for the new feature: what if we added real-time collaboration like Figma but for code? Users could see each other's cursors and edits live. Would need WebSockets and operational transforms. Check out Yjs library."
Paw: transcribes and archives
โ Voice note saved
Transcription:
Idea for the new feature: what if we added real-time collaboration like Figma but for code? Users could see each other's cursors and edits live. Would need WebSockets and operational transforms. Check out Yjs library.
Auto-tags: #ideas #real-time #collaboration #websockets
Extracted mentions:
- Figma (reference)
- Yjs (library to research)
- WebSockets (tech)
- Operational transforms (concept)
AI Summary:
Feature idea: real-time collaborative code editing with live cursors. Implementation notes: WebSockets + operational transforms. Research Yjs library.
Archive ID: arch_voice_456
Created follow-up todo: "Research Yjs library for operational transforms"
Want me to find similar ideas in your archive? ๐ก
Advanced Search
You: Show me everything I saved last month about Python
Paw: filters archive
Last month (Jan 2026) ยท Python: 12 items
Breakdown:
- ๐ Articles: 7
- ๐ Code snippets: 4
- ๐ค Voice notes: 1
Top tags:
- #python (12)
- #async (5)
- #fastapi (3)
- #testing (3)
Most referenced:
- "Async Python Patterns" (opened 8 times)
- "FastAPI Best Practices" (opened 5 times)
Want the full list or just the highlights? ๐
You: Just highlights
Paw: Top 3 from last month:
1. Async Python Patterns ๐ Article ยท Saved Jan 5 Tags: #python #async #advanced Comprehensive guide to asyncio, context managers, generators Why it stood out: You've opened this 8 times
2. Python retry function snippet ๐ Code ยท Saved Jan 12 Tags: #python #error-handling Exponential backoff retry logic Why it stood out: You added note "use this everywhere"
3. Testing async code ๐ Article ยท Saved Jan 18 Tags: #python #testing #async pytest-asyncio examples and best practices Why it stood out: Tagged as #must-read
Want to review any of these? ๐พ
Organization
You: How's my archive looking?
Paw: generates statistics
๐ Your Archive
Total items: 847 Added this week: 23 Storage used: 1.2 GB
Breakdown by type:
- ๐ URLs/Articles: 512 (60%)
- ๐ Code snippets: 178 (21%)
- ๐ Files: 94 (11%)
- ๐ค Voice notes: 41 (5%)
- ๐ธ Screenshots: 22 (3%)
Most common tags:
- #programming (234)
- #javascript (142)
- #reference (128)
- #api-design (89)
- #must-read (67)
Recent additions:
- Today: 3 items
- Yesterday: 7 items
- This week: 23 items
Search hotspots:
- You search for "api" most often (42 times)
- "async" is trending up (15 searches this month)
Suggestions:
- 23 items have no tags โ want me to auto-tag?
- 12 broken links detected โ run health check?
- 8 duplicate URLs found โ merge them?
Need anything? ๐
Commands
Saving Content
# Save a URL
archivist save "https://example.com/article"
# Save with custom title and tags
archivist save "https://example.com" \
--title "Great Article" \
--tags "programming,reference"
# Save a file
archivist save-file ~/Downloads/paper.pdf \
--tags "research,ml"
# Save a code snippet
archivist save-snippet code.py \
--language python \
--tags "async,example"
# Save from clipboard
archivist save-clipboard --tags "quick-save"
# Voice note (with transcription)
archivist voice-note record --tags "ideas"
Searching
# Full-text search
archivist search "api design patterns"
# Search by tag
archivist search --tag python --tag async
# Search by type
archivist search --type article "REST"
# Search by date
archivist search --since "2026-01" --until "2026-02"
# Fuzzy search (typo-tolerant)
archivist search "pyton asyncio" --fuzzy
# Show recent additions
archivist recent --limit 10
Organization
# List all tags
archivist tags list
# Rename a tag
archivist tags rename old-tag new-tag
# Merge tags
archivist tags merge python,python3 --into python
# Auto-tag untagged items
archivist auto-tag
# Find duplicates
archivist duplicates --action review
# Health check (broken links, etc.)
archivist health-check --fix
Exporting
# Export single item
archivist export arch_abc123 --format pdf
# Export by tag
archivist export --tag must-read --format markdown
# Export search results
archivist search "api" --export --format html
# Backup entire archive
archivist backup ~/Backups/archivist-backup.zip
# Generate static site
archivist generate-site --output ~/Sites/archive
Sharing
# Generate shareable link
archivist share arch_abc123
# Share with expiration
archivist share arch_abc123 --expires 7d
# Share collection by tag
archivist share-collection --tag python-resources
# Generate QR code for mobile sharing
archivist share arch_abc123 --qr
Telegram Integration
Once connected, you can save from anywhere:
You: [forwards article link]
Paw: Want me to archive this?
URL: https://example.com/great-article Title: "How to Build Better APIs"
React with ๐ to save, or reply with tags.
You: ๐ api-design must-read
Paw: โ Archived with tags: #api-design #must-read
Searchable via /archive search api design ๐พ
Search from Telegram:
You: /archive search python async
Paw: Found 7 results. Top 3:
- Async Python Patterns (Jan 5)
- Python asyncio guide (Dec 18)
- FastAPI async examples (Jan 12)
Reply with a number to view, or /archive search python async --all for full list.
Smart Features
Auto-tagging
Archivist analyzes content and suggests tags:
# Enable auto-tagging
archivist config set auto-tag true
# Set confidence threshold (0.0-1.0)
archivist config set auto-tag-confidence 0.7
# Review auto-tag suggestions
archivist review-suggestions
Summaries
AI-generated summaries for every saved item:
# Generate summary for existing item
archivist summarize arch_abc123
# Auto-summarize on save
archivist config set auto-summarize true
# Adjust summary length
archivist config set summary-length "brief" # brief, medium, detailed
Related Content
Find connections between archived items:
# Show related items
archivist related arch_abc123
# Build knowledge graph
archivist graph --tag programming
# Find connections
archivist connect "api design" "authentication"
Configuration
# Show config
archivist config show
# Storage location
archivist config set storage-path ~/Documents/Archive
# Database location
archivist config set db-path ~/.archivist/archive.db
# Screenshot quality
archivist config set screenshot-quality high # low, medium, high
# Full-text extraction
archivist config set extract-text true
# Offline mode (save full HTML)
archivist config set offline-mode true
# Auto-summarize
archivist config set auto-summarize true
# Language for voice transcription
archivist config set transcription-language en
Storage & Performance
Disk usage:
- Articles: ~500KB each (HTML + screenshot)
- Code snippets: ~10KB each
- Files: original size preserved
- Voice notes: audio + text (~1MB each)
Database:
- SQLite (lightweight, portable)
- Full-text search via FTS5
- Typical size: ~50MB for 1000 items
Performance:
- Search: <100ms for 10,000 items
- Save URL: ~2-5 seconds (fetch + process)
- Voice transcription: ~3-10 seconds
Tips from Paw
"Tag as you go. It's way easier than bulk-tagging 500 items later. Trust me."
"Voice notes are underrated. Capture ideas immediately, let me transcribe and tag them overnight."
"The AI summaries are legit. Enable auto-summarize and you'll actually remember why you saved things."
"Use the Telegram integration. Forward links directly from any app. Zero friction = more saving = better knowledge base."
"Run
archivist health-checkmonthly. Broken links pile up fast."
Pricing
- Free tier: 100 items, basic search, manual tagging
- Pro: $8/month โ unlimited items, AI tagging/summaries, voice transcription, advanced search
- Team: $25/month โ shared archives, collaboration features, API access
Install from PawHub or pawhub.ai/archivist
Privacy
- All data stored locally on your OpenPaw gateway
- Optional cloud sync (encrypted end-to-end)
- AI summaries use Claude API (opt-in, content is ephemeral)
- Voice transcription via Whisper API (opt-in, audio not stored by provider)
- No analytics, tracking, or third-party data sharing
- Export your entire archive anytime (open formats: JSON, Markdown, HTML)
Notes
- Archive database is SQLite (fully portable)
- Full-text search works offline
- Screenshots use headless Chrome (requires Chromium installed)
- Voice transcription requires OpenAI API key or local Whisper model
- Supports all major file types (PDF, images, videos, code, documents)
- Archive is yours forever โ no vendor lock-in
Built for people who read things, save them, then never find them again. Not anymore. ๐๐พ
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?