@jayjiang/byoao 1.1.0 → 1.1.2

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 (95) hide show
  1. package/dist/assets/obsidian-skills/byoao-conventions.md +103 -0
  2. package/dist/assets/obsidian-skills/defuddle.md +41 -0
  3. package/dist/assets/obsidian-skills/json-canvas.md +244 -0
  4. package/dist/assets/obsidian-skills/obsidian-bases.md +497 -0
  5. package/dist/assets/obsidian-skills/obsidian-cli.md +106 -0
  6. package/dist/assets/obsidian-skills/obsidian-markdown.md +196 -0
  7. package/dist/assets/obsidian-skills/vault-thinking.md +40 -0
  8. package/{src/assets/presets/common/AGENT.md.hbs → dist/assets/presets/common/AGENTS.md.hbs} +11 -15
  9. package/dist/assets/presets/common/Start Here.md.hbs +137 -0
  10. package/dist/assets/presets/common/obsidian/core-plugins.json +33 -0
  11. package/dist/assets/presets/common/obsidian/daily-notes.json +5 -0
  12. package/dist/assets/presets/common/obsidian/templates.json +3 -0
  13. package/dist/assets/presets/common/templates/Daily Note.md +19 -0
  14. package/dist/assets/presets/common/templates/Decision Record.md +32 -0
  15. package/dist/assets/presets/common/templates/Investigation.md +34 -0
  16. package/dist/assets/presets/common/templates/Meeting Notes.md +25 -0
  17. package/dist/assets/presets/minimal/preset.json +28 -0
  18. package/dist/assets/presets/pm-tpm/agent-section.hbs +15 -0
  19. package/dist/assets/presets/pm-tpm/preset.json +43 -0
  20. package/dist/assets/presets/pm-tpm/templates/Feature Doc.md +45 -0
  21. package/dist/assets/presets/pm-tpm/templates/Sprint Handoff.md +38 -0
  22. package/dist/assets/skills/ask.md +132 -0
  23. package/dist/assets/skills/challenge.md +174 -0
  24. package/dist/assets/skills/connect.md +213 -0
  25. package/dist/assets/skills/diagnose.md +72 -0
  26. package/dist/assets/skills/drift.md +223 -0
  27. package/dist/assets/skills/emerge.md +168 -0
  28. package/dist/assets/skills/ideas.md +172 -0
  29. package/dist/assets/skills/organize.md +206 -0
  30. package/dist/assets/skills/trace.md +156 -0
  31. package/dist/assets/skills/weave.md +287 -0
  32. package/dist/assets/skills/wiki.md +227 -0
  33. package/dist/cli/cli-program.js +1 -1
  34. package/dist/cli/cli-program.js.map +1 -1
  35. package/dist/cli/installer.js +37 -2
  36. package/dist/cli/installer.js.map +1 -1
  37. package/dist/hooks/__tests__/system-transform.test.js +47 -29
  38. package/dist/hooks/__tests__/system-transform.test.js.map +1 -1
  39. package/dist/hooks/system-transform.js +2 -113
  40. package/dist/hooks/system-transform.js.map +1 -1
  41. package/dist/index.js +162 -482
  42. package/dist/index.js.map +1 -1
  43. package/dist/lib/cjs-modules.js +4 -1
  44. package/dist/lib/cjs-modules.js.map +1 -1
  45. package/dist/tools/add-person.js +1 -1
  46. package/dist/tools/add-person.js.map +1 -1
  47. package/dist/tools/add-project.js +1 -1
  48. package/dist/tools/add-project.js.map +1 -1
  49. package/dist/tools/init-vault.js +1 -1
  50. package/dist/tools/init-vault.js.map +1 -1
  51. package/dist/tools/vault-doctor.js +1 -1
  52. package/dist/tools/vault-doctor.js.map +1 -1
  53. package/dist/vault/__tests__/create.test.js +23 -23
  54. package/dist/vault/__tests__/create.test.js.map +1 -1
  55. package/dist/vault/__tests__/obsidian-cli.test.js +108 -0
  56. package/dist/vault/__tests__/obsidian-cli.test.js.map +1 -0
  57. package/dist/vault/__tests__/status.test.js +1 -8
  58. package/dist/vault/__tests__/status.test.js.map +1 -1
  59. package/dist/vault/__tests__/vault-detect.test.js +1 -13
  60. package/dist/vault/__tests__/vault-detect.test.js.map +1 -1
  61. package/dist/vault/create.js +23 -64
  62. package/dist/vault/create.js.map +1 -1
  63. package/dist/vault/doctor.js +15 -6
  64. package/dist/vault/doctor.js.map +1 -1
  65. package/dist/vault/manifest.js +1 -1
  66. package/dist/vault/member.js +2 -2
  67. package/dist/vault/member.js.map +1 -1
  68. package/dist/vault/obsidian-cli.js +28 -5
  69. package/dist/vault/obsidian-cli.js.map +1 -1
  70. package/dist/vault/project.js +2 -2
  71. package/dist/vault/project.js.map +1 -1
  72. package/dist/vault/self-update.js +1 -1
  73. package/dist/vault/status.js +3 -5
  74. package/dist/vault/status.js.map +1 -1
  75. package/dist/vault/upgrade.js +7 -2
  76. package/dist/vault/upgrade.js.map +1 -1
  77. package/dist/vault/vault-detect.js +4 -5
  78. package/dist/vault/vault-detect.js.map +1 -1
  79. package/package.json +1 -1
  80. package/src/assets/obsidian-skills/byoao-conventions.md +28 -55
  81. package/src/assets/obsidian-skills/vault-thinking.md +1 -1
  82. package/src/assets/presets/common/AGENTS.md.hbs +25 -0
  83. package/src/assets/presets/common/Start Here.md.hbs +2 -2
  84. package/src/skills/ask.md +132 -0
  85. package/src/skills/challenge.md +8 -2
  86. package/src/skills/connect.md +8 -1
  87. package/src/skills/diagnose.md +12 -13
  88. package/src/skills/drift.md +8 -2
  89. package/src/skills/emerge.md +8 -1
  90. package/src/skills/ideas.md +9 -3
  91. package/src/skills/organize.md +3 -4
  92. package/src/skills/trace.md +10 -3
  93. package/src/skills/weave.md +84 -79
  94. package/src/skills/wiki.md +227 -0
  95. /package/{src → dist}/assets/presets/common/Glossary.md.hbs +0 -0
@@ -0,0 +1,196 @@
1
+ ---
2
+ name: obsidian-markdown
3
+ description: Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.
4
+ ---
5
+
6
+ # Obsidian Flavored Markdown Skill
7
+
8
+ Create and edit valid Obsidian Flavored Markdown. Obsidian extends CommonMark and GFM with wikilinks, embeds, callouts, properties, comments, and other syntax. This skill covers only Obsidian-specific extensions -- standard Markdown (headings, bold, italic, lists, quotes, code blocks, tables) is assumed knowledge.
9
+
10
+ ## Workflow: Creating an Obsidian Note
11
+
12
+ 1. **Add frontmatter** with properties (title, tags, aliases) at the top of the file. See [PROPERTIES.md](references/PROPERTIES.md) for all property types.
13
+ 2. **Write content** using standard Markdown for structure, plus Obsidian-specific syntax below.
14
+ 3. **Link related notes** using wikilinks (`[[Note]]`) for internal vault connections, or standard Markdown links for external URLs.
15
+ 4. **Embed content** from other notes, images, or PDFs using the `![[embed]]` syntax. See [EMBEDS.md](references/EMBEDS.md) for all embed types.
16
+ 5. **Add callouts** for highlighted information using `> [!type]` syntax. See [CALLOUTS.md](references/CALLOUTS.md) for all callout types.
17
+ 6. **Verify** the note renders correctly in Obsidian's reading view.
18
+
19
+ > When choosing between wikilinks and Markdown links: use `[[wikilinks]]` for notes within the vault (Obsidian tracks renames automatically) and `[text](url)` for external URLs only.
20
+
21
+ ## Internal Links (Wikilinks)
22
+
23
+ ```markdown
24
+ [[Note Name]] Link to note
25
+ [[Note Name|Display Text]] Custom display text
26
+ [[Note Name#Heading]] Link to heading
27
+ [[Note Name#^block-id]] Link to block
28
+ [[#Heading in same note]] Same-note heading link
29
+ ```
30
+
31
+ Define a block ID by appending `^block-id` to any paragraph:
32
+
33
+ ```markdown
34
+ This paragraph can be linked to. ^my-block-id
35
+ ```
36
+
37
+ For lists and quotes, place the block ID on a separate line after the block:
38
+
39
+ ```markdown
40
+ > A quote block
41
+
42
+ ^quote-id
43
+ ```
44
+
45
+ ## Embeds
46
+
47
+ Prefix any wikilink with `!` to embed its content inline:
48
+
49
+ ```markdown
50
+ ![[Note Name]] Embed full note
51
+ ![[Note Name#Heading]] Embed section
52
+ ![[image.png]] Embed image
53
+ ![[image.png|300]] Embed image with width
54
+ ![[document.pdf#page=3]] Embed PDF page
55
+ ```
56
+
57
+ See [EMBEDS.md](references/EMBEDS.md) for audio, video, search embeds, and external images.
58
+
59
+ ## Callouts
60
+
61
+ ```markdown
62
+ > [!note]
63
+ > Basic callout.
64
+
65
+ > [!warning] Custom Title
66
+ > Callout with a custom title.
67
+
68
+ > [!faq]- Collapsed by default
69
+ > Foldable callout (- collapsed, + expanded).
70
+ ```
71
+
72
+ Common types: `note`, `tip`, `warning`, `info`, `example`, `quote`, `bug`, `danger`, `success`, `failure`, `question`, `abstract`, `todo`.
73
+
74
+ See [CALLOUTS.md](references/CALLOUTS.md) for the full list with aliases, nesting, and custom CSS callouts.
75
+
76
+ ## Properties (Frontmatter)
77
+
78
+ ```yaml
79
+ ---
80
+ title: My Note
81
+ date: 2024-01-15
82
+ tags:
83
+ - project
84
+ - active
85
+ aliases:
86
+ - Alternative Name
87
+ cssclasses:
88
+ - custom-class
89
+ ---
90
+ ```
91
+
92
+ Default properties: `tags` (searchable labels), `aliases` (alternative note names for link suggestions), `cssclasses` (CSS classes for styling).
93
+
94
+ See [PROPERTIES.md](references/PROPERTIES.md) for all property types, tag syntax rules, and advanced usage.
95
+
96
+ ## Tags
97
+
98
+ ```markdown
99
+ #tag Inline tag
100
+ #nested/tag Nested tag with hierarchy
101
+ ```
102
+
103
+ Tags can contain letters, numbers (not first character), underscores, hyphens, and forward slashes. Tags can also be defined in frontmatter under the `tags` property.
104
+
105
+ ## Comments
106
+
107
+ ```markdown
108
+ This is visible %%but this is hidden%% text.
109
+
110
+ %%
111
+ This entire block is hidden in reading view.
112
+ %%
113
+ ```
114
+
115
+ ## Obsidian-Specific Formatting
116
+
117
+ ```markdown
118
+ ==Highlighted text== Highlight syntax
119
+ ```
120
+
121
+ ## Math (LaTeX)
122
+
123
+ ```markdown
124
+ Inline: $e^{i\pi} + 1 = 0$
125
+
126
+ Block:
127
+ $$
128
+ \frac{a}{b} = c
129
+ $$
130
+ ```
131
+
132
+ ## Diagrams (Mermaid)
133
+
134
+ ````markdown
135
+ ```mermaid
136
+ graph TD
137
+ A[Start] --> B{Decision}
138
+ B -->|Yes| C[Do this]
139
+ B -->|No| D[Do that]
140
+ ```
141
+ ````
142
+
143
+ To link Mermaid nodes to Obsidian notes, add `class NodeName internal-link;`.
144
+
145
+ ## Footnotes
146
+
147
+ ```markdown
148
+ Text with a footnote[^1].
149
+
150
+ [^1]: Footnote content.
151
+
152
+ Inline footnote.^[This is inline.]
153
+ ```
154
+
155
+ ## Complete Example
156
+
157
+ ````markdown
158
+ ---
159
+ title: Project Alpha
160
+ date: 2024-01-15
161
+ tags:
162
+ - project
163
+ - active
164
+ status: in-progress
165
+ ---
166
+
167
+ # Project Alpha
168
+
169
+ This project aims to [[improve workflow]] using modern techniques.
170
+
171
+ > [!important] Key Deadline
172
+ > The first milestone is due on ==January 30th==.
173
+
174
+ ## Tasks
175
+
176
+ - [x] Initial planning
177
+ - [ ] Development phase
178
+ - [ ] Backend implementation
179
+ - [ ] Frontend design
180
+
181
+ ## Notes
182
+
183
+ The algorithm uses $O(n \log n)$ sorting. See [[Algorithm Notes#Sorting]] for details.
184
+
185
+ ![[Architecture Diagram.png|600]]
186
+
187
+ Reviewed in [[Meeting Notes 2024-01-10#Decisions]].
188
+ ````
189
+
190
+ ## References
191
+
192
+ - [Obsidian Flavored Markdown](https://help.obsidian.md/obsidian-flavored-markdown)
193
+ - [Internal links](https://help.obsidian.md/links)
194
+ - [Embed files](https://help.obsidian.md/embeds)
195
+ - [Callouts](https://help.obsidian.md/callouts)
196
+ - [Properties](https://help.obsidian.md/properties)
@@ -0,0 +1,40 @@
1
+ ---
2
+ name: vault-thinking
3
+ description: Guide for recommending BYOAO vault analysis commands to users. Use when the user is reflecting, brainstorming, stuck on an idea, asking about patterns, or could benefit from a vault-powered thinking workflow.
4
+ ---
5
+
6
+ # Vault Thinking Guide
7
+
8
+ This vault has BYOAO thinking commands available. Suggest them when they match the user's intent — don't wait for an exact keyword match.
9
+
10
+ ## Available Commands
11
+
12
+ | Command | What it does | Suggest when |
13
+ |---------|-------------|--------------|
14
+ | `/weave` | Enrich notes with frontmatter, wikilinks, Glossary entries, hub notes | User imports new files, asks to organize, or vault has many unlinked notes |
15
+ | `/trace topic` | Chronological timeline of how an idea evolved | User asks how something developed, wants history, or says "when did I start..." |
16
+ | `/emerge` | Surface hidden patterns, clusters, contradictions across the vault | User asks "what am I missing", wants a big-picture review, or seems stuck |
17
+ | `/connect A B` | Bridge two topics via the vault's link graph | User wonders if two areas are related, or wants cross-domain insight |
18
+ | `/ideas` | Deep scan to generate actionable ideas from vault content | User asks "what should I work on", wants brainstorming, or needs next steps |
19
+ | `/challenge topic` | Pressure-test a belief against the vault's own history | User is making a decision, says "am I wrong", or wants to validate an assumption |
20
+ | `/drift` | Compare stated intentions vs actual behavior over 30-90 days | User asks about follow-through, wonders where time went, or reviews goals |
21
+ | `/diagnose` | Vault health check — orphans, broken links, frontmatter gaps | User notices broken links, asks "what's wrong with my vault", or after heavy editing |
22
+ ## When to Proactively Suggest
23
+
24
+ - User is **reflecting on a topic** → suggest `/trace` to see how their thinking evolved
25
+ - User is **brainstorming or feels stuck** → suggest `/emerge` or `/ideas`
26
+ - User is **making a decision** → suggest `/challenge` to pressure-test it
27
+ - User is **reviewing goals or progress** → suggest `/drift`
28
+ - User **imported new notes** or mentions disorganization → suggest `/weave`
29
+ - User asks about **connections between topics** → suggest `/connect`
30
+ - User mentions **broken links or vault messiness** → suggest `/diagnose`
31
+
32
+ ## How to Suggest
33
+
34
+ Mention the command naturally in conversation. For example:
35
+
36
+ - "You could run `/trace data-mesh` to see how that idea has evolved across your notes."
37
+ - "If you want to pressure-test that assumption, `/challenge` can find counter-evidence in your vault."
38
+ - "After importing those files, `/weave` can add frontmatter and link them to your existing notes."
39
+
40
+ Do not run these commands automatically — they read many vault files and can take several minutes. Always let the user decide when to invoke them.
@@ -1,16 +1,14 @@
1
1
  # {{KB_NAME}}
2
2
 
3
- {{#if OWNER_NAME}}This is {{OWNER_NAME}}'s personal knowledge base.{{else}}A personal knowledge base.{{/if}} It contains interconnected notes on work, ideas, projects, people, and domains of interest.
3
+ {{#if OWNER_NAME}}This is {{OWNER_NAME}}'s personal knowledge base.{{else}}A personal knowledge base.{{/if}}
4
+
5
+ Knowledge graph (frontmatter + wikilinks) is the source of truth, not folder structure.
4
6
 
5
7
  ## How to Navigate
6
8
 
7
- 1. **Start with [[Glossary]]** — the entity dictionary for this knowledge base.
8
- Every term is a key concept the owner cares about. Scan it first to
9
- understand domain vocabulary.
10
- 2. **Use frontmatter** to find relevant notes: `domain`, `type`, `tags`,
11
- and `references` fields narrow down context quickly.
12
- 3. **Follow wikilinks** — `[[links]]` connect related notes. Follow them
13
- to build understanding of a topic.
9
+ 1. **Start with [[Glossary]]** — the entity dictionary. Every term is a key concept the owner cares about.
10
+ 2. **Search by frontmatter** `domain`, `type`, `tags`, and `references` fields narrow context quickly.
11
+ 3. **Follow wikilinks** — `[[links]]` connect related notes. Follow them to build understanding.
14
12
  4. **Check backlinks** — discover related notes the user didn't mention.
15
13
  5. **Chain**: Glossary → domain notes → references → backlinks → details.
16
14
 
@@ -25,26 +23,24 @@
25
23
  | `references`| Related notes — follow for deeper context |
26
24
  | `tags` | Flexible categorization |
27
25
  | `status` | draft / active / completed / archived |
28
- | `source` | (optional) URL to cloud origin — Confluence, Google Doc, etc. |
26
+ | `source` | (optional) URL to cloud origin — Confluence, Doc, etc. |
29
27
 
30
28
  {{{ROLE_SECTION}}}
31
29
 
32
30
  <!-- byoao:domains:start -->
33
31
  ## Key Domains
34
32
 
35
- (Auto-generated by /weave — run it to discover domains across vault notes)
33
+ (Auto-generated by `/weave` — run it to discover domains across vault notes)
36
34
 
37
35
  <!-- byoao:domains:end -->
38
36
 
39
37
  <!-- byoao:conventions:start -->
40
38
  ## Conventions
41
39
 
42
- - Notes may or may not have frontmatter. Use /weave to enrich.
40
+ - Notes may or may not have frontmatter. Use `/weave` to enrich.
43
41
  - Wikilinks are the primary connection mechanism.
44
- - No strict directory rules — notes live wherever the user puts them.
45
- - The knowledge graph (frontmatter + wikilinks) is the source of truth,
46
- not the folder structure.
42
+ - No strict directory rules — notes live wherever the user places them.
47
43
  - Use `/weave` to connect new notes into the graph.
48
44
  - Use `/diagnose` to check knowledge graph health.
49
45
 
50
- <!-- byoao:conventions:end -->
46
+ <!-- byoao:conventions:end -->
@@ -0,0 +1,137 @@
1
+ ---
2
+ title: Start Here
3
+ type: reference
4
+ status: active
5
+ tags: [onboarding]
6
+ ---
7
+
8
+ # Welcome to {{KB_NAME}}
9
+
10
+ Your personal knowledge base. Curate what matters, and let AI
11
+ connect the dots into a knowledge graph.
12
+
13
+ ## Choose Your Path
14
+
15
+ ### Path A: My docs are in the cloud
16
+
17
+ If your knowledge lives in Confluence, Google Docs, Notion, or other
18
+ cloud services — you are the curator. BYOAO does not auto-import;
19
+ you decide what belongs in your local knowledge base.
20
+
21
+ **How to bring content in:**
22
+
23
+ 1. **Export as Markdown** — Confluence and Google Docs both support
24
+ exporting pages as `.md` files. Download the ones that matter
25
+ and drop them into this vault folder.
26
+ 2. **Obsidian Web Clipper** — Install the browser extension to save
27
+ any web page directly into your vault as a clean markdown note.
28
+ 3. **Write summaries** — You don't need full copies. Create a local
29
+ note that captures the key insights and link back to the source:
30
+
31
+ ```yaml
32
+ ---
33
+ title: "Migration Plan Q2"
34
+ source: "https://confluence.example.com/pages/12345"
35
+ ---
36
+ ```
37
+
38
+ > The `source` property keeps the connection between your local note
39
+ > and the cloud original. Add it whenever a note originates from an
40
+ > external document.
41
+
42
+ **Once you have a few notes → run `/weave`** (see below).
43
+
44
+ ### Path B: I already have local notes
45
+
46
+ If you have existing markdown files — whether organized or scattered:
47
+
48
+ 1. **Drop them in** — Copy or move your files into this vault folder.
49
+ (Or if you ran `byoao init --from`, they're already here.)
50
+ 2. **Don't worry about structure** — Your files don't need frontmatter,
51
+ wikilinks, or any particular organization yet.
52
+
53
+ **Run `/weave` now** — it will scan your notes, add frontmatter
54
+ metadata (including dates from file timestamps), discover connections,
55
+ and build your [[Glossary]] from frequently mentioned concepts.
56
+
57
+ ### Path C: Starting fresh
58
+
59
+ No existing notes? No problem.
60
+
61
+ 1. Press `Cmd+T` (Mac) or `Ctrl+T` (Windows) → choose "Daily Note".
62
+ 2. Write what's on your mind today. Don't worry about structure.
63
+ 3. After a few notes, run `/weave` to connect them.
64
+
65
+ ---
66
+
67
+ ## /weave — Where the Magic Happens
68
+
69
+ Open your AI agent and type `/weave`. It will:
70
+
71
+ - **Add frontmatter** — title, date, type, domain, tags
72
+ - **Create wikilinks** — connect related notes automatically
73
+ - **Build your Glossary** — extract key terms and concepts
74
+ - **Suggest organization** — propose directory structure (with your approval)
75
+
76
+ Watch: scattered files become a connected knowledge graph.
77
+
78
+ After weaving, press `Cmd+G` (Mac) or `Ctrl+G` (Windows) to see your
79
+ knowledge visualized. Every node is a note, every line is a connection.
80
+
81
+ ---
82
+
83
+ ## Obsidian Essentials
84
+
85
+ | Shortcut | Action |
86
+ |----------|--------|
87
+ | `Cmd+O` | Quick Switch — jump to any note |
88
+ | `Cmd+T` | Insert Template |
89
+ | `Cmd+G` | Graph View |
90
+ | `Cmd+N` | New note |
91
+ | `Cmd+Shift+F` | Search across all notes |
92
+ | `[[double brackets]]` | Create a link to another note |
93
+
94
+ ---
95
+
96
+ ## AI Commands
97
+
98
+ | Command | What it does |
99
+ |---------|-------------|
100
+ | `/weave` | Connect your notes into a knowledge graph |
101
+ | `/organize` | Reorganize vault directories using enriched metadata |
102
+ | `/trace` | Track how an idea evolved over time |
103
+ | `/emerge` | Discover patterns you haven't noticed |
104
+ | `/connect` | Bridge two seemingly unrelated topics |
105
+ | `/ideas` | Generate actionable ideas from your vault |
106
+ | `/challenge` | Pressure-test a belief against your own notes |
107
+ | `/drift` | Compare intentions vs actions over time |
108
+ | `/diagnose` | Check knowledge graph health |
109
+
110
+ {{#if HAS_MCP_SERVICES}}
111
+
112
+ ---
113
+
114
+ ## Connected Services
115
+
116
+ Your AI agent can access external services configured during setup:
117
+ {{#each MCP_SERVICES}}
118
+ - **{{this.name}}** — {{this.description}}
119
+ {{/each}}
120
+
121
+ These services authenticate via your browser. If a connection expires,
122
+ tell the agent: "reconnect to {service name}".
123
+
124
+ {{/if}}
125
+ ---
126
+
127
+ ## Key Files
128
+
129
+ - **[[Glossary]]** — Domain terms and key concepts
130
+ - **AGENTS.md** — How AI agents navigate this vault
131
+
132
+ ---
133
+
134
+ ## For AI Agents
135
+
136
+ See `AGENTS.md` at the vault root for navigation instructions
137
+ and knowledge graph conventions.
@@ -0,0 +1,33 @@
1
+ {
2
+ "file-explorer": true,
3
+ "global-search": true,
4
+ "switcher": true,
5
+ "graph": true,
6
+ "backlink": true,
7
+ "canvas": true,
8
+ "outgoing-link": true,
9
+ "tag-pane": true,
10
+ "footnotes": false,
11
+ "properties": true,
12
+ "page-preview": true,
13
+ "daily-notes": true,
14
+ "templates": true,
15
+ "note-composer": true,
16
+ "command-palette": true,
17
+ "slash-command": false,
18
+ "editor-status": true,
19
+ "bookmarks": true,
20
+ "markdown-importer": false,
21
+ "zk-prefixer": false,
22
+ "random-note": false,
23
+ "outline": true,
24
+ "word-count": true,
25
+ "slides": false,
26
+ "audio-recorder": false,
27
+ "workspaces": false,
28
+ "file-recovery": true,
29
+ "publish": false,
30
+ "sync": true,
31
+ "bases": true,
32
+ "webviewer": false
33
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "folder": "Daily",
3
+ "format": "YYYY-MM-DD",
4
+ "template": "Knowledge/templates/Daily Note"
5
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "folder": "Knowledge/templates"
3
+ }
@@ -0,0 +1,19 @@
1
+ ---
2
+ title: "{{date}}"
3
+ type: daily
4
+ status: active
5
+ date: {{date}}
6
+ tags: [daily]
7
+ ---
8
+
9
+ ## Focus
10
+
11
+ -
12
+
13
+ ## Notes
14
+
15
+ -
16
+
17
+ ## Action Items
18
+
19
+ - [ ]
@@ -0,0 +1,32 @@
1
+ ---
2
+ title: ""
3
+ type: decision
4
+ status: draft
5
+ date: {{date}}
6
+ decision: ""
7
+ decided-by: []
8
+ alternatives-considered: []
9
+ tags: [decision]
10
+ ---
11
+
12
+ ## Context
13
+
14
+ What is the situation that requires a decision?
15
+
16
+ ## Decision
17
+
18
+ What was decided.
19
+
20
+ ## Alternatives Considered
21
+
22
+ | Option | Pros | Cons |
23
+ |--------|------|------|
24
+ | | | |
25
+
26
+ ## Rationale
27
+
28
+ Why this option was chosen over alternatives.
29
+
30
+ ## Consequences
31
+
32
+ What changes as a result of this decision.
@@ -0,0 +1,34 @@
1
+ ---
2
+ title: ""
3
+ type: investigation
4
+ status: draft
5
+ date: {{date}}
6
+ jira: ""
7
+ hypothesis: ""
8
+ conclusion: ""
9
+ tags: [investigation, spike]
10
+ ---
11
+
12
+ ## Question
13
+
14
+ What are we trying to find out?
15
+
16
+ ## Hypothesis
17
+
18
+ What we expect to find and why.
19
+
20
+ ## Method
21
+
22
+ How we investigated (queries, tools, data sources).
23
+
24
+ ## Findings
25
+
26
+ -
27
+
28
+ ## Conclusion
29
+
30
+ Summary of what we learned. Does it confirm or refute the hypothesis?
31
+
32
+ ## Next Steps
33
+
34
+ -
@@ -0,0 +1,25 @@
1
+ ---
2
+ title: ""
3
+ type: meeting
4
+ status: active
5
+ date: {{date}}
6
+ participants: []
7
+ meeting-type: ""
8
+ tags: [meeting]
9
+ ---
10
+
11
+ ## Agenda
12
+
13
+ 1.
14
+
15
+ ## Notes
16
+
17
+ -
18
+
19
+ ## Decisions
20
+
21
+ -
22
+
23
+ ## Action Items
24
+
25
+ - [ ] @person — task — due date
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "minimal",
3
+ "displayName": "Personal Knowledge Base",
4
+ "description": "A minimal personal knowledge base — just Daily notes, templates, and Glossary. Add structure as you go.",
5
+ "directories": [],
6
+ "agentDescription": "Personal knowledge base. Notes are connected through wikilinks and frontmatter. Use /weave to discover and strengthen connections.",
7
+ "frontmatterExtras": {},
8
+ "templates": [],
9
+ "mcpServers": {},
10
+ "obsidianPlugins": {
11
+ "agent-client": {
12
+ "repo": "RAIT-09/obsidian-agent-client",
13
+ "version": "latest",
14
+ "config": {
15
+ "defaultAgentId": "opencode-acp",
16
+ "customAgents": [
17
+ {
18
+ "id": "opencode-acp",
19
+ "displayName": "OpenCode",
20
+ "command": "opencode",
21
+ "args": ["acp"],
22
+ "env": []
23
+ }
24
+ ]
25
+ }
26
+ }
27
+ }
28
+ }
@@ -0,0 +1,15 @@
1
+ ## Active Projects (Projects/)
2
+
3
+ {{{PROJECTS}}}
4
+
5
+ {{#if HAS_JIRA}}
6
+ ## JIRA
7
+
8
+ - Host: {{JIRA_HOST}}
9
+ - Project: {{JIRA_PROJECT}}
10
+ {{/if}}
11
+
12
+ ## Sprint Cycle
13
+
14
+ - 2-week sprints
15
+ - Adjust dates and cadence to match your team
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "pm-tpm",
3
+ "displayName": "PM / TPM",
4
+ "description": "Project tracking, sprint cycles, stakeholder management, data analysis",
5
+ "directories": ["Projects", "Sprints"],
6
+ "agentDescription": "PM/TPM knowledge base",
7
+ "frontmatterExtras": {
8
+ "project": ["jira", "stakeholders", "priority"],
9
+ "sprint": ["sprint-dates", "jira-board"]
10
+ },
11
+ "templates": ["Feature Doc.md", "Sprint Handoff.md"],
12
+ "mcpServers": {
13
+ "atlassian": {
14
+ "type": "remote",
15
+ "url": "https://mcp.atlassian.com/v1/sse"
16
+ },
17
+ "bigquery": {
18
+ "type": "local",
19
+ "command": ["npx", "-y", "@toolbox-sdk/server", "--prebuilt=bigquery", "--stdio"],
20
+ "environment": {
21
+ "BIGQUERY_PROJECT": "${GCP_PROJECT_ID}"
22
+ }
23
+ }
24
+ },
25
+ "obsidianPlugins": {
26
+ "agent-client": {
27
+ "repo": "RAIT-09/obsidian-agent-client",
28
+ "version": "latest",
29
+ "config": {
30
+ "defaultAgentId": "opencode-acp",
31
+ "customAgents": [
32
+ {
33
+ "id": "opencode-acp",
34
+ "displayName": "OpenCode",
35
+ "command": "opencode",
36
+ "args": ["acp"],
37
+ "env": []
38
+ }
39
+ ]
40
+ }
41
+ }
42
+ }
43
+ }