← ClaudeAtlas

agent-wikilisted

Incremental LLM-friendly wiki generator for Obsidian note vaults. Use when: (1) Building wiki from notes, (2) Ingesting notes to wiki, (3) Obsidian LLM wiki, (4) Incremental knowledge base management. Triggers: 'build wiki from notes', 'ingest notes to wiki', 'Obsidian LLM wiki', 'incremental knowledge base'.
Dianel555/DSkills · ★ 63 · AI & Automation · score 84
Install: claude install-skill Dianel555/DSkills
# agent-wiki 增量式 Obsidian 笔记仓库 Wiki 生成器,为 LLM 优化的知识库管理工具。 ## Prerequisites ```bash pip install PyYAML ``` ## Execution The skill provides a Python CLI with the following subcommands: ```bash # Initialize wiki structure python scripts/agent_wiki_cli.py init --vault /path/to/vault # Scan for changed sources python scripts/agent_wiki_cli.py scan --vault /path/to/vault # Plan a batched ingest: split pending sources into rounds (default 20/round), # writing a task report to wiki/_archived/ingest-tasks.md python scripts/agent_wiki_cli.py plan --batch-size 20 --vault /path/to/vault # Mark a round complete (verifies every doc in the batch was cache-put) python scripts/agent_wiki_cli.py batch-done --batch 1 --vault /path/to/vault # Get cache entry for a source python scripts/agent_wiki_cli.py cache-get <relative-path> --vault /path/to/vault # Record ingest result python scripts/agent_wiki_cli.py cache-put <relative-path> --topics topic1.md,topic2.md --vault /path/to/vault # Clean up deleted sources python scripts/agent_wiki_cli.py cleanup --vault /path/to/vault # Get wiki health status python scripts/agent_wiki_cli.py status --vault /path/to/vault # Rebuild the retrieval index (wiki/.wiki-index.json) without writing .base files python scripts/agent_wiki_cli.py index --vault /path/to/vault # Backfill source_type frontmatter to match each topic's sources[] file formats python scripts/agent_wiki_cli.py normalize-source-type --vault /path/to/vault # Generate Obsidian Bases