.claude/skills/vault-archive/SKILL.md
Archive a completed vault by moving it out of the active vaults/ directory. Optionally promote reusable knowledge first. Use when user wants to archive, shelve, or finish a project vault.
npx skillsauth add RonanCodes/llm-wiki vault-archiveInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Move a completed vault from vaults/ to archive/ so it's no longer active but fully preserved.
/vault-archive my-project
/vault-archive my-project --promote-first
Verify vault exists at vaults/<name>/
If --promote-first: Run the promote workflow first to graduate reusable knowledge to meta vault before archiving. See /promote skill.
Add final log entry:
Append to the vault's log.md:
## [YYYY-MM-DD] archive | Vault archived
- Reason: project complete
- Pages at archive time: <count>
- Sources at archive time: <count>
---
cd "vaults/<name>"
git add .
git commit -m "📦 chore: archive vault — project complete"
mkdir -p archive
mv "vaults/<name>" "archive/<name>"
mv archive/<name> vaults/<name>cd archive/<name> && git logvaults/archive/<name>data-ai
Extract transcript from a YouTube video as clean readable text. Use when user shares a youtube.com or youtu.be link and wants the transcript, content summary, or to read what was said.
development
Page type templates and frontmatter conventions for LLM Wiki pages. Reference skill loaded by ingest, query, and lint skills to ensure consistent wiki structure.
testing
Show status of all LLM Wiki vaults — page counts, source counts, last activity, and git status. Use when user wants to see vault status, list vaults, or check wiki health.
documentation
Import an existing Obsidian vault, markdown folder, or git repo as an llm-wiki vault. Moves content into vaults/, adds missing structure (index, log, CLAUDE.md, frontmatter). Use when user wants to import, adopt, migrate, or bring in an existing knowledge base.