taskchef 7.15.6 → 7.16.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskchef",
3
- "version": "7.15.6",
3
+ "version": "7.16.0",
4
4
  "description": "Dispatch work from a data-only workspace to visible Codex project tasks.",
5
5
  "author": {
6
6
  "name": "Favo Yang",
@@ -29,10 +29,10 @@
29
29
  ],
30
30
  "websiteURL": "https://github.com/favoyang/taskchef",
31
31
  "defaultPrompt": [
32
- "$taskchef-bootstrap Set up TaskChef and index my Codex projects.",
33
- "$taskchef-delegate Dispatch this request to the right project.",
34
- "$taskchef-executor Execute this delegated TaskChef assignment.",
35
- "$taskchef-copilot Explain TaskChef outcomes and recommend the next action."
32
+ "$taskchef-bootstrap Set up TaskChef and index my local Codex projects.",
33
+ "$taskchef-delegate Do X in Y project.",
34
+ "Start and open the TaskChef dashboard.",
35
+ "$taskchef-copilot Summarize recent delegated work and tell me what needs attention."
36
36
  ],
37
37
  "brandColor": "#D97706",
38
38
  "composerIcon": "./assets/taskchef.svg",
package/README.md CHANGED
@@ -41,7 +41,7 @@ no elevated permissions.
41
41
  Ask the bootstrap skill to create the per-user dispatcher:
42
42
 
43
43
  ```text
44
- $taskchef-bootstrap Set up TaskChef.
44
+ $taskchef-bootstrap Set up TaskChef and index my local Codex projects.
45
45
  ```
46
46
 
47
47
  The canonical workspace is `~/.agents/taskchef`. TaskChef owns only:
@@ -181,7 +181,7 @@ The dashboard is the primary monitoring and browsing UI. Ask copilot when you
181
181
  want a concise explanation or recommendation:
182
182
 
183
183
  ```text
184
- $taskchef-copilot What finished, what needs attention, and what should I do next?
184
+ $taskchef-copilot Summarize recent delegated work and tell me what needs attention.
185
185
  ```
186
186
 
187
187
  Copilot starts from TaskChef's normalized cached brief. It uses live Codex
@@ -219,6 +219,12 @@ eight-character prefix.
219
219
 
220
220
  ## Dashboard
221
221
 
222
+ Ask the dispatcher to make the dashboard available and open it:
223
+
224
+ ```text
225
+ Start and open the TaskChef dashboard.
226
+ ```
227
+
222
228
  Dispatcher turns call the input-free `ensure_dashboard` MCP tool. It starts at
223
229
  most one dashboard inside the existing TaskChef MCP process on
224
230
  `127.0.0.1:3210`, or reuses a listener only when its bounded `/api/health`
@@ -6,6 +6,10 @@ This folder is the canonical per-user TaskChef dispatcher workspace.
6
6
  - Early in every dispatcher turn, best-effort call the TaskChef
7
7
  `ensure_dashboard` MCP tool. Dashboard startup failure must not block direct
8
8
  TaskChef answers, reporting, or delegation.
9
+ - A request to start or open the TaskChef dashboard is TaskChef maintenance,
10
+ not delegated project work. Call `ensure_dashboard`, then open or navigate to
11
+ its returned URL when an in-app browser capability is available. Otherwise,
12
+ return the URL as a clickable link.
9
13
  - Use `$taskchef-bootstrap` when initializing or refreshing this workspace,
10
14
  changing or listing its configured projects, running TaskChef doctor,
11
15
  or repairing its managed instructions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskchef",
3
- "version": "7.15.6",
3
+ "version": "7.16.0",
4
4
  "description": "A non-blocking interactive dispatcher for visible Codex tasks.",
5
5
  "license": "MIT",
6
6
  "author": "Favo Yang",