@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.
- package/.claude-plugin/marketplace.json +21 -8
- package/CHANGELOG.md +56 -0
- package/README.md +24 -0
- package/dist/tools/brain/.claude-plugin/plugin.json +1 -1
- package/dist/tools/brain/TOOL.yaml +1 -1
- package/dist/tools/brain/skills/brain/SKILL.md +6 -4
- package/dist/tools/brain/skills/brain/references/workflows.md +17 -12
- package/dist/tools/coach/.claude-plugin/plugin.json +1 -1
- package/dist/tools/coach/TOOL.yaml +1 -1
- package/dist/tools/coach/skills/coach/SKILL.md +2 -1
- package/dist/tools/code-review/.claude-plugin/plugin.json +1 -1
- package/dist/tools/code-review/TOOL.yaml +1 -1
- package/dist/tools/code-review/skills/code-review/SKILL.md +1 -1
- package/dist/tools/codex/.claude-plugin/plugin.json +1 -1
- package/dist/tools/codex/TOOL.yaml +1 -1
- package/dist/tools/codex/skills/codex/SKILL.md +1 -1
- package/dist/tools/codex/skills/codex/references/loading.md +1 -1
- package/dist/tools/comments/.claude-plugin/plugin.json +1 -1
- package/dist/tools/comments/TOOL.yaml +1 -1
- package/dist/tools/comments/skills/comments/SKILL.md +9 -7
- package/dist/tools/plan/.claude-plugin/plugin.json +16 -0
- package/dist/tools/plan/TOOL.yaml +18 -0
- package/dist/tools/plan/commands/plan.md +33 -0
- package/dist/tools/plan/skills/plan/SKILL.md +103 -0
- package/dist/tools/plan/skills/plan/references/templates.md +176 -0
- package/dist/tools/plan/skills/plan/references/workflows.md +299 -0
- package/dist/tools/plan/skills/plan/references/xml-conversion.md +123 -0
- package/dist/tools/project/.claude-plugin/plugin.json +1 -1
- package/dist/tools/project/TOOL.yaml +3 -2
- package/dist/tools/project/skills/project/SKILL.md +10 -12
- package/dist/tools/project/skills/project/references/creating.md +5 -5
- package/dist/tools/project/skills/project/references/loading.md +4 -4
- package/dist/tools/tech-design/.claude-plugin/plugin.json +1 -1
- package/dist/tools/tech-design/TOOL.yaml +1 -1
- package/dist/tools/tech-design/skills/tech-design/SKILL.md +3 -3
- package/dist/tools/tech-design/skills/tech-design/references/publish.md +1 -1
- package/dist/tools/tech-design/skills/tech-design/references/start.md +2 -2
- package/dist/tools/wrapup/.claude-plugin/plugin.json +1 -1
- package/dist/tools/wrapup/TOOL.yaml +1 -1
- package/dist/tools/wrapup/skills/wrapup/SKILL.md +4 -2
- package/dist/tools/wrapup/skills/wrapup/references/subagent-prompts.md +19 -11
- package/package.json +1 -1
- package/src/tools/brain/.claude-plugin/plugin.json +1 -1
- package/src/tools/brain/TOOL.yaml +1 -1
- package/src/tools/brain/skills/brain/SKILL.md +6 -4
- package/src/tools/brain/skills/brain/references/workflows.md +17 -12
- package/src/tools/coach/.claude-plugin/plugin.json +1 -1
- package/src/tools/coach/TOOL.yaml +1 -1
- package/src/tools/coach/skills/coach/SKILL.md +2 -1
- package/src/tools/code-review/.claude-plugin/plugin.json +1 -1
- package/src/tools/code-review/TOOL.yaml +1 -1
- package/src/tools/code-review/skills/code-review/SKILL.md +1 -1
- package/src/tools/codex/.claude-plugin/plugin.json +1 -1
- package/src/tools/codex/TOOL.yaml +1 -1
- package/src/tools/codex/skills/codex/SKILL.md +1 -1
- package/src/tools/codex/skills/codex/references/loading.md +1 -1
- package/src/tools/comments/.claude-plugin/plugin.json +1 -1
- package/src/tools/comments/TOOL.yaml +1 -1
- package/src/tools/comments/skills/comments/SKILL.md +9 -7
- package/src/tools/plan/.claude-plugin/plugin.json +16 -0
- package/src/tools/plan/TOOL.yaml +18 -0
- package/src/tools/plan/commands/plan.md +33 -0
- package/src/tools/plan/skills/plan/SKILL.md +103 -0
- package/src/tools/plan/skills/plan/references/templates.md +176 -0
- package/src/tools/plan/skills/plan/references/workflows.md +299 -0
- package/src/tools/plan/skills/plan/references/xml-conversion.md +123 -0
- package/src/tools/project/.claude-plugin/plugin.json +1 -1
- package/src/tools/project/TOOL.yaml +3 -2
- package/src/tools/project/skills/project/SKILL.md +10 -12
- package/src/tools/project/skills/project/references/creating.md +5 -5
- package/src/tools/project/skills/project/references/loading.md +4 -4
- package/src/tools/tech-design/.claude-plugin/plugin.json +1 -1
- package/src/tools/tech-design/TOOL.yaml +1 -1
- package/src/tools/tech-design/skills/tech-design/SKILL.md +3 -3
- package/src/tools/tech-design/skills/tech-design/references/publish.md +1 -1
- package/src/tools/tech-design/skills/tech-design/references/start.md +2 -2
- package/src/tools/wrapup/.claude-plugin/plugin.json +1 -1
- package/src/tools/wrapup/TOOL.yaml +1 -1
- package/src/tools/wrapup/skills/wrapup/SKILL.md +4 -2
- package/src/tools/wrapup/skills/wrapup/references/subagent-prompts.md +19 -11
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
{
|
|
23
23
|
"name": "droid-brain",
|
|
24
24
|
"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.",
|
|
25
|
-
"version": "0.3.
|
|
25
|
+
"version": "0.3.5",
|
|
26
26
|
"source": {
|
|
27
27
|
"source": "github",
|
|
28
28
|
"repo": "orderful/droid",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
{
|
|
36
36
|
"name": "droid-coach",
|
|
37
37
|
"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.",
|
|
38
|
-
"version": "0.2.
|
|
38
|
+
"version": "0.2.3",
|
|
39
39
|
"source": {
|
|
40
40
|
"source": "github",
|
|
41
41
|
"repo": "orderful/droid",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
{
|
|
49
49
|
"name": "droid-code-review",
|
|
50
50
|
"description": "Comprehensive code review using specialized agents. Reviews PRs, staged changes, branches, or specific files with confidence scoring.",
|
|
51
|
-
"version": "0.2.
|
|
51
|
+
"version": "0.2.2",
|
|
52
52
|
"source": {
|
|
53
53
|
"source": "github",
|
|
54
54
|
"repo": "orderful/droid",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
{
|
|
62
62
|
"name": "droid-codex",
|
|
63
63
|
"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.",
|
|
64
|
-
"version": "0.1.
|
|
64
|
+
"version": "0.1.10",
|
|
65
65
|
"source": {
|
|
66
66
|
"source": "github",
|
|
67
67
|
"repo": "orderful/droid",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
{
|
|
75
75
|
"name": "droid-comments",
|
|
76
76
|
"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.",
|
|
77
|
-
"version": "0.3.
|
|
77
|
+
"version": "0.3.3",
|
|
78
78
|
"source": {
|
|
79
79
|
"source": "github",
|
|
80
80
|
"repo": "orderful/droid",
|
|
@@ -84,10 +84,23 @@
|
|
|
84
84
|
"name": "Orderful"
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
|
+
{
|
|
88
|
+
"name": "droid-plan",
|
|
89
|
+
"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'.",
|
|
90
|
+
"version": "0.1.0",
|
|
91
|
+
"source": {
|
|
92
|
+
"source": "github",
|
|
93
|
+
"repo": "orderful/droid",
|
|
94
|
+
"path": "src/tools/plan"
|
|
95
|
+
},
|
|
96
|
+
"author": {
|
|
97
|
+
"name": "Orderful"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
87
100
|
{
|
|
88
101
|
"name": "droid-project",
|
|
89
102
|
"description": "Manage project context files for persistent AI memory across sessions. Load, update, or create project context before working on multi-session features.",
|
|
90
|
-
"version": "0.3.
|
|
103
|
+
"version": "0.3.3",
|
|
91
104
|
"source": {
|
|
92
105
|
"source": "github",
|
|
93
106
|
"repo": "orderful/droid",
|
|
@@ -100,7 +113,7 @@
|
|
|
100
113
|
{
|
|
101
114
|
"name": "droid-tech-design",
|
|
102
115
|
"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).",
|
|
103
|
-
"version": "0.2.
|
|
116
|
+
"version": "0.2.3",
|
|
104
117
|
"source": {
|
|
105
118
|
"source": "github",
|
|
106
119
|
"repo": "orderful/droid",
|
|
@@ -113,7 +126,7 @@
|
|
|
113
126
|
{
|
|
114
127
|
"name": "droid-wrapup",
|
|
115
128
|
"description": "Session wrap-up that captures decisions, learnings, and open items to persistent docs.",
|
|
116
|
-
"version": "0.1.
|
|
129
|
+
"version": "0.1.2",
|
|
117
130
|
"source": {
|
|
118
131
|
"source": "github",
|
|
119
132
|
"repo": "orderful/droid",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
# @orderful/droid
|
|
2
2
|
|
|
3
|
+
## 0.33.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#202](https://github.com/Orderful/droid/pull/202) [`03f1eb3`](https://github.com/Orderful/droid/commit/03f1eb369b09394fef18376c0c8713a20a737066) Thanks [@frytyler](https://github.com/frytyler)! - fix(wrapup): use unique session ID for temp files
|
|
8
|
+
|
|
9
|
+
Session brief files now use a unique timestamp-based ID (e.g., `/tmp/wrapup-20260118-153042.md`)
|
|
10
|
+
instead of a fixed path. This prevents concurrent sessions from clobbering each other's data.
|
|
11
|
+
|
|
12
|
+
## 0.33.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- [#199](https://github.com/Orderful/droid/pull/199) [`9416b9c`](https://github.com/Orderful/droid/commit/9416b9c7a0a9f04f34295304fffee9d2d033ee55) Thanks [@frytyler](https://github.com/frytyler)! - feat(tools): add plan tool for task-scoped planning
|
|
17
|
+
|
|
18
|
+
New tool for creating structured, portable plans for PRs, tickets, and small features.
|
|
19
|
+
Lighter-weight than /tech-design, heavier than just doing.
|
|
20
|
+
|
|
21
|
+
Commands:
|
|
22
|
+
- `/plan new {topic}` - Create plan with context loading
|
|
23
|
+
- `/plan search {topic}` - Find and load existing plan
|
|
24
|
+
- `/plan check` - Address @droid comments
|
|
25
|
+
- `/plan ready` - Finalize and validate
|
|
26
|
+
- `/plan implement` - Execute the plan
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- [#195](https://github.com/Orderful/droid/pull/195) [`5a02a36`](https://github.com/Orderful/droid/commit/5a02a36b896e2cef5df56b4bbf03b9edf510287f) Thanks [@frytyler](https://github.com/frytyler)! - Add clarification for @mention directionality across all skills that reference comments
|
|
31
|
+
|
|
32
|
+
The @mention is the target, not the author:
|
|
33
|
+
- `> @droid ...` = User asking/telling the AI
|
|
34
|
+
- `> @user ...` = AI asking/telling the user
|
|
35
|
+
|
|
36
|
+
Updated: comments, brain, tech-design, code-review, coach
|
|
37
|
+
|
|
38
|
+
- [#197](https://github.com/Orderful/droid/pull/197) [`f9949b7`](https://github.com/Orderful/droid/commit/f9949b713602037ca9caa7e1f15b733bef60dadb) Thanks [@frytyler](https://github.com/frytyler)! - Add tech-design and wrapup tools to README
|
|
39
|
+
|
|
40
|
+
- [#200](https://github.com/Orderful/droid/pull/200) [`012efae`](https://github.com/Orderful/droid/commit/012efae265ef627ab4aaf26cd707c97e00f41570) Thanks [@frytyler](https://github.com/frytyler)! - fix: use `droid config` instead of reading overrides.yaml directly
|
|
41
|
+
|
|
42
|
+
All skills now use `droid config <tool>` to get merged configuration instead
|
|
43
|
+
of reading `~/.droid/skills/<tool>/overrides.yaml` directly. This provides:
|
|
44
|
+
- Consistent config access across all skills
|
|
45
|
+
- Global config values (user_mention, ai_mention) automatically included
|
|
46
|
+
- Single source of truth for configuration logic
|
|
47
|
+
|
|
48
|
+
**Updated tools:**
|
|
49
|
+
- wrapup (v0.1.1): Project file check uses `droid config project`
|
|
50
|
+
- project (v0.3.3): Removed unsafe defaults, requires explicit `projects_dir`
|
|
51
|
+
- brain (v0.3.5): All workflows use `droid config brain`
|
|
52
|
+
- codex (v0.1.10): Uses `droid config codex` for repo path
|
|
53
|
+
- comments (v0.3.3): Uses `droid config comments` for settings
|
|
54
|
+
- coach (v0.2.3): Uses `droid config coach` for settings
|
|
55
|
+
- tech-design (v0.2.3): Checks brain/codex config via `droid config`
|
|
56
|
+
|
|
57
|
+
Fixes #198
|
|
58
|
+
|
|
3
59
|
## 0.32.0
|
|
4
60
|
|
|
5
61
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -65,6 +65,8 @@ Browse available tools, see what's installed, and manage everything from one pla
|
|
|
65
65
|
| **coach** | Learning-mode AI - scaffolds don't implement, questions don't fix | beta |
|
|
66
66
|
| **codex** | Shared organizational knowledge - PRDs, tech designs, patterns | beta |
|
|
67
67
|
| **code-review** | Multi-agent code review with specialized checkers | alpha |
|
|
68
|
+
| **tech-design** | Three-document approach for technical designs | beta |
|
|
69
|
+
| **wrapup** | Session wrap-up that captures decisions to persistent docs | alpha |
|
|
68
70
|
|
|
69
71
|
### Comments
|
|
70
72
|
|
|
@@ -106,6 +108,28 @@ Run comprehensive reviews with specialized agents:
|
|
|
106
108
|
/code-review path/to/file # Review specific file
|
|
107
109
|
```
|
|
108
110
|
|
|
111
|
+
### Tech Design
|
|
112
|
+
|
|
113
|
+
Three-document approach for technical designs (requires brain + codex):
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
/tech-design start auth-refactor # Start a new tech design
|
|
117
|
+
/tech-design draft api # Draft a section
|
|
118
|
+
/tech-design publish # Publish roll-up to codex
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Creates: research doc (codebase discoveries) → thought doc (design workspace) → roll-up (clean summary).
|
|
122
|
+
|
|
123
|
+
### Wrapup
|
|
124
|
+
|
|
125
|
+
Capture session context before ending:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
/wrapup # Run session wrap-up
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Extracts decisions, learnings, and open items to project files and brain docs.
|
|
132
|
+
|
|
109
133
|
## Configuration
|
|
110
134
|
|
|
111
135
|
Config lives in `~/.droid/`:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "droid-brain",
|
|
3
|
-
"version": "0.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
|
+
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:**
|
|
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
|
-
|
|
133
|
-
|
|
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
|
-
-
|
|
13
|
-
-
|
|
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
|
-
-
|
|
52
|
-
-
|
|
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
|
-
-
|
|
100
|
-
-
|
|
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
|
-
-
|
|
164
|
-
-
|
|
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
|
-
-
|
|
215
|
-
-
|
|
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.
|
|
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.
|
|
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
|
-
|
|
60
|
+
Run `droid config coach` to get the merged configuration.
|
|
60
61
|
|
|
61
62
|
---
|
|
62
63
|
|
|
@@ -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.
|
|
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.
|
|
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
|
|
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**
|
|
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.
|
|
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.
|
|
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:**
|
|
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
|
|
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`
|