@orderful/droid 0.33.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 +1 -1
- package/CHANGELOG.md +9 -0
- 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 +5 -3
- package/package.json +1 -1
- 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 +5 -3
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
{
|
|
127
127
|
"name": "droid-wrapup",
|
|
128
128
|
"description": "Session wrap-up that captures decisions, learnings, and open items to persistent docs.",
|
|
129
|
-
"version": "0.1.
|
|
129
|
+
"version": "0.1.2",
|
|
130
130
|
"source": {
|
|
131
131
|
"source": "github",
|
|
132
132
|
"repo": "orderful/droid",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
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
|
+
|
|
3
12
|
## 0.33.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -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.
|
|
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.
|
|
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
|
|
@@ -27,7 +29,7 @@ Output format:
|
|
|
27
29
|
**Subagent type:** Bash
|
|
28
30
|
|
|
29
31
|
```
|
|
30
|
-
Read
|
|
32
|
+
Read {session_brief_path} for session context.
|
|
31
33
|
|
|
32
34
|
First, run `droid config project` to get the project skill configuration.
|
|
33
35
|
Parse the JSON output to find the `projects_dir` value.
|
|
@@ -52,7 +54,7 @@ If no active project found, note that and skip.
|
|
|
52
54
|
**Subagent type:** Explore
|
|
53
55
|
|
|
54
56
|
```
|
|
55
|
-
Read
|
|
57
|
+
Read {session_brief_path} for session context.
|
|
56
58
|
|
|
57
59
|
First, run `droid config brain` and parse the JSON output for the `brain_dir` setting.
|
|
58
60
|
If not configured, skip brain doc analysis.
|
|
@@ -74,7 +76,7 @@ Output:
|
|
|
74
76
|
**Subagent type:** Explore
|
|
75
77
|
|
|
76
78
|
```
|
|
77
|
-
Read
|
|
79
|
+
Read {session_brief_path} for session context.
|
|
78
80
|
|
|
79
81
|
Run `droid config codex` and check if `codex_repo` is set.
|
|
80
82
|
If not configured, skip codex analysis.
|
package/package.json
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
|
@@ -27,7 +29,7 @@ Output format:
|
|
|
27
29
|
**Subagent type:** Bash
|
|
28
30
|
|
|
29
31
|
```
|
|
30
|
-
Read
|
|
32
|
+
Read {session_brief_path} for session context.
|
|
31
33
|
|
|
32
34
|
First, run `droid config project` to get the project skill configuration.
|
|
33
35
|
Parse the JSON output to find the `projects_dir` value.
|
|
@@ -52,7 +54,7 @@ If no active project found, note that and skip.
|
|
|
52
54
|
**Subagent type:** Explore
|
|
53
55
|
|
|
54
56
|
```
|
|
55
|
-
Read
|
|
57
|
+
Read {session_brief_path} for session context.
|
|
56
58
|
|
|
57
59
|
First, run `droid config brain` and parse the JSON output for the `brain_dir` setting.
|
|
58
60
|
If not configured, skip brain doc analysis.
|
|
@@ -74,7 +76,7 @@ Output:
|
|
|
74
76
|
**Subagent type:** Explore
|
|
75
77
|
|
|
76
78
|
```
|
|
77
|
-
Read
|
|
79
|
+
Read {session_brief_path} for session context.
|
|
78
80
|
|
|
79
81
|
Run `droid config codex` and check if `codex_repo` is set.
|
|
80
82
|
If not configured, skip codex analysis.
|