@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.
@@ -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.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-wrapup",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Session wrap-up that captures decisions, learnings, and open items to persistent docs.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -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.1
3
+ version: 0.1.2
4
4
  status: alpha
5
5
 
6
6
  includes:
@@ -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. Quickly extract and write to `/tmp/wrapup-session-brief.md`:
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. Each reads your session brief and analyses one area.
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 /tmp/wrapup-session-brief.md for session context.
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 /tmp/wrapup-session-brief.md for session context.
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 /tmp/wrapup-session-brief.md for session context.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderful/droid",
3
- "version": "0.33.0",
3
+ "version": "0.33.1",
4
4
  "description": "AI workflow toolkit for sharing skills, commands, and agents across the team",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-wrapup",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Session wrap-up that captures decisions, learnings, and open items to persistent docs.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -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.1
3
+ version: 0.1.2
4
4
  status: alpha
5
5
 
6
6
  includes:
@@ -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. Quickly extract and write to `/tmp/wrapup-session-brief.md`:
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. Each reads your session brief and analyses one area.
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 /tmp/wrapup-session-brief.md for session context.
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 /tmp/wrapup-session-brief.md for session context.
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 /tmp/wrapup-session-brief.md for session context.
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.