@orderful/droid 0.44.1 → 0.45.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/.github/workflows/claude-issue-agent.yml +238 -0
- package/CHANGELOG.md +22 -0
- package/dist/bin/droid.js +53 -23
- package/dist/commands/tui.d.ts.map +1 -1
- package/dist/integrations/granola/index.d.ts +6 -0
- package/dist/integrations/granola/index.d.ts.map +1 -0
- package/dist/integrations/granola/index.ts +28 -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 -0
- package/dist/tools/coach/.claude-plugin/plugin.json +1 -1
- package/dist/tools/coach/TOOL.yaml +5 -1
- package/dist/tools/coach/skills/coach/SKILL.md +31 -5
- 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 +6 -0
- 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 +6 -0
- 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 +6 -0
- package/dist/tools/meeting/.claude-plugin/plugin.json +1 -1
- package/dist/tools/meeting/TOOL.yaml +1 -1
- package/dist/tools/meeting/skills/meeting/SKILL.md +6 -0
- package/dist/tools/plan/.claude-plugin/plugin.json +1 -1
- package/dist/tools/plan/TOOL.yaml +1 -1
- package/dist/tools/plan/skills/plan/SKILL.md +6 -0
- package/dist/tools/project/.claude-plugin/plugin.json +1 -1
- package/dist/tools/project/TOOL.yaml +1 -1
- package/dist/tools/project/skills/project/SKILL.md +6 -0
- package/dist/tools/project/skills/project/references/loading.md +1 -0
- package/dist/tools/release/.claude-plugin/plugin.json +1 -1
- package/dist/tools/release/TOOL.yaml +1 -1
- package/dist/tools/release/skills/release/SKILL.md +7 -0
- package/dist/tools/release/skills/release/references/templates.md +22 -0
- package/dist/tools/release/skills/release/references/workflows.md +28 -4
- package/dist/tools/share/.claude-plugin/plugin.json +1 -1
- package/dist/tools/share/TOOL.yaml +1 -1
- package/dist/tools/share/skills/share/SKILL.md +6 -0
- package/dist/tools/status-update/.claude-plugin/plugin.json +1 -1
- package/dist/tools/status-update/TOOL.yaml +1 -1
- package/dist/tools/status-update/skills/status-update/SKILL.md +6 -0
- 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 +6 -0
- package/dist/tools/wrapup/.claude-plugin/plugin.json +1 -1
- package/dist/tools/wrapup/TOOL.yaml +6 -2
- package/dist/tools/wrapup/skills/wrapup/SKILL.md +25 -2
- package/dist/tools/wrapup/skills/wrapup/references/output-schema.md +5 -3
- package/dist/tools/wrapup/skills/wrapup/references/subagent-prompts.md +54 -13
- package/package.json +1 -1
- package/src/commands/tui.tsx +11 -0
- package/src/integrations/granola/index.ts +28 -0
- 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 -0
- package/src/tools/coach/.claude-plugin/plugin.json +1 -1
- package/src/tools/coach/TOOL.yaml +5 -1
- package/src/tools/coach/skills/coach/SKILL.md +31 -5
- 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 +6 -0
- 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 +6 -0
- 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 +6 -0
- package/src/tools/meeting/.claude-plugin/plugin.json +1 -1
- package/src/tools/meeting/TOOL.yaml +1 -1
- package/src/tools/meeting/skills/meeting/SKILL.md +6 -0
- package/src/tools/plan/.claude-plugin/plugin.json +1 -1
- package/src/tools/plan/TOOL.yaml +1 -1
- package/src/tools/plan/skills/plan/SKILL.md +6 -0
- package/src/tools/project/.claude-plugin/plugin.json +1 -1
- package/src/tools/project/TOOL.yaml +1 -1
- package/src/tools/project/skills/project/SKILL.md +6 -0
- package/src/tools/project/skills/project/references/loading.md +1 -0
- package/src/tools/release/.claude-plugin/plugin.json +1 -1
- package/src/tools/release/TOOL.yaml +1 -1
- package/src/tools/release/skills/release/SKILL.md +7 -0
- package/src/tools/release/skills/release/references/templates.md +22 -0
- package/src/tools/release/skills/release/references/workflows.md +28 -4
- package/src/tools/share/.claude-plugin/plugin.json +1 -1
- package/src/tools/share/TOOL.yaml +1 -1
- package/src/tools/share/skills/share/SKILL.md +6 -0
- package/src/tools/status-update/.claude-plugin/plugin.json +1 -1
- package/src/tools/status-update/TOOL.yaml +1 -1
- package/src/tools/status-update/skills/status-update/SKILL.md +6 -0
- 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 +6 -0
- package/src/tools/wrapup/.claude-plugin/plugin.json +1 -1
- package/src/tools/wrapup/TOOL.yaml +6 -2
- package/src/tools/wrapup/skills/wrapup/SKILL.md +25 -2
- package/src/tools/wrapup/skills/wrapup/references/output-schema.md +5 -3
- package/src/tools/wrapup/skills/wrapup/references/subagent-prompts.md +54 -13
|
@@ -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.
|
|
3
|
+
version: 0.1.5
|
|
4
4
|
status: alpha
|
|
5
5
|
|
|
6
6
|
includes:
|
|
@@ -13,4 +13,8 @@ includes:
|
|
|
13
13
|
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
16
|
-
config_schema:
|
|
16
|
+
config_schema:
|
|
17
|
+
persist_recaps:
|
|
18
|
+
type: string
|
|
19
|
+
default: 'false'
|
|
20
|
+
description: 'Persist session recap files to brain vault wrapups folder'
|
|
@@ -10,16 +10,25 @@ Session wrap-up that captures decisions, learnings, and open items before closin
|
|
|
10
10
|
|
|
11
11
|
## Configuration
|
|
12
12
|
|
|
13
|
-
Wrapup
|
|
13
|
+
Wrapup reads config from other installed tools, plus its own settings:
|
|
14
14
|
|
|
15
15
|
- **Project skill** (optional): `droid config --get tools.project` → `projects_dir` to update project files
|
|
16
|
-
- **Brain skill** (optional): `droid config --get tools.brain` → `brain_dir` to update brain docs
|
|
16
|
+
- **Brain skill** (optional): `droid config --get tools.brain` → `brain_dir` and `inbox_folder` to update brain docs
|
|
17
17
|
- **Codex skill** (optional): `droid config --get tools.codex` → `codex_repo` to suggest codex entries
|
|
18
|
+
- **Wrapup own config** (optional): `droid config --get tools.wrapup` → `persist_recaps` (`'true'` / `'false'`, default `'false'`)
|
|
18
19
|
|
|
19
20
|
If these tools aren't configured, wrapup skips those artifacts and focuses on git state and conversation summary.
|
|
20
21
|
|
|
22
|
+
When `persist_recaps` is `'true'` and brain is configured, session briefs are saved to the brain vault in Phase 4 (see below).
|
|
23
|
+
|
|
21
24
|
**Overrides:** This skill supports user-defined overrides. See `/droid` skill § Skill Overrides.
|
|
22
25
|
|
|
26
|
+
## Custom Instructions
|
|
27
|
+
|
|
28
|
+
Any command accepts a ` -- {instruction}` suffix. Split on the **first** ` -- ` (space-dash-dash-space): left is the command and its args, right is additional context or instruction to carry through the entire execution.
|
|
29
|
+
|
|
30
|
+
Example: `/wrapup -- also capture the tech debt items we discussed`
|
|
31
|
+
|
|
23
32
|
## Context Lifeboat Pattern
|
|
24
33
|
|
|
25
34
|
This skill runs at the END of sessions when context pressure is highest.
|
|
@@ -98,3 +107,17 @@ Present options using AskUserQuestion:
|
|
|
98
107
|
- **"Skip"** → Close without updating
|
|
99
108
|
|
|
100
109
|
On approval, write updates using appropriate format for each destination.
|
|
110
|
+
|
|
111
|
+
**Session recap persistence (if `persist_recaps` is `'true'`):**
|
|
112
|
+
|
|
113
|
+
After writing all other updates, check whether session briefs should be persisted:
|
|
114
|
+
|
|
115
|
+
1. Run `droid config --get tools.wrapup` and check if `persist_recaps` equals `'true'`. If not, skip.
|
|
116
|
+
2. Run `droid config --get tools.brain` and parse `brain_dir` and `inbox_folder`.
|
|
117
|
+
- If `brain_dir` is not set, skip.
|
|
118
|
+
3. Construct the destination path:
|
|
119
|
+
- If `inbox_folder` is non-empty: `{brain_dir}/{inbox_folder}/wrapups/{session-id}.md`
|
|
120
|
+
- If `inbox_folder` is empty or absent: `{brain_dir}/wrapups/{session-id}.md`
|
|
121
|
+
- Avoid double slashes — do not append `inbox_folder` when it is an empty string.
|
|
122
|
+
4. Create the `wrapups/` directory if it does not exist, then copy the Phase 1 brief from `/tmp/wrapup-{session-id}.md` to the constructed path.
|
|
123
|
+
5. Inform the user the recap was saved and where.
|
|
@@ -28,7 +28,7 @@ Structured format for subagent findings. Main agent uses this to synthesise the
|
|
|
28
28
|
],
|
|
29
29
|
"suggested_actions": [
|
|
30
30
|
{
|
|
31
|
-
"type": "commit | codex_topic | file_bug | update_docs",
|
|
31
|
+
"type": "commit | codex_topic | codex_update | file_bug | update_docs",
|
|
32
32
|
"content": "description of suggested action",
|
|
33
33
|
"priority": "high | medium | low"
|
|
34
34
|
}
|
|
@@ -63,7 +63,8 @@ Item categories:
|
|
|
63
63
|
|
|
64
64
|
Actions that need user judgment:
|
|
65
65
|
- `commit`: Git changes ready to commit
|
|
66
|
-
- `codex_topic`:
|
|
66
|
+
- `codex_topic`: Net-new knowledge worth codifying as a new codex entry
|
|
67
|
+
- `codex_update`: Update to an existing codex entry (distinct from `codex_topic` which suggests net-new content)
|
|
67
68
|
- `file_bug`: Bug discovered but not filed
|
|
68
69
|
- `update_docs`: Documentation that needs updating
|
|
69
70
|
|
|
@@ -87,7 +88,8 @@ Actions that need user judgment:
|
|
|
87
88
|
],
|
|
88
89
|
"suggested_actions": [
|
|
89
90
|
{"type": "commit", "content": "4 files ready: TOOL.yaml, SKILL.md, wrapup.md, changeset", "priority": "high"},
|
|
90
|
-
{"type": "codex_topic", "content": "Context lifeboat pattern for end-of-session tooling", "priority": "medium"}
|
|
91
|
+
{"type": "codex_topic", "content": "Context lifeboat pattern for end-of-session tooling", "priority": "medium"},
|
|
92
|
+
{"type": "codex_update", "content": "Update 'droid' codex entry: add context-lifeboat pattern and subagent parallelisation decision from today's session", "priority": "low"}
|
|
91
93
|
]
|
|
92
94
|
}
|
|
93
95
|
```
|
|
@@ -76,20 +76,61 @@ Output:
|
|
|
76
76
|
**Subagent type:** Explore
|
|
77
77
|
|
|
78
78
|
```
|
|
79
|
-
Read {session_brief_path} for session context.
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
If
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
-
|
|
79
|
+
Read {session_brief_path} for session context. Pay particular attention to the
|
|
80
|
+
"Decisions Made" and "Key Learnings" sections — these are the primary signals
|
|
81
|
+
for both new codex topics and updates to existing entries.
|
|
82
|
+
|
|
83
|
+
Run `droid config --get tools.codex` and parse the JSON output for `codex_repo`.
|
|
84
|
+
If `codex_repo` is not set, output "No codex suggestions (codex not configured)" and stop.
|
|
85
|
+
|
|
86
|
+
--- Discover existing codex content ---
|
|
87
|
+
|
|
88
|
+
1. Attempt to read `{codex_repo}/.codex/manifest.yaml` to get an inventory of
|
|
89
|
+
existing entries and projects.
|
|
90
|
+
- If the manifest does not exist, fall back: list the top-level directories
|
|
91
|
+
inside `{codex_repo}` to infer project names.
|
|
92
|
+
2. Skim entry names, titles, and tags — you do NOT need to read full entry bodies
|
|
93
|
+
at this stage. Goal is a compact list of what already exists.
|
|
94
|
+
|
|
95
|
+
--- Compare session against existing codex content ---
|
|
96
|
+
|
|
97
|
+
3. For each decision or learning in the session brief, check whether it relates
|
|
98
|
+
to an existing codex entry or project:
|
|
99
|
+
- A decision "relates to" an entry if the topic, technology, or system name
|
|
100
|
+
overlaps (e.g., a decision about the droid project file format relates to
|
|
101
|
+
a codex entry named "droid" or "tool-configuration").
|
|
102
|
+
- Threshold: if 2 or more session decisions/learnings relate to the same
|
|
103
|
+
existing codex entry, emit a `codex_update` suggestion for that entry.
|
|
104
|
+
- For a single related decision/learning, use your judgment — only suggest
|
|
105
|
+
an update if the insight is clearly additive and not already captured.
|
|
106
|
+
|
|
107
|
+
4. Read the full content of any existing entries flagged in step 3 to confirm
|
|
108
|
+
the insight is genuinely new (avoid duplicate suggestions).
|
|
109
|
+
|
|
110
|
+
--- Identify net-new codex topics ---
|
|
111
|
+
|
|
112
|
+
5. For decisions/learnings that do NOT relate to any existing entry, consider
|
|
113
|
+
whether they merit a brand-new codex topic:
|
|
114
|
+
- Deep research findings
|
|
115
|
+
- Discovered patterns or best practices
|
|
116
|
+
- Non-trivial problems solved with reusable insights
|
|
117
|
+
|
|
118
|
+
--- Output ---
|
|
119
|
+
|
|
120
|
+
Produce two buckets:
|
|
121
|
+
|
|
122
|
+
**Suggested updates to existing codex entries (codex_update):**
|
|
123
|
+
For each:
|
|
124
|
+
- Entry name (as it appears in the codex)
|
|
125
|
+
- What to add or amend (specific content, not vague)
|
|
126
|
+
- Which session decisions/learnings drove this suggestion
|
|
127
|
+
- Why the existing entry is incomplete without this update
|
|
128
|
+
|
|
129
|
+
**Suggested new codex topics (codex_topic):**
|
|
130
|
+
For each:
|
|
131
|
+
- Proposed topic name
|
|
91
132
|
- Brief description of what to capture
|
|
92
133
|
- Why it's worth codifying (reusable, non-obvious, hard-won knowledge)
|
|
93
134
|
|
|
94
|
-
|
|
135
|
+
If neither bucket has entries, output "No codex suggestions".
|
|
95
136
|
```
|