@jayjiang/byoao 1.1.2 → 2.0.1

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.
Files changed (156) hide show
  1. package/dist/__tests__/plugin-config.test.js +7 -10
  2. package/dist/__tests__/plugin-config.test.js.map +1 -1
  3. package/dist/assets/obsidian-skills/byoao-conventions.md +30 -54
  4. package/dist/assets/obsidian-skills/vault-thinking.md +6 -5
  5. package/dist/assets/presets/common/AGENTS.md.hbs +29 -46
  6. package/dist/assets/presets/common/SCHEMA.md.hbs +57 -0
  7. package/dist/assets/presets/common/Start Here.md.hbs +29 -40
  8. package/dist/assets/presets/minimal/preset.json +3 -3
  9. package/dist/assets/presets/pm-tpm/preset.json +2 -2
  10. package/{src/skills/ask.md → dist/assets/skills/ask/SKILL.md} +30 -27
  11. package/dist/assets/skills/ask.md +28 -27
  12. package/dist/assets/skills/challenge/SKILL.md +134 -0
  13. package/dist/assets/skills/challenge.md +79 -121
  14. package/dist/assets/skills/connect/SKILL.md +126 -0
  15. package/dist/assets/skills/connect.md +75 -163
  16. package/dist/assets/skills/cook/SKILL.md +170 -0
  17. package/dist/assets/skills/cook.md +167 -0
  18. package/dist/assets/skills/diagnose/SKILL.md +134 -0
  19. package/dist/assets/skills/diagnose.md +102 -43
  20. package/dist/assets/skills/drift/SKILL.md +123 -0
  21. package/dist/assets/skills/drift.md +64 -165
  22. package/dist/assets/skills/health/SKILL.md +65 -0
  23. package/dist/assets/skills/health.md +63 -0
  24. package/{src/skills/ideas.md → dist/assets/skills/ideas/SKILL.md} +11 -10
  25. package/dist/assets/skills/ideas.md +11 -10
  26. package/dist/assets/skills/organize/SKILL.md +109 -0
  27. package/dist/assets/skills/organize.md +56 -155
  28. package/dist/assets/skills/prep/SKILL.md +65 -0
  29. package/dist/assets/skills/prep.md +63 -0
  30. package/dist/assets/skills/trace/SKILL.md +143 -0
  31. package/dist/assets/skills/trace.md +75 -90
  32. package/dist/assets/skills/wiki/SKILL.md +127 -0
  33. package/dist/assets/skills/wiki.md +77 -178
  34. package/dist/cli/cli-program.js +18 -15
  35. package/dist/cli/cli-program.js.map +1 -1
  36. package/dist/cli/installer.js +54 -29
  37. package/dist/cli/installer.js.map +1 -1
  38. package/dist/hooks/idle-suggestions.js +4 -4
  39. package/dist/hooks/idle-suggestions.js.map +1 -1
  40. package/dist/hooks/system-transform.js +35 -1
  41. package/dist/hooks/system-transform.js.map +1 -1
  42. package/dist/index.js +455 -636
  43. package/dist/index.js.map +1 -1
  44. package/dist/plugin-config.js +6 -32
  45. package/dist/plugin-config.js.map +1 -1
  46. package/dist/tools/init-vault.js +8 -38
  47. package/dist/tools/init-vault.js.map +1 -1
  48. package/dist/tools/vault-doctor.js +1 -1
  49. package/dist/tools/vault-doctor.js.map +1 -1
  50. package/dist/tools/vault-status.js +1 -1
  51. package/dist/tools/vault-status.js.map +1 -1
  52. package/dist/vault/__tests__/create.test.js +48 -116
  53. package/dist/vault/__tests__/create.test.js.map +1 -1
  54. package/dist/vault/__tests__/doctor.test.js +14 -2
  55. package/dist/vault/__tests__/doctor.test.js.map +1 -1
  56. package/dist/vault/__tests__/manifest.test.js +2 -2
  57. package/dist/vault/__tests__/manifest.test.js.map +1 -1
  58. package/dist/vault/__tests__/status.test.js +12 -0
  59. package/dist/vault/__tests__/status.test.js.map +1 -1
  60. package/dist/vault/__tests__/upgrade.test.js +3 -3
  61. package/dist/vault/__tests__/upgrade.test.js.map +1 -1
  62. package/dist/vault/create.js +86 -196
  63. package/dist/vault/create.js.map +1 -1
  64. package/dist/vault/doctor.js +49 -0
  65. package/dist/vault/doctor.js.map +1 -1
  66. package/dist/vault/manifest.js +2 -2
  67. package/dist/vault/manifest.js.map +1 -1
  68. package/dist/vault/preset.js +10 -4
  69. package/dist/vault/preset.js.map +1 -1
  70. package/dist/vault/self-update.js +1 -1
  71. package/dist/vault/status.js +24 -0
  72. package/dist/vault/status.js.map +1 -1
  73. package/dist/vault/upgrade.js +165 -23
  74. package/dist/vault/upgrade.js.map +1 -1
  75. package/package.json +1 -1
  76. package/src/assets/obsidian-skills/byoao-conventions.md +9 -6
  77. package/src/assets/obsidian-skills/vault-thinking.md +6 -5
  78. package/src/assets/presets/common/AGENTS.md.hbs +23 -19
  79. package/src/assets/presets/common/SCHEMA.md.hbs +57 -0
  80. package/src/assets/presets/common/Start Here.md.hbs +29 -40
  81. package/src/assets/presets/minimal/preset.json +3 -3
  82. package/src/assets/presets/pm-tpm/preset.json +2 -2
  83. package/src/skills/ask/SKILL.md +135 -0
  84. package/src/skills/challenge/SKILL.md +134 -0
  85. package/src/skills/connect/SKILL.md +126 -0
  86. package/src/skills/cook/SKILL.md +170 -0
  87. package/src/skills/diagnose/SKILL.md +134 -0
  88. package/src/skills/drift/SKILL.md +123 -0
  89. package/src/skills/health/SKILL.md +65 -0
  90. package/src/skills/ideas/SKILL.md +173 -0
  91. package/src/skills/organize/SKILL.md +109 -0
  92. package/src/skills/prep/SKILL.md +65 -0
  93. package/src/skills/trace/SKILL.md +143 -0
  94. package/src/skills/wiki/SKILL.md +127 -0
  95. package/dist/assets/presets/common/Glossary.md.hbs +0 -16
  96. package/dist/assets/presets/common/obsidian/daily-notes.json +0 -5
  97. package/dist/assets/presets/common/obsidian/templates.json +0 -3
  98. package/dist/assets/presets/common/templates/Daily Note.md +0 -19
  99. package/dist/assets/presets/common/templates/Decision Record.md +0 -32
  100. package/dist/assets/presets/common/templates/Investigation.md +0 -34
  101. package/dist/assets/presets/common/templates/Meeting Notes.md +0 -25
  102. package/dist/assets/skills/emerge.md +0 -168
  103. package/dist/assets/skills/weave.md +0 -287
  104. package/dist/tools/add-glossary-term.js +0 -21
  105. package/dist/tools/add-glossary-term.js.map +0 -1
  106. package/dist/tools/add-person.js +0 -21
  107. package/dist/tools/add-person.js.map +0 -1
  108. package/dist/tools/add-project.js +0 -24
  109. package/dist/tools/add-project.js.map +0 -1
  110. package/dist/tools/graph-health.js +0 -25
  111. package/dist/tools/graph-health.js.map +0 -1
  112. package/dist/tools/note-read.js +0 -19
  113. package/dist/tools/note-read.js.map +0 -1
  114. package/dist/tools/search-vault.js +0 -22
  115. package/dist/tools/search-vault.js.map +0 -1
  116. package/dist/vault/__tests__/glossary.test.js +0 -68
  117. package/dist/vault/__tests__/glossary.test.js.map +0 -1
  118. package/dist/vault/__tests__/graph-health.test.js +0 -102
  119. package/dist/vault/__tests__/graph-health.test.js.map +0 -1
  120. package/dist/vault/__tests__/member.test.js +0 -85
  121. package/dist/vault/__tests__/member.test.js.map +0 -1
  122. package/dist/vault/__tests__/note-read.test.js +0 -71
  123. package/dist/vault/__tests__/note-read.test.js.map +0 -1
  124. package/dist/vault/__tests__/obsidian-cli.test.js +0 -108
  125. package/dist/vault/__tests__/obsidian-cli.test.js.map +0 -1
  126. package/dist/vault/__tests__/search-vault.test.js +0 -93
  127. package/dist/vault/__tests__/search-vault.test.js.map +0 -1
  128. package/dist/vault/glossary.js +0 -27
  129. package/dist/vault/glossary.js.map +0 -1
  130. package/dist/vault/graph-health.js +0 -83
  131. package/dist/vault/graph-health.js.map +0 -1
  132. package/dist/vault/member.js +0 -67
  133. package/dist/vault/member.js.map +0 -1
  134. package/dist/vault/note-read.js +0 -70
  135. package/dist/vault/note-read.js.map +0 -1
  136. package/dist/vault/project.js +0 -68
  137. package/dist/vault/project.js.map +0 -1
  138. package/dist/vault/retrieval-types.js +0 -5
  139. package/dist/vault/retrieval-types.js.map +0 -1
  140. package/dist/vault/search-vault.js +0 -87
  141. package/dist/vault/search-vault.js.map +0 -1
  142. package/src/assets/presets/common/obsidian/daily-notes.json +0 -5
  143. package/src/assets/presets/common/obsidian/templates.json +0 -3
  144. package/src/assets/presets/common/templates/Daily Note.md +0 -19
  145. package/src/assets/presets/common/templates/Decision Record.md +0 -32
  146. package/src/assets/presets/common/templates/Investigation.md +0 -34
  147. package/src/assets/presets/common/templates/Meeting Notes.md +0 -25
  148. package/src/skills/challenge.md +0 -174
  149. package/src/skills/connect.md +0 -213
  150. package/src/skills/diagnose.md +0 -72
  151. package/src/skills/drift.md +0 -223
  152. package/src/skills/emerge.md +0 -168
  153. package/src/skills/organize.md +0 -206
  154. package/src/skills/trace.md +0 -156
  155. package/src/skills/weave.md +0 -287
  156. package/src/skills/wiki.md +0 -227
@@ -0,0 +1,167 @@
1
+ ---
2
+ name: cook
3
+ description: >
4
+ The core knowledge compilation skill. Reads raw material (user notes, external sources)
5
+ and distills it into structured, cross-referenced knowledge pages in entities/, concepts/,
6
+ comparisons/, and queries/. Use when the user wants to compile notes into knowledge,
7
+ digest external material, or periodically maintain the knowledge base.
8
+ ---
9
+
10
+ # /cook — Knowledge Compilation
11
+
12
+ You are a knowledge compiler. Your job is to read raw material (user notes, external sources)
13
+ and distill it into structured, cross-referenced knowledge pages.
14
+
15
+ ## Prerequisites Check
16
+
17
+ ```bash
18
+ obsidian --version
19
+ ```
20
+
21
+ If this fails, STOP and display the Obsidian CLI availability message (see /prep).
22
+
23
+ ## Parameters
24
+
25
+ - **target** (optional): What to cook. Default: incremental (new/modified notes since last cook).
26
+ - `--all` or `full`: Read all user notes in the vault
27
+ - `"Topic Name"`: Read notes matching this keyword
28
+ - `path/to/note.md`: Read a specific note
29
+ - `<URL>`: Fetch external article and digest it
30
+
31
+ ## Input Scope
32
+
33
+ ### Incremental Mode (default)
34
+
35
+ When user runs `/cook` with no arguments:
36
+ 1. Read `log.md` for last cook timestamp
37
+ 2. Scan for `.md` files outside agent directories with `modified` date after that timestamp
38
+ 3. Include any unprocessed files
39
+
40
+ ### Full Mode
41
+
42
+ When user runs `/cook --all`:
43
+ - Read all user notes in the vault (exclude `entities/`, `concepts/`, `comparisons/`, `queries/`)
44
+ - Re-evaluate all entities and concepts
45
+
46
+ ### Targeted Mode
47
+
48
+ When user runs `/cook "Feature A"` or `/cook path/to/note.md`:
49
+ - Read only the specified notes or notes matching the keyword
50
+
51
+ ### External URL
52
+
53
+ When user provides a URL:
54
+ 1. Fetch content using WebFetch or Obsidian Web Clipper
55
+ 2. Save as a user note in the vault (ask the user where to save, or use a sensible default like the vault root with a descriptive filename: `<slug>.md`)
56
+ 3. Add frontmatter: `title`, `source_url`, `fetched` date
57
+ 4. Process normally — the saved note becomes raw material for /cook
58
+
59
+ **Note:** No dedicated `raw/` directory. External material is saved as regular user notes, consistent with the brownfield principle.
60
+
61
+ ## Processing Pipeline
62
+
63
+ ### Step 1: Read & Parse
64
+ - Read all target notes
65
+ - Extract frontmatter, content, wikilinks
66
+ - Identify entities (named things), concepts (abstract ideas), decisions, contradictions
67
+
68
+ ### Step 2: Match Against Existing Pages
69
+ - Check `INDEX.base` or scan `entities/`, `concepts/` for existing pages
70
+ - Determine: create new vs. update existing
71
+
72
+ ### Step 3: Create/Update Pages
73
+ - **New entities:** Create in `entities/<name>.md`
74
+ - **New concepts:** Create in `concepts/<name>.md`
75
+ - **Updates:** Add new information, bump `updated` date
76
+ - **Contradictions:** Follow Update Policy
77
+
78
+ **Create page thresholds:**
79
+ - Appears in 2+ notes, OR is central subject of one note
80
+ - Do NOT create for: passing mentions, minor details, out-of-domain topics
81
+
82
+ ### Step 4: Cross-Reference
83
+ - Ensure every new/updated page has at least 2 outbound wikilinks
84
+ - Check existing pages link back where relevant
85
+
86
+ ### Step 5: Update Navigation
87
+ - `INDEX.base` auto-updates via Obsidian Base query
88
+ - Append entry to `log.md`
89
+
90
+ ### Step 6: Report
91
+ Present structured summary (see Output Report Format below).
92
+
93
+ ## Contradiction Handling
94
+
95
+ ### Detection
96
+ - Compare claims across notes about the same entity/concept
97
+ - Check dates — newer claims may supersede older
98
+ - Look for explicit contradictions (e.g., "we changed from X to Y")
99
+
100
+ ### Resolution Workflow
101
+ 1. Note both positions with dates and source references
102
+ 2. Mark in frontmatter: `contradictions: [page-name]`
103
+ 3. Report to user with specific sources
104
+ 4. Offer to create a comparison page
105
+ 5. User decides
106
+
107
+ ### Update Policy
108
+ - Newer sources generally supersede older
109
+ - If both positions still valid (e.g., A/B testing), note both
110
+ - Never silently overwrite — always flag for review
111
+
112
+ ## Output Report Format
113
+
114
+ ```
115
+ Cook complete. Here's what changed:
116
+
117
+ New knowledge:
118
+ • [[feature-a]] — Response time monitoring feature
119
+ • [[response-time-metrics]] — Why median replaced avg
120
+
121
+ Updated:
122
+ • [[zhang-san]] — Added Feature A assignment
123
+
124
+ Contradiction found:
125
+ ⚠ PRD says avg(response_time) > baseline, but experiment notes say median
126
+ Sources: Projects/Feature-A-PRD.md vs Daily/2026-04-05.md
127
+ Want me to create a comparison page?
128
+
129
+ Log: 1 entry added to log.md
130
+ ```
131
+
132
+ **Design principles:**
133
+ - Natural language, no technical jargon
134
+ - Structured for quick scanning
135
+ - Actionable (asks for decisions on contradictions)
136
+ - Wikilinks for easy navigation
137
+
138
+ ## Auto-Trigger Behavior
139
+
140
+ The Agent should automatically run `/cook` after:
141
+ - Writing a note (brief report: "Cooked 1 note. Updated [[x]], created [[y]].")
142
+ - User drops new files into the vault
143
+
144
+ **When NOT to auto-trigger:**
145
+ - Rapid-fire note creation (batch and cook once at the end)
146
+ - `/cook` was already run in the last 5 minutes
147
+
148
+ ## Agent Page Identification
149
+
150
+ Agent pages are identified by directory:
151
+ | Location | Ownership |
152
+ |----------|-----------|
153
+ | `entities/**/*.md` | Agent |
154
+ | `concepts/**/*.md` | Agent |
155
+ | `comparisons/**/*.md` | Agent |
156
+ | `queries/**/*.md` | Agent |
157
+ | All other `.md` | User (read-only during /cook) |
158
+
159
+ No `owner` frontmatter field needed.
160
+
161
+ ## Key Principles
162
+
163
+ - **Evidence-based**: Every knowledge page cites its sources
164
+ - **Never modify user notes**: User notes are read-only during /cook
165
+ - **Thresholds matter**: 2+ mentions or central subject to create a page
166
+ - **Split at 200 lines**: Break large pages into sub-topics
167
+ - **Flag contradictions**: Never silently overwrite
@@ -0,0 +1,134 @@
1
+ ---
2
+ name: diagnose
3
+ description: >
4
+ Vault health check at the structural level. Checks frontmatter coverage, orphan notes,
5
+ broken links, AGENTS.md and SCHEMA.md drift, v2 agent directories, and overall vault
6
+ configuration. Broader than /health (which focuses on agent pages) — /diagnose checks
7
+ the entire vault including user notes. Use when the user says "check my vault", "is
8
+ everything set up correctly", "vault health", "diagnose issues", or wants a full
9
+ structural audit beyond just agent pages.
10
+ ---
11
+
12
+ # /diagnose — Vault Diagnosis
13
+
14
+ You are a vault doctor. Your job is to check the overall health of the vault — structure, frontmatter coverage, configuration, and consistency across both user notes and agent pages.
15
+
16
+ ## Prerequisites Check
17
+
18
+ ```bash
19
+ obsidian --version
20
+ ```
21
+
22
+ If this fails, STOP and display the Obsidian CLI availability message (see /prep).
23
+
24
+ ## Parameters
25
+
26
+ - **focus** (optional): Specific area to check — `frontmatter`, `links`, `structure`, `config`, or `all`. Default: `all`.
27
+
28
+ ## Process
29
+
30
+ ### Step 1: Frontmatter Coverage
31
+
32
+ ```bash
33
+ obsidian properties sort=count counts
34
+ ```
35
+
36
+ Report:
37
+ - Total notes with frontmatter vs. without
38
+ - Most common missing fields
39
+ - Notes with invalid frontmatter (bad dates, unknown types, etc.)
40
+ - Tag usage: how many unique tags, how many notes per tag
41
+
42
+ ### Step 2: Broken Wikilinks
43
+
44
+ Scan for wikilinks that point to non-existent files:
45
+
46
+ ```bash
47
+ obsidian search "\[\[.*\]\]"
48
+ ```
49
+
50
+ For each wikilink found, check if the target file exists. Report broken links with:
51
+ - Source file where the broken link appears
52
+ - Target link that doesn't resolve
53
+ - Suggested fix (create the missing file or remove the link)
54
+
55
+ ### Step 3: Orphan Detection
56
+
57
+ Find notes with no inbound wikilinks:
58
+
59
+ ```bash
60
+ obsidian backlinks "note-name"
61
+ ```
62
+
63
+ For both user notes and agent pages, identify orphans. Note that newly created notes are expected to be orphans temporarily.
64
+
65
+ ### Step 4: AGENTS.md, SCHEMA.md, and v2 layout
66
+
67
+ Check if `AGENTS.md` accurately reflects the current vault state:
68
+ - Does it reference directories that no longer exist?
69
+ - Does it miss directories that were added?
70
+ - Are the skill references still valid?
71
+ - Is the navigation advice still accurate?
72
+
73
+ Check `SCHEMA.md`:
74
+ - Tag taxonomy and domain sections match how tags are actually used
75
+ - Agent directory table matches `entities/`, `concepts/`, `comparisons/`, `queries/`
76
+ - Frontmatter expectations align with v2 `type: entity | concept | comparison | query`
77
+
78
+ Verify the v2 agent directories exist and are usable: `entities/`, `concepts/`, `comparisons/`, `queries/` (note if any are missing or empty when the vault should have compiled knowledge).
79
+
80
+ ### Step 5: Configuration Check
81
+
82
+ Verify vault configuration:
83
+ - `.obsidian/` directory exists and is valid
84
+ - `.opencode/` directory has current skill definitions
85
+ - `SCHEMA.md` exists and has a defined tag taxonomy
86
+ - `log.md` exists and has recent entries
87
+ - `INDEX.base` exists for compiled knowledge discovery
88
+
89
+ ### Step 6: Present Diagnosis
90
+
91
+ ```markdown
92
+ # Vault Diagnosis
93
+
94
+ Scanned {N} notes, {M} agent pages, {K} user notes.
95
+
96
+ ---
97
+
98
+ ## Frontmatter Coverage
99
+ - Notes with frontmatter: X/Y (Z%)
100
+ - Most common missing: {list fields}
101
+ - Unique tags: {N} (top 5: {list})
102
+
103
+ ## Broken Wikilinks
104
+ - {N} broken links found:
105
+ - [[target]] in [[source]] → file not found
106
+
107
+ ## Orphan Notes
108
+ - {N} notes with no inbound links:
109
+ - [[note-name]] — consider linking from [[suggested-source]]
110
+
111
+ ## AGENTS.md / SCHEMA.md / layout
112
+ - AGENTS.md: {Up to date / Needs update} — {details if outdated}
113
+ - SCHEMA.md: {Up to date / Needs update / Missing} — {taxonomy vs usage}
114
+ - Agent dirs (`entities/`, `concepts/`, `comparisons/`, `queries/`): {OK / Missing / Issues}
115
+
116
+ ## Configuration
117
+ - .obsidian/: {OK / Missing / Issues}
118
+ - .opencode/: {OK / Missing / Issues}
119
+ - log.md: {OK / Missing / {N} entries, last: {date}}
120
+ - INDEX.base: {OK / Missing / Needs update}
121
+
122
+ ## Overall Health
123
+ **Score**: {Good / Fair / Needs attention}
124
+
125
+ {2-3 sentence summary of the vault's overall health and the top 2-3 issues to address}
126
+ ```
127
+
128
+ ## Key Principles
129
+
130
+ - **Comprehensive but prioritized.** Check everything, but surface the most important issues first.
131
+ - **Actionable findings.** Every issue should come with a suggested fix.
132
+ - **Non-destructive by default.** Report issues, don't fix them automatically.
133
+ - **Whole vault, not just agent pages.** Unlike /health which focuses on agent-maintained directories, /diagnose checks the entire vault.
134
+ - **Obsidian is first workbench.** All note operations go through Obsidian CLI.
@@ -1,72 +1,131 @@
1
1
  ---
2
2
  name: diagnose
3
- description: Diagnose knowledge graph health — find missing frontmatter, orphan notes, broken wikilinks, and AGENTS.md drift. Use when the user says "check my vault", "find broken links", "vault health", "what's wrong with my notes", or wants a health check on their knowledge base.
3
+ description: >
4
+ Vault health check at the structural level. Checks frontmatter coverage, orphan notes,
5
+ broken links, AGENTS.md and SCHEMA.md drift, v2 agent directories, and overall vault configuration.
6
+ Broader than /health which focuses on agent pages — /diagnose checks the entire vault including user notes.
4
7
  ---
5
8
 
6
- # /diagnose — Knowledge Graph Health Check
9
+ # /diagnose — Vault Diagnosis
7
10
 
8
- You are a vault health assistant. Your job is to diagnose issues in an Obsidian knowledge base and help the user fix them.
11
+ You are a vault doctor. Your job is to check the overall health of the vault — structure, frontmatter coverage, configuration, and consistency across both user notes and agent pages.
9
12
 
10
- ## Execution Flow
13
+ ## Prerequisites Check
11
14
 
12
- ### Step 1: Locate Vault
15
+ ```bash
16
+ obsidian --version
17
+ ```
18
+
19
+ If this fails, STOP and display the Obsidian CLI availability message (see /prep).
13
20
 
14
- Ask the user for their vault path, or detect it from the current working directory (look for AGENTS.md in the cwd or parent directories).
21
+ ## Parameters
15
22
 
16
- ### Step 2: Run Diagnosis
23
+ - **focus** (optional): Specific area to check — `frontmatter`, `links`, `structure`, `config`, or `all`. Default: `all`.
17
24
 
18
- Call `byoao_vault_doctor` with the vault path. This runs 5 checks:
25
+ ## Process
19
26
 
20
- 1. **Missing frontmatter** notes without any YAML frontmatter
21
- 2. **Missing note_type** — notes without `note_type` field (not yet woven)
22
- 3. **Missing type/tags** — notes with frontmatter but no `type` or `tags` field
23
- 4. **Orphan notes** — notes with no incoming or outgoing wikilinks
24
- 5. **Broken wikilinks** — links that point to non-existent notes
27
+ ### Step 1: Frontmatter Coverage
25
28
 
26
- Additionally, if `INDEX.base` exists:
27
- 6. **INDEX.base accuracy** — verify note counts match actual vault state
29
+ ```bash
30
+ obsidian properties sort=count counts
31
+ ```
28
32
 
29
- ### Step 3: Present Results
33
+ Report:
34
+ - Total notes with frontmatter vs. without
35
+ - Most common missing fields
36
+ - Notes with invalid frontmatter (bad dates, unknown types, etc.)
37
+ - Tag usage: how many unique tags, how many notes per tag
30
38
 
31
- Format the report by severity:
39
+ ### Step 2: Broken Wikilinks
32
40
 
41
+ Scan for wikilinks that point to non-existent files:
42
+
43
+ ```bash
44
+ obsidian search "\[\[.*\]\]"
33
45
  ```
34
- ! 3 notes without frontmatter
35
- - Inbox/quick-thought.md
36
- - Projects/demo-notes.md
37
- - Knowledge/api-overview.md
38
46
 
39
- ! AGENTS.md lists [[Kent]] but no People/Kent.md found
47
+ For each wikilink found, check if the target file exists. Report broken links with:
48
+ - Source file where the broken link appears
49
+ - Target link that doesn't resolve
50
+ - Suggested fix (create the missing file or remove the link)
51
+
52
+ ### Step 3: Orphan Detection
40
53
 
41
- i 2 orphan notes (no incoming or outgoing wikilinks)
42
- - Archive/old-draft.md
43
- - Inbox/random.md
54
+ Find notes with no inbound wikilinks:
44
55
 
45
- ok 0 broken wikilinks
56
+ ```bash
57
+ obsidian backlinks "note-name"
46
58
  ```
47
59
 
48
- ### Step 4: Suggest Fixes
60
+ For both user notes and agent pages, identify orphans. Note that newly created notes are expected to be orphans temporarily.
61
+
62
+ ### Step 4: AGENTS.md, SCHEMA.md, and v2 layout
63
+
64
+ Check if `AGENTS.md` accurately reflects the current vault state:
65
+ - Does it reference directories that no longer exist?
66
+ - Does it miss directories that were added?
67
+ - Are the skill references still valid?
68
+ - Is the navigation advice still accurate?
69
+
70
+ Check `SCHEMA.md`:
71
+ - Tag taxonomy and domain sections match how tags are actually used
72
+ - Agent directory table matches `entities/`, `concepts/`, `comparisons/`, `queries/`
73
+ - Frontmatter expectations align with v2 `type: entity | concept | comparison | query`
74
+
75
+ Verify the v2 agent directories exist and are usable: `entities/`, `concepts/`, `comparisons/`, `queries/` (note if any are missing or empty when the vault should have compiled knowledge).
76
+
77
+ ### Step 5: Configuration Check
49
78
 
50
- For each issue category, suggest a concrete next action:
79
+ Verify vault configuration:
80
+ - `.obsidian/` directory exists and is valid
81
+ - `.opencode/` directory has current skill definitions
82
+ - `SCHEMA.md` exists and has a defined tag taxonomy
83
+ - `log.md` exists and has recent entries
84
+ - `INDEX.base` exists for compiled knowledge discovery
51
85
 
52
- | Issue | Suggested Fix |
53
- |-------|--------------|
54
- | Missing frontmatter | "Run `/weave` on these files to add structure" |
55
- | Missing note_type | "Run `/weave` to classify and connect these notes" |
56
- | Missing type/tags | "Run `/weave` to fill in metadata" |
57
- | Orphan notes | "Consider adding `[[wikilinks]]` to connect them, or archive if unused" |
58
- | Broken wikilinks | "Create the target note, or fix the link name" |
59
- | INDEX.base stale | "Run `/wiki` to regenerate the knowledge index" |
86
+ ### Step 6: Present Diagnosis
60
87
 
61
- **Always ask for user confirmation before making changes.** Do not auto-fix.
88
+ ```markdown
89
+ # Vault Diagnosis
62
90
 
63
- ### Step 5: Update INDEX.base Timestamp
91
+ Scanned {N} notes, {M} agent pages, {K} user notes.
64
92
 
65
- If `INDEX.base` exists and significant changes were made during fixes, suggest running `/wiki` to regenerate the index. If the user confirms, run `/wiki`.
93
+ ---
94
+
95
+ ## Frontmatter Coverage
96
+ - Notes with frontmatter: X/Y (Z%)
97
+ - Most common missing: {list fields}
98
+ - Unique tags: {N} (top 5: {list})
99
+
100
+ ## Broken Wikilinks
101
+ - {N} broken links found:
102
+ - [[target]] in [[source]] → file not found
103
+
104
+ ## Orphan Notes
105
+ - {N} notes with no inbound links:
106
+ - [[note-name]] — consider linking from [[suggested-source]]
107
+
108
+ ## AGENTS.md / SCHEMA.md / layout
109
+ - AGENTS.md: {Up to date / Needs update} — {details if outdated}
110
+ - SCHEMA.md: {Up to date / Needs update / Missing} — {taxonomy vs usage}
111
+ - Agent dirs (`entities/`, `concepts/`, `comparisons/`, `queries/`): {OK / Missing / Issues}
112
+
113
+ ## Configuration
114
+ - .obsidian/: {OK / Missing / Issues}
115
+ - .opencode/: {OK / Missing / Issues}
116
+ - log.md: {OK / Missing / {N} entries, last: {date}}
117
+ - INDEX.base: {OK / Missing / Needs update}
118
+
119
+ ## Overall Health
120
+ **Score**: {Good / Fair / Needs attention}
121
+
122
+ {2-3 sentence summary of the vault's overall health and the top 2-3 issues to address}
123
+ ```
66
124
 
67
125
  ## Key Principles
68
126
 
69
- - **Diagnose + suggest, never auto-fix**
70
- - **Group by severity** warnings first, info second
71
- - **Actionable suggestions** tell the user exactly what to do
72
- - **Respect user agency** always ask before modifying files
127
+ - **Comprehensive but prioritized.** Check everything, but surface the most important issues first.
128
+ - **Actionable findings.** Every issue should come with a suggested fix.
129
+ - **Non-destructive by default.** Report issues, don't fix them automatically.
130
+ - **Whole vault, not just agent pages.** Unlike /health which focuses on agent-maintained directories, /diagnose checks the entire vault.
131
+ - **Obsidian is first workbench.** All note operations go through Obsidian CLI.
@@ -0,0 +1,123 @@
1
+ ---
2
+ name: drift
3
+ description: >
4
+ Intention-vs-action gap analysis over time. Compares what the user said they would do
5
+ with what actually happened. Use when the user asks "am I following through on X",
6
+ "how has Y changed since the plan", "did I stick to the decision", "compare plan vs
7
+ reality", "what drifted", or wants to check if actions match stated intentions.
8
+ ---
9
+
10
+ # /drift — Intention vs. Action
11
+
12
+ You are an accountability mirror. Your job is to compare what the user said they would do with what actually happened — finding gaps between intentions and actions, plan vs. reality, and the slow drift of priorities over time.
13
+
14
+ ## Prerequisites Check
15
+
16
+ ```bash
17
+ obsidian --version
18
+ ```
19
+
20
+ If this fails, STOP and display the Obsidian CLI availability message (see /prep).
21
+
22
+ ## Parameters
23
+
24
+ - **topic** (optional): Specific plan, goal, or intention to track. Default: scan all recent intentions.
25
+ - **window** (optional): Time window to analyze (e.g., "30d", "3m", "all"). Default: "30d".
26
+
27
+ ## Process
28
+
29
+ ### Step 1: Find Stated Intentions
30
+
31
+ Search for places where the user expressed intentions:
32
+
33
+ ```bash
34
+ obsidian search "should" OR "need to" OR "will" OR "plan to" OR "going to" OR "decided to"
35
+ obsidian search "goal" OR "objective" OR "target" OR "priority"
36
+ ```
37
+
38
+ Also check:
39
+ - Daily notes for intention statements
40
+ - Agent pages in `entities/` and `concepts/` for documented decisions, owners, or plans
41
+ - Pages with `status: draft` that represent in-progress intentions
42
+ - `log.md` as the chronological spine: cook cycles, reported changes, and stated purposes tied to dates
43
+
44
+ ### Step 2: Find Actual Actions
45
+
46
+ Search for evidence of what actually happened:
47
+
48
+ ```bash
49
+ obsidian search "completed" OR "done" OR "shipped" OR "implemented" OR "finished"
50
+ obsidian search "changed" OR "switched" OR "pivoted" OR "abandoned"
51
+ ```
52
+
53
+ Check:
54
+ - Recent daily notes for actual activities
55
+ - Agent pages in `entities/` and `concepts/` for current state and decision descriptions
56
+ - `log.md` entries since the intention was stated
57
+ - Updated frontmatter dates and `status` changes
58
+ - New pages created vs. pages left in draft
59
+
60
+ ### Step 3: Compare Intentions to Actions
61
+
62
+ For each intention found:
63
+
64
+ 1. **Followed through** — Evidence shows the action was taken as planned
65
+ 2. **Partially followed** — Some action was taken but not fully
66
+ 3. **Deferred** — Still planned but not yet acted on
67
+ 4. **Diverged** — Action was taken but in a different direction
68
+ 5. **Abandoned** — No evidence of any action
69
+
70
+ ### Step 4: Identify Drift Patterns
71
+
72
+ Look for systematic patterns:
73
+
74
+ - **Priority drift**: The user said X was top priority, but most time went to Y
75
+ - **Scope drift**: A small intention grew into a much larger effort (or shrank)
76
+ - **Direction drift**: The approach changed from the original plan
77
+ - **Timeline drift**: Things took significantly longer (or shorter) than expected
78
+ - **Attention drift**: An intense focus faded and wasn't replaced by anything
79
+
80
+ ### Step 5: Present the Drift Report
81
+
82
+ ```markdown
83
+ # Drift Report: {topic or "Recent Intentions"}
84
+
85
+ Analyzed {N} notes from {start date} to {end date}.
86
+
87
+ ---
88
+
89
+ ## Followed Through ✅
90
+ - **{intention}** — {what was done, evidence from [[note]]}
91
+
92
+ ## Partially Followed ⚡
93
+ - **{intention}** — {what was done vs. what was planned, gap evidence from [[note]]}
94
+
95
+ ## Deferred ⏳
96
+ - **{intention}** — {stated on [[date]] in [[note]], no action found since}
97
+
98
+ ## Diverged ↩
99
+ - **{intention}** — {original plan from [[note A]], actual outcome from [[note B]]}
100
+
101
+ ## Abandoned ❌
102
+ - **{intention}** — {stated on [[date]], zero evidence of action}
103
+
104
+ ---
105
+
106
+ ## Drift Patterns
107
+
108
+ ### Priority Drift
109
+ {Evidence that stated priorities don't match actual time allocation}
110
+
111
+ ### Direction Drift
112
+ {Evidence that the approach changed from the original plan}
113
+
114
+ ## Overall Assessment
115
+ {2-3 sentences: Is the user generally following through on intentions? Where is the biggest gap? Is the drift a problem or a healthy adaptation?}
116
+ ```
117
+
118
+ ## Key Principles
119
+
120
+ - **Factual, not judgmental.** Report the gap between intention and action without moralizing. The user decides if it matters.
121
+ - **Evidence-based.** Every drift claim must cite specific notes showing both the intention and the actual outcome.
122
+ - **Drift isn't always bad.** Sometimes changing direction is the right call. Flag the drift; let the user judge.
123
+ - **Obsidian is first workbench.** All note operations go through Obsidian CLI.