@orderful/droid 0.32.0 → 0.33.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 (80) hide show
  1. package/.claude-plugin/marketplace.json +21 -8
  2. package/CHANGELOG.md +56 -0
  3. package/README.md +24 -0
  4. package/dist/tools/brain/.claude-plugin/plugin.json +1 -1
  5. package/dist/tools/brain/TOOL.yaml +1 -1
  6. package/dist/tools/brain/skills/brain/SKILL.md +6 -4
  7. package/dist/tools/brain/skills/brain/references/workflows.md +17 -12
  8. package/dist/tools/coach/.claude-plugin/plugin.json +1 -1
  9. package/dist/tools/coach/TOOL.yaml +1 -1
  10. package/dist/tools/coach/skills/coach/SKILL.md +2 -1
  11. package/dist/tools/code-review/.claude-plugin/plugin.json +1 -1
  12. package/dist/tools/code-review/TOOL.yaml +1 -1
  13. package/dist/tools/code-review/skills/code-review/SKILL.md +1 -1
  14. package/dist/tools/codex/.claude-plugin/plugin.json +1 -1
  15. package/dist/tools/codex/TOOL.yaml +1 -1
  16. package/dist/tools/codex/skills/codex/SKILL.md +1 -1
  17. package/dist/tools/codex/skills/codex/references/loading.md +1 -1
  18. package/dist/tools/comments/.claude-plugin/plugin.json +1 -1
  19. package/dist/tools/comments/TOOL.yaml +1 -1
  20. package/dist/tools/comments/skills/comments/SKILL.md +9 -7
  21. package/dist/tools/plan/.claude-plugin/plugin.json +16 -0
  22. package/dist/tools/plan/TOOL.yaml +18 -0
  23. package/dist/tools/plan/commands/plan.md +33 -0
  24. package/dist/tools/plan/skills/plan/SKILL.md +103 -0
  25. package/dist/tools/plan/skills/plan/references/templates.md +176 -0
  26. package/dist/tools/plan/skills/plan/references/workflows.md +299 -0
  27. package/dist/tools/plan/skills/plan/references/xml-conversion.md +123 -0
  28. package/dist/tools/project/.claude-plugin/plugin.json +1 -1
  29. package/dist/tools/project/TOOL.yaml +3 -2
  30. package/dist/tools/project/skills/project/SKILL.md +10 -12
  31. package/dist/tools/project/skills/project/references/creating.md +5 -5
  32. package/dist/tools/project/skills/project/references/loading.md +4 -4
  33. package/dist/tools/tech-design/.claude-plugin/plugin.json +1 -1
  34. package/dist/tools/tech-design/TOOL.yaml +1 -1
  35. package/dist/tools/tech-design/skills/tech-design/SKILL.md +3 -3
  36. package/dist/tools/tech-design/skills/tech-design/references/publish.md +1 -1
  37. package/dist/tools/tech-design/skills/tech-design/references/start.md +2 -2
  38. package/dist/tools/wrapup/.claude-plugin/plugin.json +1 -1
  39. package/dist/tools/wrapup/TOOL.yaml +1 -1
  40. package/dist/tools/wrapup/skills/wrapup/SKILL.md +4 -2
  41. package/dist/tools/wrapup/skills/wrapup/references/subagent-prompts.md +19 -11
  42. package/package.json +1 -1
  43. package/src/tools/brain/.claude-plugin/plugin.json +1 -1
  44. package/src/tools/brain/TOOL.yaml +1 -1
  45. package/src/tools/brain/skills/brain/SKILL.md +6 -4
  46. package/src/tools/brain/skills/brain/references/workflows.md +17 -12
  47. package/src/tools/coach/.claude-plugin/plugin.json +1 -1
  48. package/src/tools/coach/TOOL.yaml +1 -1
  49. package/src/tools/coach/skills/coach/SKILL.md +2 -1
  50. package/src/tools/code-review/.claude-plugin/plugin.json +1 -1
  51. package/src/tools/code-review/TOOL.yaml +1 -1
  52. package/src/tools/code-review/skills/code-review/SKILL.md +1 -1
  53. package/src/tools/codex/.claude-plugin/plugin.json +1 -1
  54. package/src/tools/codex/TOOL.yaml +1 -1
  55. package/src/tools/codex/skills/codex/SKILL.md +1 -1
  56. package/src/tools/codex/skills/codex/references/loading.md +1 -1
  57. package/src/tools/comments/.claude-plugin/plugin.json +1 -1
  58. package/src/tools/comments/TOOL.yaml +1 -1
  59. package/src/tools/comments/skills/comments/SKILL.md +9 -7
  60. package/src/tools/plan/.claude-plugin/plugin.json +16 -0
  61. package/src/tools/plan/TOOL.yaml +18 -0
  62. package/src/tools/plan/commands/plan.md +33 -0
  63. package/src/tools/plan/skills/plan/SKILL.md +103 -0
  64. package/src/tools/plan/skills/plan/references/templates.md +176 -0
  65. package/src/tools/plan/skills/plan/references/workflows.md +299 -0
  66. package/src/tools/plan/skills/plan/references/xml-conversion.md +123 -0
  67. package/src/tools/project/.claude-plugin/plugin.json +1 -1
  68. package/src/tools/project/TOOL.yaml +3 -2
  69. package/src/tools/project/skills/project/SKILL.md +10 -12
  70. package/src/tools/project/skills/project/references/creating.md +5 -5
  71. package/src/tools/project/skills/project/references/loading.md +4 -4
  72. package/src/tools/tech-design/.claude-plugin/plugin.json +1 -1
  73. package/src/tools/tech-design/TOOL.yaml +1 -1
  74. package/src/tools/tech-design/skills/tech-design/SKILL.md +3 -3
  75. package/src/tools/tech-design/skills/tech-design/references/publish.md +1 -1
  76. package/src/tools/tech-design/skills/tech-design/references/start.md +2 -2
  77. package/src/tools/wrapup/.claude-plugin/plugin.json +1 -1
  78. package/src/tools/wrapup/TOOL.yaml +1 -1
  79. package/src/tools/wrapup/skills/wrapup/SKILL.md +4 -2
  80. package/src/tools/wrapup/skills/wrapup/references/subagent-prompts.md +19 -11
@@ -6,10 +6,10 @@
6
6
 
7
7
  ## Procedure
8
8
 
9
- 1. **Determine projects directory (pick ONE)**
10
- - Read `~/.droid/skills/project/overrides.yaml`
11
- - If `projects_dir` is set → use ONLY that path, do NOT search defaults
12
- - If not configured → use default for current AI tool (`~/.claude/projects` or `~/.config/opencode/projects`)
9
+ 1. **Determine projects directory**
10
+ - Run `droid config project` and parse the JSON output
11
+ - Use the `projects_dir` value
12
+ - If not configured → inform user to create `~/.droid/skills/project/overrides.yaml` with `projects_dir: /path/to/projects`
13
13
 
14
14
  2. **List projects** in the single configured directory
15
15
  - Each subfolder with a `PROJECT.md` is a project
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-tech-design",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Technical design authoring tool for engineers. Create structured tech design docs with /tech-design start, iterate in brain, publish to codex. Three-document approach: research doc (codebase discoveries) + thought doc (design workspace) + roll-up (clean summary for review).",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -1,6 +1,6 @@
1
1
  name: tech-design
2
2
  description: "Technical design authoring tool for engineers. Create structured tech design docs with /tech-design start, iterate in brain, publish to codex. Three-document approach: research doc (codebase discoveries) + thought doc (design workspace) + roll-up (clean summary for review)."
3
- version: 0.2.1
3
+ version: 0.2.3
4
4
  status: beta
5
5
 
6
6
  includes:
@@ -28,8 +28,8 @@ The `/tech-design` skill brings tech design authoring into the same AI-augmented
28
28
 
29
29
  Before using tech-design, verify:
30
30
 
31
- 1. **Brain skill configured:** Check if `~/.droid/skills/brain/overrides.yaml` exists
32
- 2. **Codex skill configured:** Check if `~/.droid/skills/codex/overrides.yaml` exists
31
+ 1. **Brain skill configured:** Run `droid config brain` and check if `brain_dir` is set
32
+ 2. **Codex skill configured:** Run `droid config codex` and check if `codex_repo` is set
33
33
  3. **gh CLI:** Required for PR workflows
34
34
 
35
35
  If prerequisites fail, guide user to configure:
@@ -65,7 +65,7 @@ Tech-design has no configuration of its own. It delegates to:
65
65
  2. **Thought doc** = Design workspace
66
66
  - References research doc for context
67
67
  - Focuses on architectural decisions
68
- - Iterates with `@droid`/`@user` comments
68
+ - Iterates with `@droid`/`@user` comments (the @mention is the **target**: `@droid` = user asking AI, `@user` = AI asking user)
69
69
  - Captures the "why" behind choices
70
70
 
71
71
  3. **Roll-up** = Reviewer artifact
@@ -25,7 +25,7 @@ if [ ! -f "$research_doc_path" ]; then
25
25
  fi
26
26
 
27
27
  # Codex repo must be configured (read from codex skill config)
28
- codex_repo=$(grep '^codex_repo:' ~/.droid/skills/codex/overrides.yaml | cut -d' ' -f2-)
28
+ codex_repo=$(droid config codex | grep -o '"codex_repo": *"[^"]*"' | cut -d'"' -f4)
29
29
  if [ -z "$codex_repo" ]; then
30
30
  echo "Error: Codex not configured."
31
31
  echo "Set up with: /codex"
@@ -12,8 +12,8 @@
12
12
 
13
13
  Check that required tools are configured:
14
14
 
15
- - **Brain skill:** Check if `~/.droid/skills/brain/overrides.yaml` exists
16
- - **Codex skill:** Check if `~/.droid/skills/codex/overrides.yaml` exists
15
+ - **Brain skill:** Run `droid config brain` and check if `brain_dir` is set
16
+ - **Codex skill:** Run `droid config codex` and check if `codex_repo` is set
17
17
 
18
18
  If prerequisites fail, guide user to configure:
19
19
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-wrapup",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Session wrap-up that captures decisions, learnings, and open items to persistent docs.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -1,6 +1,6 @@
1
1
  name: wrapup
2
2
  description: "Session wrap-up that captures decisions, learnings, and open items to persistent docs."
3
- version: 0.1.0
3
+ version: 0.1.2
4
4
  status: alpha
5
5
 
6
6
  includes:
@@ -15,7 +15,7 @@ To avoid triggering compaction mid-wrapup, offload heavy lifting to fresh-contex
15
15
 
16
16
  ## Phase 1: Quick Context Extraction
17
17
 
18
- You have the conversation history. Quickly extract and write to `/tmp/wrapup-session-brief.md`:
18
+ You have the conversation history. Generate a unique session ID (e.g., timestamp like `20260118-153042`) and write to `/tmp/wrapup-{session-id}.md`:
19
19
 
20
20
  ```markdown
21
21
  # Session Brief
@@ -41,9 +41,11 @@ You have the conversation history. Quickly extract and write to `/tmp/wrapup-ses
41
41
 
42
42
  Do this IMMEDIATELY. Don't analyse deeply—just dump what you know.
43
43
 
44
+ **Important:** Remember your session brief path for Phase 2 subagents.
45
+
44
46
  ## Phase 2: Artifact Analysis
45
47
 
46
- Spawn subagents **in parallel** to analyse artifacts. Each reads your session brief and analyses one area.
48
+ Spawn subagents **in parallel** to analyse artifacts. Pass your session brief path to each subagent.
47
49
 
48
50
  | Subagent | Type | Analyses |
49
51
  |----------|------|----------|
@@ -2,6 +2,8 @@
2
2
 
3
3
  Detailed prompts for Phase 2 artifact analysis. Spawn these in parallel using the Task tool.
4
4
 
5
+ **Note:** Replace `{session_brief_path}` with the actual path from Phase 1 (e.g., `/tmp/wrapup-20260118-153042.md`).
6
+
5
7
  ## Git State Analysis
6
8
 
7
9
  **Subagent type:** Bash
@@ -24,21 +26,27 @@ Output format:
24
26
 
25
27
  ## Project File Check
26
28
 
27
- **Subagent type:** Explore
29
+ **Subagent type:** Bash
28
30
 
29
31
  ```
30
- Read /tmp/wrapup-session-brief.md for session context.
32
+ Read {session_brief_path} for session context.
31
33
 
32
- Check if ~/.droid/project.md exists. If it does:
33
- 1. Read the current project file
34
- 2. Compare against session brief
35
- 3. Identify:
34
+ First, run `droid config project` to get the project skill configuration.
35
+ Parse the JSON output to find the `projects_dir` value.
36
+
37
+ If `projects_dir` is not set, skip project file analysis.
38
+
39
+ If configured:
40
+ 1. Search the projects directory for recently modified PROJECT.md files (last 7 days)
41
+ 2. Read the most recently modified project file
42
+ 3. Compare against session brief
43
+ 4. Identify:
36
44
  - Stale entries that should be updated or removed
37
45
  - New items from the session to add (decisions, blockers, next steps)
38
46
  - Status changes (completed items, new blockers)
39
47
 
40
48
  Output specific proposed updates with exact text to add/change.
41
- If no project file exists, note that and skip.
49
+ If no active project found, note that and skip.
42
50
  ```
43
51
 
44
52
  ## Brain Doc Check
@@ -46,9 +54,9 @@ If no project file exists, note that and skip.
46
54
  **Subagent type:** Explore
47
55
 
48
56
  ```
49
- Read /tmp/wrapup-session-brief.md for session context.
57
+ Read {session_brief_path} for session context.
50
58
 
51
- First, check ~/.droid/skills/brain/overrides.yaml for the brain_dir setting.
59
+ First, run `droid config brain` and parse the JSON output for the `brain_dir` setting.
52
60
  If not configured, skip brain doc analysis.
53
61
 
54
62
  If configured:
@@ -68,9 +76,9 @@ Output:
68
76
  **Subagent type:** Explore
69
77
 
70
78
  ```
71
- Read /tmp/wrapup-session-brief.md for session context.
79
+ Read {session_brief_path} for session context.
72
80
 
73
- Check if the codex skill is installed (~/.droid/skills/codex/overrides.yaml).
81
+ Run `droid config codex` and check if `codex_repo` is set.
74
82
  If not configured, skip codex analysis.
75
83
 
76
84
  If the session involved:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderful/droid",
3
- "version": "0.32.0",
3
+ "version": "0.33.1",
4
4
  "description": "AI workflow toolkit for sharing skills, commands, and agents across the team",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-brain",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "Your scratchpad (or brain) - a collaborative space for planning and research. Create docs with /brain plan, /brain research, or /brain review. Use @mentions for async discussion. Docs persist across sessions.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -1,6 +1,6 @@
1
1
  name: brain
2
2
  description: "Your scratchpad (or brain) - a collaborative space for planning and research. Create docs with /brain plan, /brain research, or /brain review. Use @mentions for async discussion. Docs persist across sessions."
3
- version: 0.3.3
3
+ version: 0.3.5
4
4
  status: beta
5
5
 
6
6
  includes:
@@ -26,7 +26,7 @@ Your **scratchpad** (or **brain**) - a collaborative space for planning, researc
26
26
 
27
27
  ## Configuration
28
28
 
29
- **IMPORTANT:** Read `~/.droid/skills/brain/overrides.yaml` first. If `brain_dir` is not configured, **ask the user** where they want brain docs stored.
29
+ **IMPORTANT:** Run `droid config brain` first and parse the JSON output. If `brain_dir` is not configured, **ask the user** where they want brain docs stored.
30
30
 
31
31
  | Setting | Default | Description |
32
32
  | -------------- | ------- | ------------------------------------------ |
@@ -127,10 +127,12 @@ Full procedure: `references/workflows.md` § Finalizing
127
127
 
128
128
  ## Comment Conventions
129
129
 
130
- In markdown files, use blockquote `>` prefix for @mention comments:
130
+ In markdown files, use blockquote `>` prefix for @mention comments. The @mention is the **target**, not the author:
131
131
 
132
- - `> @droid` - **User** leaves comment for AI to address
133
- - `> @{user}` - **AI** leaves comment for user
132
+ | Comment | Author | Target | Meaning |
133
+ | -------------- | ------ | ------ | -------------------------- |
134
+ | `> @droid ...` | User | AI | User asking/telling the AI |
135
+ | `> @user ...` | AI | User | AI asking/telling the user |
134
136
 
135
137
  Get `user_mention` from `droid config brain`. If droid's `comments` skill is installed, use `/comments check` for full support.
136
138
 
@@ -9,8 +9,8 @@ Detailed procedures for each brain operation.
9
9
  **Steps:**
10
10
 
11
11
  1. **Read config first (MANDATORY)**
12
- - Use the Read tool on `~/.droid/skills/brain/overrides.yaml`
13
- - If file exists and contains `brain_dir:`, use that path
12
+ - Run `droid config brain` and parse the JSON output
13
+ - Use the `brain_dir` value from the config
14
14
  - If `brain_dir` is not configured, **ask the user** where they want brain docs stored
15
15
  - **Do NOT skip this step or assume defaults**
16
16
 
@@ -48,9 +48,8 @@ Detailed procedures for each brain operation.
48
48
  **Steps:**
49
49
 
50
50
  1. **Read config first (MANDATORY)**
51
- - Use the Read tool on `~/.droid/skills/brain/overrides.yaml`
52
- - If file exists and contains `brain_dir:`, use that path
53
- - Also check for `inbox_folder` setting (e.g., `0-Inbox`)
51
+ - Run `droid config brain` and parse the JSON output
52
+ - Use the `brain_dir` and `inbox_folder` values from the config
54
53
  - If `brain_dir` is not configured, **ask the user** where they want brain docs stored
55
54
  - **Do NOT skip this step or assume defaults**
56
55
 
@@ -96,9 +95,8 @@ Detailed procedures for each brain operation.
96
95
  **Steps:**
97
96
 
98
97
  1. **Read config first (MANDATORY)**
99
- - Use the Read tool on `~/.droid/skills/brain/overrides.yaml`
100
- - If file exists and contains `brain_dir:`, use that path
101
- - Also check for `inbox_folder` setting (e.g., `0-Inbox`)
98
+ - Run `droid config brain` and parse the JSON output
99
+ - Use the `brain_dir` and `inbox_folder` values from the config
102
100
  - If `brain_dir` is not configured, **ask the user** where they want brain docs stored
103
101
  - **Do NOT skip this step or assume defaults**
104
102
 
@@ -152,6 +150,13 @@ Detailed procedures for each brain operation.
152
150
 
153
151
  **Prefer `comments` skill:** If the `comments` skill is installed, use `/comments check` instead - it provides better comment detection, cleanup workflows, and supports the full `@droid`/`@user` convention. The workflow below is a fallback for basic comment handling.
154
152
 
153
+ **Directionality:** The @mention is the **target**, not the author:
154
+
155
+ | Comment | Author | Target | Meaning |
156
+ | -------------- | ------ | ------ | -------------------------- |
157
+ | `> @droid ...` | User | AI | User asking/telling the AI |
158
+ | `> @user ...` | AI | User | AI asking/telling the user |
159
+
155
160
  **Steps:**
156
161
 
157
162
  1. **Check for active doc**
@@ -160,8 +165,8 @@ Detailed procedures for each brain operation.
160
165
  2. **Read active doc**
161
166
 
162
167
  3. **Check preserve_comments setting:**
163
- - Read `~/.droid/skills/comments/overrides.yaml` if it exists
164
- - Look for `preserve_comments` (default: `true`)
168
+ - Run `droid config comments` and parse the JSON output
169
+ - Use the `preserve_comments` value (default: `true`)
165
170
 
166
171
  4. **Find all `> @droid` comments**
167
172
  - Pattern: Lines starting with `> @droid` (blockquote with mention)
@@ -211,8 +216,8 @@ Detailed procedures for each brain operation.
211
216
  **Steps:**
212
217
 
213
218
  1. **Read config first (MANDATORY)**
214
- - Use the Read tool on `~/.droid/skills/brain/overrides.yaml`
215
- - If file exists and contains `brain_dir:`, use that path
219
+ - Run `droid config brain` and parse the JSON output
220
+ - Use the `brain_dir` value from the config
216
221
  - If `brain_dir` is not configured, **ask the user** where they want brain docs stored
217
222
  - **Do NOT skip this step or assume defaults**
218
223
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-coach",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Learning-mode AI assistance - AI as coach, not crutch. Use /coach plan for co-authored planning, /coach scaffold for structure with hints, /coach review for Socratic questions.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -1,6 +1,6 @@
1
1
  name: coach
2
2
  description: "Learning-mode AI assistance - AI as coach, not crutch. Use /coach plan for co-authored planning, /coach scaffold for structure with hints, /coach review for Socratic questions."
3
- version: 0.2.1
3
+ version: 0.2.3
4
4
  status: beta
5
5
 
6
6
  includes:
@@ -53,10 +53,11 @@ plan → AI scaffolds → human implements → AI coaches → iterate → ship
53
53
  | -------------------- | -------- | ------------------------------------------------------- |
54
54
  | `scaffold_verbosity` | `medium` | How detailed hints are: `minimal`, `medium`, `detailed` |
55
55
 
56
+ <!-- Note: @mention is the target, not author. @fry = AI talking TO user, @droid = user talking TO AI -->
56
57
  > @fry Not yet - droid currently shows config as free text input. But we could add an `enum` type to the config schema that presents as a select dropdown in the TUI. Good feature request - want me to create an issue for it?
57
58
  > @droid yes lets do that
58
59
 
59
- Read from `~/.droid/skills/coach/overrides.yaml` if present.
60
+ Run `droid config coach` to get the merged configuration.
60
61
 
61
62
  ---
62
63
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-code-review",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Comprehensive code review using specialized agents. Reviews PRs, staged changes, branches, or specific files with confidence scoring.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -1,6 +1,6 @@
1
1
  name: code-review
2
2
  description: "Comprehensive code review using specialized agents. Reviews PRs, staged changes, branches, or specific files with confidence scoring."
3
- version: 0.2.1
3
+ version: 0.2.2
4
4
  status: alpha
5
5
 
6
6
  includes:
@@ -64,7 +64,7 @@ Ask the user: **"Would you like the review results saved to a `/brain review` do
64
64
 
65
65
  - If yes: Create a brain review doc at the start using `/brain review {PR title or branch name}`
66
66
  - The final report will be written to the brain doc instead of just displayed
67
- - This allows for async discussion via `@droid`/`@{user}` comments
67
+ - This allows for async discussion via `@droid`/`@{user}` comments (the @mention is the **target**: `@droid` = user asking AI, `@user` = AI asking user)
68
68
 
69
69
  If brain skill is not installed or user declines, proceed with normal terminal output.
70
70
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-codex",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Shared organizational knowledge - PRDs, tech designs, domains, proposals, patterns, and explored topics. Use when loading project context, searching codex, capturing decisions, or creating new entries.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -1,6 +1,6 @@
1
1
  name: codex
2
2
  description: "Shared organizational knowledge - PRDs, tech designs, domains, proposals, patterns, and explored topics. Use when loading project context, searching codex, capturing decisions, or creating new entries."
3
- version: 0.1.9
3
+ version: 0.1.10
4
4
  status: beta
5
5
 
6
6
  includes:
@@ -141,7 +141,7 @@ fi
141
141
 
142
142
  ## Configuration
143
143
 
144
- **ALWAYS read `~/.droid/skills/codex/overrides.yaml` first.**
144
+ **ALWAYS run `droid config codex` first and parse the JSON output.**
145
145
 
146
146
  | Setting | Default | Description |
147
147
  | ---------------- | --------------------------------- | ----------------------------- |
@@ -6,7 +6,7 @@ Detailed procedure for loading entries from the codex.
6
6
 
7
7
  **IMPORTANT:** Use the index file for fast lookups. This avoids expensive file-by-file searching.
8
8
 
9
- 1. **Get codex repo path** from `~/.droid/skills/codex/overrides.yaml`
9
+ 1. **Get codex repo path** by running `droid config codex` and parsing the JSON output
10
10
  2. **Read the index file** at `{codex_repo}/index.yaml`:
11
11
  ```yaml
12
12
  # index.yaml structure
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-comments",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "Enable inline conversations using @droid/@user markers. Tag @droid to ask the AI, AI responds with @{your-name}. Use /comments check to address markers, /comments cleanup to remove resolved threads. Ideal for code review notes and async collaboration.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -1,6 +1,6 @@
1
1
  name: comments
2
2
  description: "Enable inline conversations using @droid/@user markers. Tag @droid to ask the AI, AI responds with @{your-name}. Use /comments check to address markers, /comments cleanup to remove resolved threads. Ideal for code review notes and async collaboration."
3
- version: 0.3.1
3
+ version: 0.3.3
4
4
  status: beta
5
5
 
6
6
  includes:
@@ -29,16 +29,18 @@ The AI will respond with `> @{user_mention}` (configured in droid setup, e.g., `
29
29
 
30
30
  **CRITICAL: The `@mention` is who you're talking TO, not who is speaking.**
31
31
 
32
+ The directionality can be confusing. The @mention is the **target**, not the author:
33
+
34
+ | Comment | Author | Target | Meaning |
35
+ | -------------- | ------ | ------ | -------------------------- |
36
+ | `> @droid ...` | User | AI | User asking/telling the AI |
37
+ | `> @user ...` | AI | User | AI asking/telling the user |
38
+
32
39
  Think of it like addressing someone in conversation:
33
40
 
34
41
  - "Hey @droid, what do you think?" → User talking TO the AI
35
42
  - "Good point @fry, here's my take..." → AI talking TO the user
36
43
 
37
- | When you see... | Who wrote it | Who it's addressed to |
38
- | --------------- | ------------ | --------------------- |
39
- | `> @droid ...` | User | AI (droid) |
40
- | `> @fry ...` | AI | User (fry) |
41
-
42
44
  **Examples:**
43
45
 
44
46
  ```markdown
@@ -82,7 +84,7 @@ When you find a `@droid` marker:
82
84
 
83
85
  #### Pass 1: Read & Analyse
84
86
 
85
- 1. **Read config first:** Check `~/.droid/skills/comments/overrides.yaml` for `preserve_comments` setting (default: `true`)
87
+ 1. **Read config first:** Run `droid config comments` and check `preserve_comments` setting (default: `true`)
86
88
  2. Search for ALL `> @droid` comments (and any configured `ai_mentions`) in the specified scope
87
89
  3. If there's a `git diff`, check those files first for relevant context
88
90
  4. **Read all comments before responding** - understand the full picture
@@ -107,7 +109,7 @@ When you find a `@droid` marker:
107
109
 
108
110
  ## Configuration
109
111
 
110
- Configured via `~/.droid/skills/comments/overrides.yaml` or inherits from global `~/.droid/config.yaml`:
112
+ Configured via `droid config comments` (merges global config with skill overrides):
111
113
 
112
114
  ```yaml
113
115
  # Override the user mention (default: from global config)
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "droid-plan",
3
+ "version": "0.1.0",
4
+ "description": "Task-scoped planning with portable, structured plans. Use when planning implementation for a PR, ticket, or small feature. User prompts like 'let's plan this', 'can we start a plan', 'think through the implementation'.",
5
+ "author": {
6
+ "name": "Orderful",
7
+ "url": "https://github.com/orderful"
8
+ },
9
+ "repository": "https://github.com/orderful/droid",
10
+ "license": "MIT",
11
+ "keywords": [
12
+ "droid",
13
+ "ai",
14
+ "plan"
15
+ ]
16
+ }
@@ -0,0 +1,18 @@
1
+ name: plan
2
+ description: "Task-scoped planning with portable, structured plans. Use when planning implementation for a PR, ticket, or small feature. User prompts like 'let's plan this', 'can we start a plan', 'think through the implementation'."
3
+ version: 0.1.0
4
+ status: alpha
5
+
6
+ includes:
7
+ skills:
8
+ - name: plan
9
+ required: true
10
+ commands:
11
+ - name: plan
12
+ is_alias: false
13
+
14
+ dependencies:
15
+ - brain
16
+ - comments
17
+
18
+ config_schema: {}
@@ -0,0 +1,33 @@
1
+ ---
2
+ name: plan
3
+ description: "Task-scoped planning with portable, structured plans"
4
+ argument-hint: "new|search|check|ready|implement [topic]"
5
+ ---
6
+
7
+ # /plan
8
+
9
+ **User invoked:** `/plan $ARGUMENTS`
10
+
11
+ **Your task:** Invoke the **plan skill** with these arguments.
12
+
13
+ ## Quick Reference
14
+
15
+ | Command | Action |
16
+ |---------|--------|
17
+ | `/plan new {topic}` | Create new plan, offer context loading |
18
+ | `/plan search {topic}` | Find and load existing plan |
19
+ | `/plan check` | Address @droid comments |
20
+ | `/plan ready` | Finalize and validate |
21
+ | `/plan implement` | Execute the plan |
22
+
23
+ ## Examples
24
+
25
+ ```bash
26
+ /plan new auth-refactor # Start planning auth refactor
27
+ /plan search rate-limit # Find existing rate limit plan
28
+ /plan check # Address open comments
29
+ /plan ready # Mark plan as ready
30
+ /plan implement # Execute the plan
31
+ ```
32
+
33
+ See the **plan skill** for complete documentation.
@@ -0,0 +1,103 @@
1
+ ---
2
+ name: plan
3
+ description: "Task-scoped planning with portable, structured plans. Use when planning implementation for a PR, ticket, or small feature. User prompts like 'let's plan this', 'can we start a plan', 'think through the implementation'."
4
+ allowed-tools: [Read, Edit, Write, Glob, Grep, Bash, Task, AskUserQuestion]
5
+ ---
6
+
7
+ # Plan Skill
8
+
9
+ Task-scoped planning for PRs, tickets, and small features. Lighter than `/tech-design` (epic-level), heavier than just doing.
10
+
11
+ ## When to Use
12
+
13
+ - Implementation spans multiple files or steps
14
+ - Decisions need documenting before coding
15
+ - Work will span sessions or be handed off
16
+ - User says "let's plan", "think through", "before we start"
17
+
18
+ ## When NOT to Use
19
+
20
+ - Quick fixes or single-file changes
21
+ - Epic-level work (use `/tech-design` instead)
22
+ - Pure research (use `/brain research` instead)
23
+
24
+ ## Configuration
25
+
26
+ Uses config from dependencies:
27
+ - `droid config brain` → `brain_dir`, `inbox_dir`
28
+ - `droid config comments` → `user_mention`
29
+
30
+ ## Commands
31
+
32
+ | Command | Action |
33
+ | ---------------------- | --------------------------------------------------- |
34
+ | `/plan new {topic}` | Create plan doc, offer context loading |
35
+ | `/plan search {topic}` | Find and load existing plan |
36
+ | `/plan check` | Address `@droid` comments, graduate to decisions |
37
+ | `/plan ready` | Finalize: validate and update status |
38
+ | `/plan implement` | Execute tasks, optionally convert to XML |
39
+
40
+ ## `/plan new {topic}`
41
+
42
+ 1. Read config (`brain_dir`, `inbox_dir`, `user_mention`)
43
+ 2. Determine location:
44
+ - If `/project` active → offer: `{projects_dir}/{project}/plans/`
45
+ - Otherwise → `{brain_dir}/{inbox_dir}/plans/`
46
+ 3. Offer context loading (`/project`, `/codex` search)
47
+ 4. Ask clarifying questions (goal, scope, constraints)
48
+ 5. Generate plan from template (see `references/templates.md`)
49
+ 6. Set as active plan
50
+
51
+ ## `/plan search {topic}`
52
+
53
+ 1. Search `{brain_dir}/**/plan-*.md` for topic (fuzzy match)
54
+ 2. If multiple: prompt user to select
55
+ 3. Display summary (status, tasks, open discussions)
56
+ 4. Set as active plan
57
+
58
+ ## `/plan check`
59
+
60
+ 1. Find `> @droid` comments in active plan
61
+ 2. Address each, respond with `> @{user_mention}`
62
+ 3. Ask if resolved → graduate to Locked-In Decisions table
63
+ 4. Update the doc
64
+
65
+ See `references/workflows.md` for graduation pattern.
66
+
67
+ ## `/plan ready`
68
+
69
+ 1. Check for unresolved discussions (warn if any)
70
+ 2. Validate required sections (Context, at least one Task)
71
+ 3. Update status to `ready`
72
+ 4. Offer: stay in brain, copy to PR description, link in project
73
+
74
+ ## `/plan implement`
75
+
76
+ 1. Parse tasks from `### Task N:` sections
77
+ 2. Optionally convert to XML (see `references/xml-conversion.md`)
78
+ 3. For each task:
79
+ - Execute per `**Files:**` section
80
+ - Run `**Verify:**` command
81
+ - Check `**Done:**` criteria
82
+ - Mark complete in plan doc
83
+ 4. Update status to `done`
84
+
85
+ ## Comment Conventions
86
+
87
+ | Comment | Written by | Addressed to |
88
+ | ---------------- | ---------- | ------------ |
89
+ | `> @droid ...` | User | AI |
90
+ | `> @{user} ...` | AI | User |
91
+
92
+ ## Natural Language Triggers
93
+
94
+ Recognise planning intent and offer `/plan new`:
95
+ - "Can we plan this out?"
96
+ - "Let's think through the implementation"
97
+ - "Before we start coding..."
98
+
99
+ ## References
100
+
101
+ - `references/templates.md` - Plan doc template with examples
102
+ - `references/workflows.md` - Detailed command flows
103
+ - `references/xml-conversion.md` - XML conversion for `/plan implement`