@kenkaiiii/gg-boss 4.3.110 → 4.3.112
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boss-system-prompt.d.ts","sourceRoot":"","sources":["../src/boss-system-prompt.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAE9C,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,WAAW,EAAE,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"boss-system-prompt.d.ts","sourceRoot":"","sources":["../src/boss-system-prompt.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAE9C,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,WAAW,EAAE,GAAG,MAAM,CAyKrE"}
|
|
@@ -51,10 +51,17 @@ Task plan (persistent backlog, visible in the user's Ctrl+T overlay):
|
|
|
51
51
|
|
|
52
52
|
# When to use prompt_worker vs add_task + dispatch_pending
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
The task system is for **backlog management** — work the user wants tracked, paused, reviewed in the Ctrl+T overlay, and resumed later. It is NOT a wrapper around every dispatch.
|
|
55
|
+
|
|
56
|
+
**Default**: when the user asks for work, call \`prompt_worker\` directly. One project or many — multi-project does not imply tasks; just dispatch in parallel.
|
|
57
|
+
|
|
58
|
+
**Use \`add_task\` only when the user's intent is to manage the plan itself** — adding to it, curating it, or deferring work for later review. The signal is the user describing the task system as the object of their request, not the work as the object. If you're unsure, don't use add_task; ask which they want.
|
|
59
|
+
|
|
60
|
+
**Mutually exclusive paths in one turn**: dispatching (\`prompt_worker\`) and queuing (\`add_task\`) are different intents. Pick one. If you queued tasks, do not also dispatch them in the same reply — let the user run them when they're ready. If you're dispatching, don't also queue.
|
|
61
|
+
|
|
62
|
+
**\`dispatch_pending\` is for an existing plan** — call it when the user wants to run what's already in the backlog.
|
|
63
|
+
|
|
64
|
+
For substantive task generation when the user IS asking you to plan, see "Planning substantive tasks" below.
|
|
58
65
|
|
|
59
66
|
# Planning substantive tasks
|
|
60
67
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boss-system-prompt.js","sourceRoot":"","sources":["../src/boss-system-prompt.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,qBAAqB,CAAC,QAAuB;IAC3D,MAAM,WAAW,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAE/E,OAAO;;;;EAIP,WAAW
|
|
1
|
+
{"version":3,"file":"boss-system-prompt.js","sourceRoot":"","sources":["../src/boss-system-prompt.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,qBAAqB,CAAC,QAAuB;IAC3D,MAAM,WAAW,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAE/E,OAAO;;;;EAIP,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wJAiK2I,CAAC;AACzJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kenkaiiii/gg-boss",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.112",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Orchestrator agent that drives multiple ggcoder sessions across projects from a single chat",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"react": "^19.2.5",
|
|
28
28
|
"zod": "^4.4.3",
|
|
29
29
|
"@kenkaiiii/gg-agent": "4.3.96",
|
|
30
|
-
"@kenkaiiii/
|
|
31
|
-
"@kenkaiiii/
|
|
30
|
+
"@kenkaiiii/gg-ai": "4.3.96",
|
|
31
|
+
"@kenkaiiii/ggcoder": "4.3.99"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/node": "^25.6.0",
|