skillwiki 0.2.0-beta.3 → 0.2.0-beta.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -49,5 +49,22 @@ Rule: every tag on every page MUST appear in this taxonomy. Add new tags here fi
49
49
 
50
50
  - File names: lowercase-hyphenated, no spaces.
51
51
  - Wikilinks in YAML: quoted, `"[[name]]"`. Body wikilinks: unquoted `[[name]]`.
52
- - Citations in body: `^[raw/...]` markers; every entry in `sources:` MUST appear in body.
52
+ - Citations in body: `^[raw/...]` markers at paragraph-end; every entry in `sources:` MUST appear in body and in `## Sources` footer.
53
+ - Legacy inline `^[raw/...]` markers remain valid; `migrate-citations` converts them.
53
54
  - sha256 in `raw/` frontmatter is computed by `skillwiki hash` over body bytes after closing `---`.
55
+
56
+ ## Obsidian Integration
57
+
58
+ - **Attachment folder:** `raw/assets/` — binary assets (images, diagrams) live here.
59
+ Set Obsidian's "Attachment folder path" to `raw/assets` for automatic filing.
60
+ - **Dataview queries** (read-only; do not replace index.md):
61
+
62
+ ```dataview
63
+ LIST WHERE type = "concept" AND contains(tags, "architecture")
64
+ ```
65
+
66
+ ```dataview
67
+ TABLE updated, length(sources) AS sources
68
+ WHERE file.folder = "concepts"
69
+ SORT updated DESC
70
+ ```