/archive-crawler
Universal archivist for personal file archives (Dropbox/B2/Gmail-takeout/local-mount/hard-drive-dump). Filters for high-value content (the user's own writing, ideas, relationships) and surfaces it interactively. REFUSES TO RUN without an explicit gbrain.yml
$ npx -y skills add garrytan/gbrain --skill archive-crawler --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/archive-crawler
Context preview
The summary Claude sees to decide when to auto-load this skill.
Universal archivist for personal file archives (Dropbox/B2/Gmail-takeout/local-mount/hard-drive-dump). Filters for high-value content (the user's own writing, ideas, relationships) and surfaces it interactively. REFUSES TO RUN without an explicit gbrain.yml
SKILL.md
archive-crawler.SKILL.mdname: archive-crawler
version: 0.1.0
description: Universal archivist for personal file archives (Dropbox/B2/Gmail-takeout/local-mount/hard-drive-dump). Filters for high-value content (the user's own writing, ideas, relationships) and surfaces it interactively. REFUSES TO RUN without an explicit gbrain.yml `archive-crawler.scan_paths:` allow-list.
triggers:
- "crawl my archive"
- "find gold in my archive"
- "archive crawler"
- "scan my dropbox for"
- "mine my old files for"
mutating: true
writes_pages: true
writes_to:
- originals/
- personal/
- ideas/
archive-crawler — The Universal Archivist
> **Convention:** see [conventions/quality.md](../conventions/quality.md) for > citation rules, exact-phrasing requirements when capturing the user's > reactions, and back-link enforcement. > > **Convention:** see [_brain-filing-rules.md](../_brain-filing-rules.md) — > this skill is **schema-generic**: it reads the user's filing rules from > the rules JSON instead of hardcoding any specific era / archive layout.
Safety gate (REQUIRED, no exceptions)
archive-crawler refuses to run unless `archive-crawler.scan_paths:` is explicitly set in `gbrain.yml`. This is a deliberate safety fence against the agent over-scoping a scan and ingesting sensitive content (tax PDFs, medical records, credentials).
# gbrain.yml — the allow-list is mandatory
archive-crawler:
scan_paths:
- ~/Documents/writing/
- ~/Dropbox/Archive/
- /mnt/backup/old-letters/
# Optional deny-list inside the allow-list:
# deny_paths:
# - ~/Documents/finances/
# - ~/Documents/medical/If `scan_paths` is empty or missing, the skill exits with:
archive-crawler: refusing to run. No `archive-crawler.scan_paths:` allow-list
in gbrain.yml. Add explicit paths the agent is permitted to scan, then re-run.
This is a safety fence — the agent will not infer what's safe to read.
This contract is enforced by `src/core/storage-config.ts` (mirrors the `db_tracked` / `db_only` allow-list pattern from v0.22.11 storage tiering).
What this is
Generic engine for exploring any tree of personal content within an explicit allow-list. Works on local mounts, Dropbox API targets, Backblaze B2, Gmail takeouts (`.mbox`), and similar archives. Filters for "gold" (the user's own writing, ideas, relationships) and surfaces it interactively for review. Skips noise (system files, configs, binary blobs).
Concepts
Source
A source is any tree of files to explore. Sources have:
- **type**: `local` | `dropbox` | `backblaze` | `gmail-takeout` | `mbox` | `pst`
- **root**: filesystem path, Dropbox path, B2 prefix, mbox path
- **manifest**: a brain page tracking progress at
`projects/<archive-slug>/STATUS.md`
Manifest
Every archive exploration gets a manifest brain page that tracks:
1. **Tree inventory** — folders / files / sizes / types 2. **Triage status** — each item: `⬜ unseen` / `👀 reviewed` / `✅ ingested` / `⏭️ skip` / `🔥 high-signal` 3. **User reactions** — exact quotes when they react (per conventions/quality.md exact-phrasing rule) 4. **Priority queue** — what to explore next, ranked 5. **Session log** — timestamped record of what was shown per session
Gold filter
Before showing anything to the user, apply the gold filter:
| Keep (show) | Skip (note existence, don't show) | |-------------|-----------------------------------| | Personal writing (journals, letters, reflections, essays) | System files, configs, package.json, node_modules | | Conversations (IM logs, email threads with substance) | Binary blobs (images / video) | | Ideas, theses, frameworks | Receipts, invoices, tax docs | | Relationship material (letters to / from people who matter) | Spam, newsletters, mailing-list bulk | | Creative work (poetry, stories, code with soul) | Corrupted / null files | | Origin stories (first versions of things that became important) | | | Emotional content (anger, love, grief, discovery) | |
Protocol
Phase 1: Inventory
When pointed at a new source:
1. **Confirm scan_paths is set** (safety gate). Exit if not. 2. **Map the tree** — list folders + files + sizes + date ranges. 3. **Classify folders** — group by likely content type (writing, email, code, photos, docs, system). 4. **Create manifest** — write `projects/<archive-slug>/STATUS.md` with the full inventory. 5. **Propose priority queue** — rank folders by likely gold density. 6. **Present to user** — show the map and proposed order. Let them override.
Phase 2: Crawl
Work through folders in priority order:
1. **Read before showing** — open each candidate file, apply the gold filter, skip noise. 2. **Show one at a time** — present gold items individually for review. 3. **Capture exact reaction** — track the user's response in the manifest using their exact words (per conventions/quality.md). 4. **Ingest if worth keeping** — create a brain page immediately. 5. **Update manifest** — mark item status after each interaction. 6. **Never re-show** — check the manifest before presenting anything.
Phase 3: Ingest
When an item is worth keeping, file it by **primary subject** per `_brain-filing-rules.md`:
- User's own writing / ideas / origin-story content → `originals/<slug>.md`
- Reflections / personal-life content → `personal/<slug>.md`
- Product / business ideas → `ideas/<slug>.md`
- Letters or threads about a specific person → `people/<person>/timeline`
back-link plus the letter at `personal/<slug>.md` or `originals/<slug>.md`
**The skill is schema-generic.** It does NOT bake in any specific era-folder structure (e.g., `originals/archive/` for pre-2003, `originals/yc-era/` for post-2019, etc.). The user's filing rules from `_brain-filing-rules.json` are read at runtime; the agent decides per-page where content lands within those sanctioned directories.
Brain page format:
---
title: "[Title or first line]"
type: original
source_type: "[local|dropbox|backblaze|g
Read more
name: archive-crawler version: 0.1.0 description: Universal archivist for personal file archives (Dropbox/B2/Gmail-takeout/local-mount/hard-drive-dump). Filters for high-value content (the user's own writing, ideas, relationships) and surfaces it interactively. REFUSES TO RUN without an explicit gbrain.yml `archive-crawler.scan_paths:` allow-list. triggers: - "crawl my archive" - "find gold in my archive" - "archive crawler" - "scan my dropbox for" - "mine my old files for" mutating: true writes_pages: true writes_to: - originals/ - personal/ - ideas/
archive-crawler — The Universal Archivist
> **Convention:** see [conventions/quality.md](../conventions/quality.md) for > citation rules, exact-phrasing requirements when capturing the user's > reactions, and back-link enforcement. > > **Convention:** see [_brain-filing-rules.md](../_brain-filing-rules.md) — > this skill is **schema-generic**: it reads the user's filing rules from > the rules JSON instead of hardcoding any specific era / archive layout.
Safety gate (REQUIRED, no exceptions)
archive-crawler refuses to run unless `archive-crawler.scan_paths:` is explicitly set in `gbrain.yml`. This is a deliberate safety fence against the agent over-scoping a scan and ingesting sensitive content (tax PDFs, medical records, credentials).
# gbrain.yml — the allow-list is mandatory
archive-crawler:
scan_paths:
- ~/Documents/writing/
- ~/Dropbox/Archive/
- /mnt/backup/old-letters/
# Optional deny-list inside the allow-list:
# deny_paths:
# - ~/Documents/finances/
# - ~/Documents/medical/If `scan_paths` is empty or missing, the skill exits with:
archive-crawler: refusing to run. No `archive-crawler.scan_paths:` allow-list in gbrain.yml. Add explicit paths the agent is permitted to scan, then re-run. This is a safety fence — the agent will not infer what's safe to read.
This contract is enforced by `src/core/storage-config.ts` (mirrors the `db_tracked` / `db_only` allow-list pattern from v0.22.11 storage tiering).
What this is
Generic engine for exploring any tree of personal content within an explicit allow-list. Works on local mounts, Dropbox API targets, Backblaze B2, Gmail takeouts (`.mbox`), and similar archives. Filters for "gold" (the user's own writing, ideas, relationships) and surfaces it interactively for review. Skips noise (system files, configs, binary blobs).
Concepts
Source
A source is any tree of files to explore. Sources have:
- **type**: `local` | `dropbox` | `backblaze` | `gmail-takeout` | `mbox` | `pst`
- **root**: filesystem path, Dropbox path, B2 prefix, mbox path
- **manifest**: a brain page tracking progress at
`projects/<archive-slug>/STATUS.md`
Manifest
Every archive exploration gets a manifest brain page that tracks:
1. **Tree inventory** — folders / files / sizes / types 2. **Triage status** — each item: `⬜ unseen` / `👀 reviewed` / `✅ ingested` / `⏭️ skip` / `🔥 high-signal` 3. **User reactions** — exact quotes when they react (per conventions/quality.md exact-phrasing rule) 4. **Priority queue** — what to explore next, ranked 5. **Session log** — timestamped record of what was shown per session
Gold filter
Before showing anything to the user, apply the gold filter:
| Keep (show) | Skip (note existence, don't show) | |-------------|-----------------------------------| | Personal writing (journals, letters, reflections, essays) | System files, configs, package.json, node_modules | | Conversations (IM logs, email threads with substance) | Binary blobs (images / video) | | Ideas, theses, frameworks | Receipts, invoices, tax docs | | Relationship material (letters to / from people who matter) | Spam, newsletters, mailing-list bulk | | Creative work (poetry, stories, code with soul) | Corrupted / null files | | Origin stories (first versions of things that became important) | | | Emotional content (anger, love, grief, discovery) | |
Protocol
Phase 1: Inventory
When pointed at a new source:
1. **Confirm scan_paths is set** (safety gate). Exit if not. 2. **Map the tree** — list folders + files + sizes + date ranges. 3. **Classify folders** — group by likely content type (writing, email, code, photos, docs, system). 4. **Create manifest** — write `projects/<archive-slug>/STATUS.md` with the full inventory. 5. **Propose priority queue** — rank folders by likely gold density. 6. **Present to user** — show the map and proposed order. Let them override.
Phase 2: Crawl
Work through folders in priority order:
1. **Read before showing** — open each candidate file, apply the gold filter, skip noise. 2. **Show one at a time** — present gold items individually for review. 3. **Capture exact reaction** — track the user's response in the manifest using their exact words (per conventions/quality.md). 4. **Ingest if worth keeping** — create a brain page immediately. 5. **Update manifest** — mark item status after each interaction. 6. **Never re-show** — check the manifest before presenting anything.
Phase 3: Ingest
When an item is worth keeping, file it by **primary subject** per `_brain-filing-rules.md`:
- User's own writing / ideas / origin-story content → `originals/<slug>.md`
- Reflections / personal-life content → `personal/<slug>.md`
- Product / business ideas → `ideas/<slug>.md`
- Letters or threads about a specific person → `people/<person>/timeline`
back-link plus the letter at `personal/<slug>.md` or `originals/<slug>.md`
**The skill is schema-generic.** It does NOT bake in any specific era-folder structure (e.g., `originals/archive/` for pre-2003, `originals/yc-era/` for post-2019, etc.). The user's filing rules from `_brain-filing-rules.json` are read at runtime; the agent decides per-page where content lands within those sanctioned directories.
Brain page format:
--- title: "[Title or first line]" type: original source_type: "[local|dropbox|backblaze|g
Search gives you raw pages. GBrain gives you the answer. It's the brain layer your AI agent has been missing — the only one that does synthesis, graph traversal, and gap analysis in one box.
Repo: garrytan/gbrain
Other skills on gbrain.
- /voice-persona-mars
Route to Mars (introspective thought partner / demo showman voice persona). Used when the operator wants depth, meaning, or impressive social demos rather than logistics. Mars handles SOLO mode (philosophy, presence, patterns) and DEMO mode (tool-driven showmanship)
Open skill - /voice-persona-venus
Route to Venus (sharp executive-assistant voice persona). Used for logistics — calendar, tasks, recent messages, brain lookups — at sub-second phone-call latency. The default voice persona unless DEFAULT_PERSONA=mars is set.
Open skill - /voice-post-call
Post-call handling for a voice session — turn the transcript into a brain page, post the summary to the operator's messaging surface, archive the audio. Belt-and-suspenders: fires both from a tool the voice persona can call mid-call AND from the automatic call-end handler in
Open skill - /retrieval-reflex
When/what to retrieve — open the brain page for a salient entity before answering from memory.
Open skill - /academic-verify
Verify a research claim or academic citation by tracing it through publication → methodology → raw data → independent replication. Routes through perplexity-research for the actual web lookup, then formats results as a citation-checked brain page. Use when a
Open skill - /article-enrichment
Transform raw article text dumps in the brain into structured pages with executive summary, verbatim quotes, key insights, why-it-matters, and cross-references. Replaces walls-of-text with quotable, actionable brain pages.
Open skill

