@orderful/droid 0.35.4 → 0.36.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/.claude-plugin/marketplace.json +2 -2
- package/CHANGELOG.md +20 -0
- package/README.md +34 -19
- package/dist/tools/codex/.claude-plugin/plugin.json +2 -2
- package/dist/tools/codex/TOOL.yaml +2 -2
- package/dist/tools/codex/commands/codex.md +1 -1
- package/dist/tools/codex/skills/codex/SKILL.md +120 -329
- package/dist/tools/codex/skills/codex/references/reading-workflows.md +56 -0
- package/dist/tools/codex/skills/codex/references/review/prd.md +49 -0
- package/dist/tools/codex/skills/codex/references/review/workflow.md +40 -230
- package/package.json +1 -1
- package/src/tools/codex/.claude-plugin/plugin.json +2 -2
- package/src/tools/codex/TOOL.yaml +2 -2
- package/src/tools/codex/commands/codex.md +1 -1
- package/src/tools/codex/skills/codex/SKILL.md +120 -329
- package/src/tools/codex/skills/codex/references/reading-workflows.md +56 -0
- package/src/tools/codex/skills/codex/references/review/prd.md +49 -0
- package/src/tools/codex/skills/codex/references/review/workflow.md +40 -230
- package/dist/tools/codex/skills/codex/references/creating.md +0 -112
- package/dist/tools/codex/skills/codex/references/decisions.md +0 -124
- package/dist/tools/codex/skills/codex/references/loading.md +0 -292
- package/dist/tools/codex/skills/codex/references/topics.md +0 -215
- package/src/tools/codex/skills/codex/references/creating.md +0 -112
- package/src/tools/codex/skills/codex/references/decisions.md +0 -124
- package/src/tools/codex/skills/codex/references/loading.md +0 -292
- package/src/tools/codex/skills/codex/references/topics.md +0 -215
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"name": "droid-codex",
|
|
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.
|
|
63
|
+
"description": "Shared organizational knowledge - PRDs, tech designs, domains, proposals, patterns, and explored topics. Self-describing: structure and workflows defined in codex repo. Use when loading project context, searching codex, capturing decisions, or creating new entries.",
|
|
64
|
+
"version": "0.3.0",
|
|
65
65
|
"source": {
|
|
66
66
|
"source": "github",
|
|
67
67
|
"repo": "orderful/droid",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @orderful/droid
|
|
2
2
|
|
|
3
|
+
## 0.36.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#225](https://github.com/Orderful/droid/pull/225) [`d6e3fea`](https://github.com/Orderful/droid/commit/d6e3fea047a45d66d46301c7fba253aa0ab3680e) Thanks [@frytyler](https://github.com/frytyler)! - **codex tool: self-describing integration**
|
|
8
|
+
|
|
9
|
+
The codex skill now reads structure and workflows from the codex repo's .codex/ folder instead of hardcoded assumptions. This makes the skill stable and rarely needing updates when the codex structure evolves.
|
|
10
|
+
|
|
11
|
+
**Changes:**
|
|
12
|
+
- Skill reads .codex/manifest.yaml for structure definitions
|
|
13
|
+
- Skill reads .codex/workflows/\*.md for operation instructions
|
|
14
|
+
- Removed duplicated workflow content from references/
|
|
15
|
+
- Added references/reading-workflows.md guide
|
|
16
|
+
- Simplified SKILL.md from 421 to 214 lines (49% reduction)
|
|
17
|
+
- Kept references/review/ with type-specific facilitation (tech-design, prd)
|
|
18
|
+
- Added PRD review support
|
|
19
|
+
- Codex structural changes no longer require droid updates
|
|
20
|
+
|
|
21
|
+
**Breaking:** Requires codex repo with .codex/ folder (PR #181)
|
|
22
|
+
|
|
3
23
|
## 0.35.4
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -59,9 +59,24 @@ When droid auto-updates (or you run `droid update`), the package updates but you
|
|
|
59
59
|
|
|
60
60
|
Cursor integration currently requires the **nightly build** of Cursor.
|
|
61
61
|
|
|
62
|
+
### nodenv/nvm/asdf users
|
|
63
|
+
|
|
64
|
+
After global npm install, run `nodenv rehash` (or equivalent for your version manager) to update shims.
|
|
65
|
+
|
|
62
66
|
## Quick Start
|
|
63
67
|
|
|
64
|
-
### Option A:
|
|
68
|
+
### Option A: TUI Dashboard (Recommended)
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
npm install -g @orderful/droid
|
|
72
|
+
droid
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
The TUI guides you through setup and tool installation. Works with both Claude Code and OpenCode.
|
|
76
|
+
|
|
77
|
+
### Option B: Claude Code Plugin (Alpha)
|
|
78
|
+
|
|
79
|
+
> **Note:** Plugin support is experimental. The TUI is more stable and feature-complete.
|
|
65
80
|
|
|
66
81
|
Install individual tools directly through Claude Code's plugin system:
|
|
67
82
|
|
|
@@ -75,17 +90,6 @@ Install individual tools directly through Claude Code's plugin system:
|
|
|
75
90
|
/plugin install droid-code-review@droid
|
|
76
91
|
```
|
|
77
92
|
|
|
78
|
-
### Option B: TUI Dashboard (For OpenCode or if you prefer a visual interface)
|
|
79
|
-
|
|
80
|
-
```bash
|
|
81
|
-
npm install -g @orderful/droid
|
|
82
|
-
droid
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
The TUI guides you through setup and tool installation. Works with both Claude Code and OpenCode.
|
|
86
|
-
|
|
87
|
-
> **Note for nodenv/nvm/asdf users:** After global install, run `nodenv rehash` (or equivalent) to update your shims.
|
|
88
|
-
|
|
89
93
|
## The TUI
|
|
90
94
|
|
|
91
95
|
Run `droid` to launch the interactive dashboard:
|
|
@@ -109,6 +113,7 @@ Browse available tools, see what's installed, and manage everything from one pla
|
|
|
109
113
|
| **comments** | Inline `@droid`/`@user` conversations in any file | beta |
|
|
110
114
|
| **project** | Persistent project context across sessions | beta |
|
|
111
115
|
| **brain** | Collaborative scratch pad for planning & research | beta |
|
|
116
|
+
| **plan** | Task-scoped planning with portable, structured plans | alpha |
|
|
112
117
|
| **coach** | Learning-mode AI - scaffolds don't implement, questions don't fix | beta |
|
|
113
118
|
| **codex** | Shared organizational knowledge - PRDs, tech designs, patterns | beta |
|
|
114
119
|
| **code-review** | Multi-agent code review with specialized checkers | alpha |
|
|
@@ -183,15 +188,25 @@ Config lives in `~/.droid/`:
|
|
|
183
188
|
|
|
184
189
|
```
|
|
185
190
|
~/.droid/
|
|
186
|
-
|
|
187
|
-
└── skills/
|
|
188
|
-
└── {skill}/
|
|
189
|
-
└── overrides.yaml # Per-skill overrides
|
|
191
|
+
└── config.yaml # Global config (platform, user settings, tool config)
|
|
190
192
|
```
|
|
191
193
|
|
|
192
|
-
|
|
193
|
-
-
|
|
194
|
-
-
|
|
194
|
+
Key sections in `config.yaml`:
|
|
195
|
+
- `platform` - Primary platform (claude-code, opencode, cursor)
|
|
196
|
+
- `user_mention` - Your @mention for comments (e.g., `@fry`)
|
|
197
|
+
- `tools` - Per-tool configuration (brain paths, codex repo, etc.)
|
|
198
|
+
- `auto_update` - Auto-update settings for app and tools
|
|
199
|
+
- `repos` - Known repositories for context
|
|
200
|
+
|
|
201
|
+
**Where tools install:**
|
|
202
|
+
|
|
203
|
+
Skills are unified across all platforms to `~/.claude/skills/`. Commands and agents are platform-specific:
|
|
204
|
+
|
|
205
|
+
| Platform | Skills | Commands | Agents |
|
|
206
|
+
|----------|--------|----------|--------|
|
|
207
|
+
| Claude Code | `~/.claude/skills/` | `~/.claude/commands/` | `~/.claude/agents/` |
|
|
208
|
+
| OpenCode | `~/.claude/skills/` | `~/.config/opencode/command/` | `~/.config/opencode/agent/` |
|
|
209
|
+
| Cursor | `~/.claude/skills/` | `~/.cursor/commands/` | `~/.cursor/agents/` |
|
|
195
210
|
|
|
196
211
|
## CLI Reference
|
|
197
212
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "droid-codex",
|
|
3
|
-
"version": "0.
|
|
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.",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Shared organizational knowledge - PRDs, tech designs, domains, proposals, patterns, and explored topics. Self-describing: structure and workflows defined in codex repo. Use when loading project context, searching codex, capturing decisions, or creating new entries.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Orderful",
|
|
7
7
|
"url": "https://github.com/orderful"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
name: codex
|
|
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.
|
|
2
|
+
description: "Shared organizational knowledge - PRDs, tech designs, domains, proposals, patterns, and explored topics. Self-describing: structure and workflows defined in codex repo. Use when loading project context, searching codex, capturing decisions, or creating new entries."
|
|
3
|
+
version: 0.3.0
|
|
4
4
|
status: beta
|
|
5
5
|
|
|
6
6
|
includes:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: codex
|
|
3
|
-
description: "Shared organizational knowledge - PRDs, tech designs, patterns, domains, proposals, and explored topics"
|
|
3
|
+
description: "Shared organizational knowledge - PRDs, tech designs, patterns, domains, proposals, and explored topics. Self-describing: structure and workflows defined in codex repo."
|
|
4
4
|
argument-hint: "[projects | search {query} | {category} search {query} | new {category} {name} | decision {text}]"
|
|
5
5
|
---
|
|
6
6
|
|