with one click
update-vault-index
// Keep vault_index.md synchronized with current vault structure
// Keep vault_index.md synchronized with current vault structure
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | update_vault_index |
| description | Keep vault_index.md synchronized with current vault structure |
Automatically sync .claude/vault_index.md with your actual MOCs/, Projects/, and Reading/ directories.
The vault index is the entry point to your research graph (per CLAUDE.md rules). It must stay current to reflect:
Read .claude/vault_maintanance.md and note the update_vault_index: timestamp.
Default: incremental scan ā only process files modified after the update_vault_index: timestamp.
Use find Projects/ MOCs/ -newer <reference_file> to identify changed files.
To use a reference file: touch -t YYYYMMDDHHMI /tmp/vault_index_ref && find ... -newer /tmp/vault_index_ref
Projects/ for status categorization even in incremental mode (status may have changed without file modification time changing).Scan directories:
MOCs/ ā extract all MOC file namesProjects/ ā extract all project file names + status fieldReading/ ā optional: list recent papers (last 5-10)Extract metadata:
status fieldGroup projects by status (maintain this order):
seed (early-stage ideas generated by Claude)idea (refined projects approved by human)active (actively working on it)writing (writing paper and finishing project)finished (completed)Sort alphabetically within each group.
Structure (preserve exactly):
# Vault Index
## Research Areas (MOCs)
- [[MOC Name]] - brief description (1 line)
- ...
## Seed Projects
- [[Project Name]] - brief description (1 line)
- ...
## Idea Projects
- [[Project Name]] - brief description (1 line)
- ...
## Active Projects
- [[Project Name]] - brief description (1 line)
- ...
## Writing Projects
- [[Project Name]] - brief description (1 line)
- ...
## Finished Projects
- [[Project Name]] - brief description (1 line)
- ...
Get descriptions from:
Rules:
Example:
- [[Persona Fingerprinting to Prevent Emergent Misalignment]] -
Preserve identity fingerprint during finetuning to prevent misalignment
After writing vault_index.md:
date via Bash to get the current system time.claude/vault_maintanance.mdupdate_vault_index: line to current date and time in format DD-MM-YYYY HH:MMpapers_since_vault_index: to 0projects_since_vault_index: to 0Example update:
update_vault_index: 10-02-2026 14:35
ā
All MOCs present with descriptions
ā
All seed projects listed (status: seed)
ā
All idea projects listed (status: idea)
ā
All active projects listed (status: active)
ā
All writing projects listed (status: writing)
ā
All finished projects listed (status: finished)
ā
Projects in correct order (Seed ā Idea ā Active ā Writing ā Finished)
ā
Alphabetical within each section
ā
Wiki links match exact file names in [[brackets]]
ā
No orphan files referenced
Optimizations:
status:\s*Fast execution:
ā
Did I read all MOCs, projects from actual directories?
ā
Did I extract status field from each project file?
ā
Did I categorize correctly (Seed/Idea/Active/Writing/Finished)?
ā
Did I maintain correct section order (Seed ā Idea ā Active ā Writing ā Finished)?
ā
Did I use exact file names in [[wiki links]]?
ā
Did I get descriptions from actual file content?
ā
Did I keep descriptions to 1 line max?
ā
Did I verify no broken links in output?
ā
Did I preserve vault_index.md structure exactly?
ā
Did I update vault_maintanance.md with current timestamp?