@orderful/droid 0.31.2 → 0.32.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 +13 -0
- package/AGENTS.md +15 -0
- package/CHANGELOG.md +22 -0
- package/dist/bin/droid.js +515 -434
- package/dist/commands/setup.d.ts +1 -0
- package/dist/commands/setup.d.ts.map +1 -1
- package/dist/commands/tui/components/PlatformBadges.d.ts +6 -0
- package/dist/commands/tui/components/PlatformBadges.d.ts.map +1 -0
- package/dist/commands/tui/components/SettingsDetails.d.ts +4 -1
- package/dist/commands/tui/components/SettingsDetails.d.ts.map +1 -1
- package/dist/commands/tui/types.d.ts +1 -1
- package/dist/commands/tui/types.d.ts.map +1 -1
- package/dist/commands/tui/views/SetupScreen.d.ts +3 -2
- package/dist/commands/tui/views/SetupScreen.d.ts.map +1 -1
- package/dist/commands/tui.d.ts.map +1 -1
- package/dist/index.js +138 -86
- package/dist/lib/agents.d.ts +7 -2
- package/dist/lib/agents.d.ts.map +1 -1
- package/dist/lib/platforms.d.ts +10 -1
- package/dist/lib/platforms.d.ts.map +1 -1
- package/dist/lib/skills.d.ts.map +1 -1
- package/dist/lib/types.d.ts +5 -0
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/tools/wrapup/.claude-plugin/plugin.json +16 -0
- package/dist/tools/wrapup/TOOL.yaml +16 -0
- package/dist/tools/wrapup/commands/wrapup.md +21 -0
- package/dist/tools/wrapup/skills/wrapup/SKILL.md +86 -0
- package/dist/tools/wrapup/skills/wrapup/references/output-schema.md +93 -0
- package/dist/tools/wrapup/skills/wrapup/references/subagent-prompts.md +87 -0
- package/package.json +1 -1
- package/src/commands/setup.ts +67 -61
- package/src/commands/tui/components/PlatformBadges.tsx +36 -0
- package/src/commands/tui/components/SettingsDetails.tsx +16 -4
- package/src/commands/tui/types.ts +1 -1
- package/src/commands/tui/views/SetupScreen.tsx +26 -49
- package/src/commands/tui.tsx +21 -9
- package/src/lib/agents.ts +23 -7
- package/src/lib/platforms.ts +44 -1
- package/src/lib/skills.ts +79 -40
- package/src/lib/types.ts +11 -0
- package/src/tools/wrapup/.claude-plugin/plugin.json +16 -0
- package/src/tools/wrapup/TOOL.yaml +16 -0
- package/src/tools/wrapup/commands/wrapup.md +21 -0
- package/src/tools/wrapup/skills/wrapup/SKILL.md +86 -0
- package/src/tools/wrapup/skills/wrapup/references/output-schema.md +93 -0
- package/src/tools/wrapup/skills/wrapup/references/subagent-prompts.md +87 -0
|
@@ -109,6 +109,19 @@
|
|
|
109
109
|
"author": {
|
|
110
110
|
"name": "Orderful"
|
|
111
111
|
}
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "droid-wrapup",
|
|
115
|
+
"description": "Session wrap-up that captures decisions, learnings, and open items to persistent docs.",
|
|
116
|
+
"version": "0.1.0",
|
|
117
|
+
"source": {
|
|
118
|
+
"source": "github",
|
|
119
|
+
"repo": "orderful/droid",
|
|
120
|
+
"path": "src/tools/wrapup"
|
|
121
|
+
},
|
|
122
|
+
"author": {
|
|
123
|
+
"name": "Orderful"
|
|
124
|
+
}
|
|
112
125
|
}
|
|
113
126
|
]
|
|
114
127
|
}
|
package/AGENTS.md
CHANGED
|
@@ -137,6 +137,20 @@ bun run screenshot # On-demand TUI screenshot for visual verification
|
|
|
137
137
|
|
|
138
138
|
**Optional:** Add `references/` for context files, `scripts/` for deterministic CLI scripts.
|
|
139
139
|
|
|
140
|
+
## Progressive Disclosure in Skills
|
|
141
|
+
|
|
142
|
+
Keep SKILL.md focused on *what* to do. Move *how* details to `references/`:
|
|
143
|
+
|
|
144
|
+
| In SKILL.md | In references/ |
|
|
145
|
+
|-------------|----------------|
|
|
146
|
+
| High-level flow | Detailed prompts, templates |
|
|
147
|
+
| Quick reference tables | Full schemas, examples |
|
|
148
|
+
| When/why to use | Implementation details |
|
|
149
|
+
|
|
150
|
+
**Rule of thumb:** If the main skill exceeds ~100 lines, consider extracting implementation details to references.
|
|
151
|
+
|
|
152
|
+
**Example:** The `wrapup` skill keeps its 4-phase overview in SKILL.md but moves detailed subagent prompts and output schemas to `references/subagent-prompts.md` and `references/output-schema.md`.
|
|
153
|
+
|
|
140
154
|
## Existing Tools
|
|
141
155
|
|
|
142
156
|
Each tool has a specific domain. Know where your feature belongs:
|
|
@@ -151,6 +165,7 @@ Each tool has a specific domain. Know where your feature belongs:
|
|
|
151
165
|
| `droid` | **Meta-tool only** - updates, discovery | NEVER add skills here - create new tool instead |
|
|
152
166
|
| `project` | Personal project context | Project file management |
|
|
153
167
|
| `tech-design` | Tech design authoring | Tech design workflows |
|
|
168
|
+
| `wrapup` | Session wrap-up and context capture | End-of-session persistence, context handoff |
|
|
154
169
|
|
|
155
170
|
> **Important:** The `droid` tool is special. It only handles update awareness and tool discovery.
|
|
156
171
|
> If you're building a full-featured capability (like tech-design, codex, brain), create a **new tool**.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @orderful/droid
|
|
2
2
|
|
|
3
|
+
## 0.32.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#191](https://github.com/Orderful/droid/pull/191) [`460239b`](https://github.com/Orderful/droid/commit/460239bc8d5f025fa2fd865355aa8b1e09cc0456) Thanks [@frytyler](https://github.com/frytyler)! - Add multi-platform detection and install support
|
|
8
|
+
- Detect all installed platforms (Claude Code, Cursor, OpenCode) on every install
|
|
9
|
+
- Add `ignored_platforms` config option to exclude specific platforms
|
|
10
|
+
- Install commands and agents to all active platforms simultaneously
|
|
11
|
+
- Show detected platforms with coloured icons in TUI header
|
|
12
|
+
- Setup wizard now shows all detected platforms and allows excluding some
|
|
13
|
+
|
|
14
|
+
- [#194](https://github.com/Orderful/droid/pull/194) [`d3cd6f5`](https://github.com/Orderful/droid/commit/d3cd6f5e5273f969b1698886bf812062a3a49cb9) Thanks [@frytyler](https://github.com/frytyler)! - Add `wrapup` tool for session wrap-up
|
|
15
|
+
|
|
16
|
+
New standalone tool that captures decisions, learnings, and open items before closing a session.
|
|
17
|
+
Install with `droid install wrapup`.
|
|
18
|
+
|
|
19
|
+
Architecture: context lifeboat pattern
|
|
20
|
+
- Main agent quickly extracts session context (has conversation history)
|
|
21
|
+
- Built-in subagents analyse artifacts in fresh context windows
|
|
22
|
+
- Avoids context pressure / compaction at end of long sessions
|
|
23
|
+
- Writes to brain docs, project files, or codex on approval
|
|
24
|
+
|
|
3
25
|
## 0.31.2
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|