Built 26/04/16 04:46commit 03cc36d
Vault Layout
中文 | English
Default vault structure for this skill:
text
<vault-root>/
├── .git/
├── AGENTS.md
├── raw/
├── wiki/
│ ├── answers/
│ ├── concepts/
│ ├── entities/
│ ├── sources/
│ └── topics/
├── index.md
└── log.mdGlobal skill defaults live outside the vault:
text
~/.llm-wiki/
└── config.jsonSuggested global config shape:
json
{
"root": "/absolute/path/to/your/wiki-vault",
"raw_dir": "raw",
"wiki_dir": "wiki",
"index_file": "index.md",
"log_file": "log.md",
"schema_file": "AGENTS.md"
}Meaning of each layer:
- git repo: versioned history of the vault
- raw sources: source-of-truth material whose substance stays stable even if paths are reorganized
- wiki pages: LLM-maintained summaries, entities, concepts, syntheses
- index: stable entry point into the wiki
- log: reverse-chronological operational history
- AGENTS.md: vault-specific maintenance rules
Recommended source-to-page mapping:
- one raw source file
- one corresponding
wiki/sources/*.mdpage - zero or more updates to concept, entity, and topic pages
Optional raw-media conventions:
raw/screenshots/for standalone screenshot sourcesraw/assets/for local image attachments referenced from markdown raw sources
Recommended categories:
concepts/for reusable ideas or frameworksentities/for people, orgs, tools, products, projectstopics/for broader domains that aggregate many conceptssources/for per-source notes and citationsanswers/for durable outputs created during query work