@jayjiang/byoao 0.2.0
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.
- package/dist/cli/cli-program.js +241 -0
- package/dist/cli/cli-program.js.map +1 -0
- package/dist/cli/installer.js +226 -0
- package/dist/cli/installer.js.map +1 -0
- package/dist/cli/ui.js +157 -0
- package/dist/cli/ui.js.map +1 -0
- package/dist/hooks/idle-suggestions.js +14 -0
- package/dist/hooks/idle-suggestions.js.map +1 -0
- package/dist/hooks/system-transform.js +34 -0
- package/dist/hooks/system-transform.js.map +1 -0
- package/dist/index.js +43 -0
- package/dist/index.js.map +1 -0
- package/dist/plugin-config.js +57 -0
- package/dist/plugin-config.js.map +1 -0
- package/dist/tools/add-glossary-term.js +19 -0
- package/dist/tools/add-glossary-term.js.map +1 -0
- package/dist/tools/add-member.js +21 -0
- package/dist/tools/add-member.js.map +1 -0
- package/dist/tools/add-project.js +24 -0
- package/dist/tools/add-project.js.map +1 -0
- package/dist/tools/init-vault.js +82 -0
- package/dist/tools/init-vault.js.map +1 -0
- package/dist/tools/vault-doctor.js +38 -0
- package/dist/tools/vault-doctor.js.map +1 -0
- package/dist/tools/vault-status.js +18 -0
- package/dist/tools/vault-status.js.map +1 -0
- package/dist/vault/create.js +230 -0
- package/dist/vault/create.js.map +1 -0
- package/dist/vault/doctor.js +148 -0
- package/dist/vault/doctor.js.map +1 -0
- package/dist/vault/glossary.js +33 -0
- package/dist/vault/glossary.js.map +1 -0
- package/dist/vault/member.js +67 -0
- package/dist/vault/member.js.map +1 -0
- package/dist/vault/obsidian-check.js +125 -0
- package/dist/vault/obsidian-check.js.map +1 -0
- package/dist/vault/obsidian-cli.js +47 -0
- package/dist/vault/obsidian-cli.js.map +1 -0
- package/dist/vault/opencode-check.js +65 -0
- package/dist/vault/opencode-check.js.map +1 -0
- package/dist/vault/preset.js +48 -0
- package/dist/vault/preset.js.map +1 -0
- package/dist/vault/project.js +68 -0
- package/dist/vault/project.js.map +1 -0
- package/dist/vault/status.js +135 -0
- package/dist/vault/status.js.map +1 -0
- package/dist/vault/template.js +14 -0
- package/dist/vault/template.js.map +1 -0
- package/package.json +58 -0
- package/src/assets/obsidian-skills/defuddle.md +41 -0
- package/src/assets/obsidian-skills/json-canvas.md +244 -0
- package/src/assets/obsidian-skills/obsidian-bases.md +497 -0
- package/src/assets/obsidian-skills/obsidian-cli.md +106 -0
- package/src/assets/obsidian-skills/obsidian-markdown.md +196 -0
- package/src/assets/presets/common/AGENT.md.hbs +29 -0
- package/src/assets/presets/common/Glossary.md.hbs +44 -0
- package/src/assets/presets/common/Start Here.md.hbs +95 -0
- package/src/assets/presets/common/obsidian/core-plugins.json +33 -0
- package/src/assets/presets/common/obsidian/daily-notes.json +5 -0
- package/src/assets/presets/common/obsidian/templates.json +3 -0
- package/src/assets/presets/common/templates/Daily Note.md +19 -0
- package/src/assets/presets/common/templates/Decision Record.md +32 -0
- package/src/assets/presets/common/templates/Investigation.md +34 -0
- package/src/assets/presets/common/templates/Meeting Notes.md +25 -0
- package/src/assets/presets/pm-tpm/agent-section.hbs +15 -0
- package/src/assets/presets/pm-tpm/preset.json +12 -0
- package/src/assets/presets/pm-tpm/templates/Feature Doc.md +45 -0
- package/src/assets/presets/pm-tpm/templates/Sprint Handoff.md +38 -0
- package/src/assets/web-clipper/confluence-page.json +63 -0
- package/src/assets/web-clipper/general-article.json +53 -0
- package/src/assets/web-clipper/jira-issue.json +68 -0
- package/src/assets/web-clipper/meeting-notes.json +53 -0
- package/src/skills/enrich-document.md +52 -0
- package/src/skills/init-knowledge-base.md +85 -0
- package/src/skills/system-explainer.md +58 -0
- package/src/skills/vault-doctor.md +73 -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,29 @@
|
|
|
1
|
+
# {{TEAM_NAME}} Workspace
|
|
2
|
+
|
|
3
|
+
{{{AGENT_DESCRIPTION}}}
|
|
4
|
+
|
|
5
|
+
## Navigation
|
|
6
|
+
|
|
7
|
+
- Search by frontmatter: `type`, `status`, `team`, `tags`
|
|
8
|
+
- Follow `[[wikilinks]]` to traverse knowledge graph
|
|
9
|
+
- `Knowledge/` for domain reference
|
|
10
|
+
- `People/` for team roster
|
|
11
|
+
|
|
12
|
+
## Domain Knowledge
|
|
13
|
+
|
|
14
|
+
- [[Glossary]] — centralized term reference (start here for any domain question)
|
|
15
|
+
|
|
16
|
+
### Concept Notes (Knowledge/concepts/)
|
|
17
|
+
|
|
18
|
+
Complex domain concepts with rich wikilinks. Created as terms graduate from the Glossary.
|
|
19
|
+
|
|
20
|
+
{{{ROLE_SECTION}}}
|
|
21
|
+
|
|
22
|
+
## Team (People/)
|
|
23
|
+
|
|
24
|
+
{{{TEAM_TABLE}}}
|
|
25
|
+
|
|
26
|
+
## Templates (Knowledge/templates/)
|
|
27
|
+
|
|
28
|
+
Use Obsidian's template plugin (Ctrl/Cmd+T) to insert:
|
|
29
|
+
{{{TEMPLATE_LIST}}}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "{{TEAM_NAME}} Domain Glossary"
|
|
3
|
+
type: reference
|
|
4
|
+
status: active
|
|
5
|
+
date: {{date}}
|
|
6
|
+
tags: [glossary, domain, reference]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# {{TEAM_NAME}} Domain Glossary
|
|
10
|
+
|
|
11
|
+
Centralized quick-reference for all domain terms. This glossary uses a **two-tier terminology system**:
|
|
12
|
+
|
|
13
|
+
- **Tier 1 (this file)**: Simple terms defined in one or two sentences — kept here in table rows.
|
|
14
|
+
- **Tier 2 (concept notes)**: Complex terms that need detailed explanation, diagrams, or have multiple relationships — get their own note in `30-Knowledge/concepts/` and are linked from here.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Core Terms
|
|
19
|
+
|
|
20
|
+
| Term | Definition |
|
|
21
|
+
|------|-----------|
|
|
22
|
+
{{GLOSSARY_ENTRIES}}
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## How to Add a New Term
|
|
27
|
+
|
|
28
|
+
1. **Start here**: Add a row to the appropriate table above with a one-line definition.
|
|
29
|
+
2. **Graduate if needed**: If a term grows beyond 2 sentences, has 3+ relationships to other terms, or has important gotchas, create a concept note:
|
|
30
|
+
- Create `30-Knowledge/concepts/Term Name.md`
|
|
31
|
+
- Replace the definition here with: `Brief intro — see [[Term Name]] for full details.`
|
|
32
|
+
3. **Link generously**: Use `[[wikilinks]]` in definitions to connect related terms.
|
|
33
|
+
|
|
34
|
+
### Graduation Rule
|
|
35
|
+
|
|
36
|
+
A term should move from Tier 1 to Tier 2 when:
|
|
37
|
+
- Its definition needs **more than 2 sentences**
|
|
38
|
+
- It has **3+ relationships** to other notes (people, projects, systems)
|
|
39
|
+
- It has **gotchas or edge cases** that people frequently get wrong
|
|
40
|
+
- It requires **examples, diagrams, or data** to explain properly
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
*Maintenance: This file is the first stop for any domain question. Keep it alphabetized within sections. Review quarterly for stale or missing terms.*
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Start Here
|
|
3
|
+
type: reference
|
|
4
|
+
status: active
|
|
5
|
+
tags: [onboarding]
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Welcome to {{TEAM_NAME}} Workspace
|
|
9
|
+
|
|
10
|
+
This is a **knowledge base** for the {{TEAM_NAME}} team, built in [Obsidian](https://obsidian.md). Everything here — notes, terms, people, projects — is connected through links and searchable properties.
|
|
11
|
+
|
|
12
|
+
This guide teaches by doing. Each section uses the features it describes.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## 5 Essential Operations
|
|
17
|
+
|
|
18
|
+
### 1. Follow a Wikilink
|
|
19
|
+
|
|
20
|
+
See the double-bracket link below? Click it to jump to that note.
|
|
21
|
+
|
|
22
|
+
> Try it: [[Glossary]]
|
|
23
|
+
|
|
24
|
+
Every `[[link]]` in this vault connects two notes. These connections build a knowledge graph you can visualize (see operation 5).
|
|
25
|
+
|
|
26
|
+
### 2. Quick Switch
|
|
27
|
+
|
|
28
|
+
Press `Cmd+O` (Mac) or `Ctrl+O` (Windows) to open the quick switcher. Start typing any note name.
|
|
29
|
+
|
|
30
|
+
> Try it: `Cmd+O` → type any project name
|
|
31
|
+
|
|
32
|
+
### 3. Insert a Template
|
|
33
|
+
|
|
34
|
+
Press `Cmd+T` to insert a template into the current note. Templates live in `Knowledge/templates/` and give you consistent structure.
|
|
35
|
+
|
|
36
|
+
> Try it: Create a new note (`Cmd+N`), then `Cmd+T` → choose "Meeting Notes"
|
|
37
|
+
|
|
38
|
+
### 4. Search by Property
|
|
39
|
+
|
|
40
|
+
Every note has **frontmatter** — the YAML block between `---` at the top. You can search by any property.
|
|
41
|
+
|
|
42
|
+
> Try it: Open search (`Cmd+Shift+F`) → type `[type: feature]` to find all feature docs
|
|
43
|
+
|
|
44
|
+
Common properties: `type`, `status`, `team`, `project`, `stakeholders`, `tags`.
|
|
45
|
+
|
|
46
|
+
### 5. Graph View
|
|
47
|
+
|
|
48
|
+
Press `Cmd+G` to see how all notes connect visually. Nodes are notes, edges are wikilinks.
|
|
49
|
+
|
|
50
|
+
> Try it: `Cmd+G` → zoom into the cluster around [[{{TEAM_NAME}} Team]]
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Quick Win: See AI in Action
|
|
55
|
+
|
|
56
|
+
Want to see what BYOAO can do? Try this in OpenCode:
|
|
57
|
+
|
|
58
|
+
1. Create a new note in `Inbox/` — paste any messy text (meeting notes, brainstorm, etc.)
|
|
59
|
+
2. Run `/enrich-document` in OpenCode
|
|
60
|
+
3. Watch: frontmatter appears, wikilinks connect to existing notes, structure emerges
|
|
61
|
+
|
|
62
|
+
This is the core loop — write freely, let AI structure it.
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## Your First 10 Minutes
|
|
67
|
+
|
|
68
|
+
1. Open [[Glossary]] — scan the term tables to orient yourself on domain language
|
|
69
|
+
2. Pick any project in `Projects/` — follow links to people and concepts
|
|
70
|
+
3. Open Graph View (`Cmd+G`) — see the full knowledge map
|
|
71
|
+
4. Create a Daily Note (`Cmd+T` → Daily Note) — start capturing your own notes
|
|
72
|
+
5. Read `AGENT.md` to see how AI agents navigate this vault
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## Folder Map
|
|
77
|
+
|
|
78
|
+
| Folder | Purpose |
|
|
79
|
+
|--------|---------|
|
|
80
|
+
| `Inbox` | Drop zone for unprocessed notes |
|
|
81
|
+
| `Projects` | One note per active project |
|
|
82
|
+
| `Sprints` | Sprint handoff documents |
|
|
83
|
+
| `Knowledge` | Domain reference, glossary, concept notes, templates |
|
|
84
|
+
| `People` | One note per team member + team index |
|
|
85
|
+
| `Systems` | Codebase explanations (generated by AI agents) |
|
|
86
|
+
| `Archive` | Completed or deprecated notes |
|
|
87
|
+
| `Daily` | Daily notes (auto-created by template) |
|
|
88
|
+
|
|
89
|
+
> **Note:** Folders are suggestions, not structure. Feel free to reorganize — the real knowledge graph lives in frontmatter and wikilinks.
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## For AI Agents
|
|
94
|
+
|
|
95
|
+
This vault is designed for both humans and AI agents. See `AGENT.md` (or `CLAUDE.md`) at the vault root for routing instructions, project index, and team roster.
|
|
@@ -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,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,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pm-tpm",
|
|
3
|
+
"displayName": "PM / TPM",
|
|
4
|
+
"description": "Project tracking, sprint cycles, stakeholder management",
|
|
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
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: ""
|
|
3
|
+
type: feature
|
|
4
|
+
status: draft
|
|
5
|
+
date: {{date}}
|
|
6
|
+
project: ""
|
|
7
|
+
jira: ""
|
|
8
|
+
stakeholders: []
|
|
9
|
+
priority: ""
|
|
10
|
+
tags: [feature]
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Overview
|
|
14
|
+
|
|
15
|
+
Brief description of the feature and its business value.
|
|
16
|
+
|
|
17
|
+
## Background
|
|
18
|
+
|
|
19
|
+
Why this feature is needed. Link to relevant concept notes and people using `[[wikilinks]]`.
|
|
20
|
+
|
|
21
|
+
## Requirements
|
|
22
|
+
|
|
23
|
+
### Functional
|
|
24
|
+
|
|
25
|
+
-
|
|
26
|
+
|
|
27
|
+
### Non-Functional
|
|
28
|
+
|
|
29
|
+
-
|
|
30
|
+
|
|
31
|
+
## Design
|
|
32
|
+
|
|
33
|
+
Link to design specs or prototypes.
|
|
34
|
+
|
|
35
|
+
## Dependencies
|
|
36
|
+
|
|
37
|
+
-
|
|
38
|
+
|
|
39
|
+
## Success Metrics
|
|
40
|
+
|
|
41
|
+
-
|
|
42
|
+
|
|
43
|
+
## Open Questions
|
|
44
|
+
|
|
45
|
+
-
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: ""
|
|
3
|
+
type: sprint-handoff
|
|
4
|
+
status: draft
|
|
5
|
+
date: {{date}}
|
|
6
|
+
sprint: ""
|
|
7
|
+
sprint-dates: ""
|
|
8
|
+
jira-board: ""
|
|
9
|
+
tags: [sprint, handoff]
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Sprint Goals
|
|
13
|
+
|
|
14
|
+
1.
|
|
15
|
+
|
|
16
|
+
## Completed Work
|
|
17
|
+
|
|
18
|
+
| Ticket | Title | Status | Notes |
|
|
19
|
+
|--------|-------|--------|-------|
|
|
20
|
+
| | | Done | |
|
|
21
|
+
|
|
22
|
+
## Carry-Over
|
|
23
|
+
|
|
24
|
+
| Ticket | Title | Reason | Priority |
|
|
25
|
+
|--------|-------|--------|----------|
|
|
26
|
+
| | | | |
|
|
27
|
+
|
|
28
|
+
## Risks & Blockers
|
|
29
|
+
|
|
30
|
+
-
|
|
31
|
+
|
|
32
|
+
## Key Decisions
|
|
33
|
+
|
|
34
|
+
-
|
|
35
|
+
|
|
36
|
+
## Next Sprint Plan
|
|
37
|
+
|
|
38
|
+
-
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "0.1.0",
|
|
3
|
+
"name": "BYOAO — Confluence Page",
|
|
4
|
+
"behavior": "create",
|
|
5
|
+
"noteContentFormat": "text",
|
|
6
|
+
"properties": [
|
|
7
|
+
{
|
|
8
|
+
"name": "title",
|
|
9
|
+
"value": "{{title|safe_name}}",
|
|
10
|
+
"type": "text"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "type",
|
|
14
|
+
"value": "confluence-clip",
|
|
15
|
+
"type": "text"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "source",
|
|
19
|
+
"value": "{{url}}",
|
|
20
|
+
"type": "text"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "author",
|
|
24
|
+
"value": "{{selector:.contributor-list a|wikilink}}",
|
|
25
|
+
"type": "text"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "space",
|
|
29
|
+
"value": "{{selector:#breadcrumb-nav a:first-child}}",
|
|
30
|
+
"type": "text"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "labels",
|
|
34
|
+
"value": "{{selector:.label-list a}}",
|
|
35
|
+
"type": "multitext"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "last-modified",
|
|
39
|
+
"value": "{{selector:.last-modified time}}",
|
|
40
|
+
"type": "text"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "clipped-date",
|
|
44
|
+
"value": "{{date}}",
|
|
45
|
+
"type": "date"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "status",
|
|
49
|
+
"value": "inbox",
|
|
50
|
+
"type": "text"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "tags",
|
|
54
|
+
"value": "[confluence-clip, {{\"Based on this Confluence page content, suggest 3 relevant topic tags as comma-separated values (no # prefix, lowercase, hyphenated). Output ONLY the tags, nothing else.\"|prompt}}]",
|
|
55
|
+
"type": "multitext"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"noteNameFormat": "{{date}} — {{title|safe_name|truncate:80}}",
|
|
59
|
+
"path": "00-Inbox",
|
|
60
|
+
"triggers": ["atlassian.net/wiki", "confluence"],
|
|
61
|
+
"context": "{{content}}",
|
|
62
|
+
"body": "## Summary\n\n{{\"Summarize the key points of this Confluence page in 3-5 bullet points. Focus on decisions, action items, and important context. Be concise.\"|prompt}}\n\n---\n\n## Original Content\n\n{{content}}"
|
|
63
|
+
}
|