pi-long-task 0.3.8 → 0.3.10
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/README.md +222 -6
- package/package.json +1 -1
- package/src/coordinator.ts +336 -31
- package/src/coverage_goal.ts +90 -0
- package/src/goal_discovery.ts +739 -0
- package/src/goal_loop.ts +567 -0
- package/src/goal_orchestrator.ts +396 -0
- package/src/goal_review.ts +575 -0
- package/src/goal_spec.ts +670 -0
- package/src/goal_state.ts +227 -0
- package/src/goal_todo_execution.ts +309 -0
- package/src/goal_todo_generation.ts +539 -0
- package/src/index.ts +90 -2
- package/src/input_router.ts +124 -6
- package/src/render.ts +223 -4
- package/src/session_guard.ts +287 -0
- package/src/todo_generator.ts +143 -5
- package/src/types.ts +66 -3
- package/src/worker_session.ts +23 -2
package/README.md
CHANGED
|
@@ -18,14 +18,16 @@ Use it when a coding request is bigger than one focused interaction. Pi Long Tas
|
|
|
18
18
|
When you ask Pi to run a long task, Pi Long Task:
|
|
19
19
|
|
|
20
20
|
1. Recognizes natural-language requests like "run a long task with commits" and routes them to `pi_long_task`.
|
|
21
|
-
2. Creates or cleans up a TODO plan from your request.
|
|
21
|
+
2. Creates or cleans up a TODO plan from your request, optionally guided by a high-level `goal`. Natural-language planning uses a bounded planner session; if generated TODO markdown is invalid, Pi Long Task asks the planner to repair it once before failing the run.
|
|
22
22
|
3. Works through each unfinished TODO task in order using isolated worker sessions.
|
|
23
23
|
4. Registers a Pi TUI sidebar/widget when UI support is available and updates it with the current task, inferred subtask progress, and full task timeline while the run is active.
|
|
24
24
|
5. Retries unfinished tasks up to the configured attempt limit.
|
|
25
|
-
6. Records progress, task artifacts, and final results under `tmp/pi-long-task/<run-id>/`.
|
|
25
|
+
6. Records progress, planner diagnostics, task artifacts, and final results under `tmp/pi-long-task/<run-id>/`.
|
|
26
26
|
7. Returns a summary with completed, failed, blocked, and remaining task counts, plus worker spend when available.
|
|
27
27
|
8. Optionally commits completed work after each task.
|
|
28
28
|
|
|
29
|
+
For a large project goal, this means Pi Long Task turns the single broad request into structured TODO tasks first, then assigns each TODO to a worker session one at a time. For example, a hypothetical request to build a fast team chat app would become a plan of focused tasks instead of one giant all-at-once implementation; workers would complete or report on each task incrementally before the coordinator moves to the next task.
|
|
30
|
+
|
|
29
31
|
During and after a run you get:
|
|
30
32
|
|
|
31
33
|
- a concise status summary in Pi
|
|
@@ -84,6 +86,12 @@ Run a long task with commits to implement the TODOs in @TODO.md.
|
|
|
84
86
|
Run a long task with commits to refactor the checkout flow, update the tests, and commit each completed task.
|
|
85
87
|
```
|
|
86
88
|
|
|
89
|
+
Request commits and a coverage target in the same natural-language prompt:
|
|
90
|
+
|
|
91
|
+
```text
|
|
92
|
+
Run a long task with commits with goal to have testing line coverage above 80%.
|
|
93
|
+
```
|
|
94
|
+
|
|
87
95
|
Run without commits when you want to review all changes yourself before committing:
|
|
88
96
|
|
|
89
97
|
```text
|
|
@@ -94,6 +102,100 @@ Run a long task without commits to add tests for the parser and fix any failures
|
|
|
94
102
|
Run a long task without commits to audit the README examples and leave the final diff uncommitted.
|
|
95
103
|
```
|
|
96
104
|
|
|
105
|
+
### What "with commits" means
|
|
106
|
+
|
|
107
|
+
When you ask for a long task "with commits," Pi Long Task may create a git commit after each TODO task that a worker completes with eligible changes. Each worker session is expected to stay focused on its assigned TODO only, so any commit reflects a specific slice of progress rather than the entire broad request.
|
|
108
|
+
|
|
109
|
+
Those incremental commits preserve completed work between worker sessions, make it easier to review what changed for each task, and provide clear checkpoints if a later task is blocked or needs another attempt.
|
|
110
|
+
|
|
111
|
+
### Scope expectations for broad product goals
|
|
112
|
+
|
|
113
|
+
A hypothetical request like "run a long task with commits to build a fast Slack alternative" is too large and vague to finish as one instant product build. Pi Long Task would first turn that broad goal into a realistic plan, often centered on an MVP rather than every feature of a full Slack replacement.
|
|
114
|
+
|
|
115
|
+
The generated plan would break the work into focused areas such as authentication, workspace/channel data, message creation and history, realtime sync, persistence, UI screens, tests, and deployment or configuration follow-up. Each area would become one or more TODO tasks assigned to separate worker sessions, with incremental verification and optional commits along the way.
|
|
116
|
+
|
|
117
|
+
The initial result should be expected to be a structured TODO plan, MVP-oriented breakdown, or first narrow implementation slice. A complete production-ready team chat product would require many focused tasks and repeated progress checks, not a single vague prompt completing everything immediately.
|
|
118
|
+
|
|
119
|
+
## How to run a Long Task
|
|
120
|
+
|
|
121
|
+
### 1. Prepare the work request
|
|
122
|
+
|
|
123
|
+
Pi Long Task can plan from a plain-language request or from pasted TODO markdown. If you write the TODO markdown yourself, use this structure:
|
|
124
|
+
|
|
125
|
+
```markdown
|
|
126
|
+
# Pi Long Task TODO
|
|
127
|
+
|
|
128
|
+
Global instructions:
|
|
129
|
+
|
|
130
|
+
- Keep any rule that applies to every task here.
|
|
131
|
+
|
|
132
|
+
## Progress
|
|
133
|
+
|
|
134
|
+
- [ ] TODO 1 — First focused task
|
|
135
|
+
- [ ] TODO 2 — Second focused task
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
139
|
+
## TODO 1 — First focused task
|
|
140
|
+
|
|
141
|
+
**Goal:** Explain the outcome for this task.
|
|
142
|
+
|
|
143
|
+
**Status:**
|
|
144
|
+
|
|
145
|
+
- [ ] Implement the first focused task
|
|
146
|
+
|
|
147
|
+
**Verify:**
|
|
148
|
+
|
|
149
|
+
- Run the focused check for this task.
|
|
150
|
+
|
|
151
|
+
**Done when:**
|
|
152
|
+
|
|
153
|
+
- The task is implemented and verified.
|
|
154
|
+
|
|
155
|
+
## TODO 2 — Second focused task
|
|
156
|
+
|
|
157
|
+
**Goal:** Explain the outcome for this task.
|
|
158
|
+
|
|
159
|
+
**Status:**
|
|
160
|
+
|
|
161
|
+
- [ ] Implement the second focused task
|
|
162
|
+
|
|
163
|
+
**Verify:**
|
|
164
|
+
|
|
165
|
+
- Run the focused check for this task.
|
|
166
|
+
|
|
167
|
+
**Done when:**
|
|
168
|
+
|
|
169
|
+
- The task is implemented and verified.
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
### 2. Start Pi in the target project
|
|
173
|
+
|
|
174
|
+
Install or load the extension first, then run Pi from the repository you want to modify:
|
|
175
|
+
|
|
176
|
+
```bash
|
|
177
|
+
cd /path/to/your/project
|
|
178
|
+
pi
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
In the Pi prompt, use natural language:
|
|
182
|
+
|
|
183
|
+
```text
|
|
184
|
+
Run a long task without commits to implement the TODOs in @TODO.md.
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
Or call the tool explicitly:
|
|
188
|
+
|
|
189
|
+
```text
|
|
190
|
+
Use pi_long_task with inputText "implement the TODOs in @TODO.md" and commit false.
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
Use `with commits` or `commit true` only when you want Pi Long Task to create eligible commits after completed tasks.
|
|
194
|
+
|
|
195
|
+
### 3. Monitor progress and completion
|
|
196
|
+
|
|
197
|
+
During execution, Pi Long Task creates `tmp/pi-long-task/<run-id>/TODO.md` and `TASK_RESULT.md`, runs one isolated worker session per unfinished TODO in order, and retries unfinished tasks up to the configured attempt limit. In Pi TUI, watch the Long Task sidebar/widget for the active task, subtask checklist, task timeline, counts, and worker spend when available. In headless or non-UI runs, watch the partial tool-result updates in the main output. When the run finishes, the final response lists completed, failed, blocked, and remaining task counts plus the result and TODO file paths.
|
|
198
|
+
|
|
97
199
|
## What it looks like
|
|
98
200
|
|
|
99
201
|
In Pi TUI, Pi Long Task keeps worker activity in the main tool result flow and registers a real right-side TUI sidebar for the run timeline:
|
|
@@ -152,27 +254,139 @@ Run with commits:
|
|
|
152
254
|
Use pi_long_task with inputText "implement the TODOs in @TODO.md" and commit true.
|
|
153
255
|
```
|
|
154
256
|
|
|
257
|
+
Run with an explicit high-level goal for the planner and worker prompts:
|
|
258
|
+
|
|
259
|
+
```text
|
|
260
|
+
Use pi_long_task with inputText "update the checkout TODOs" and commit false and goal "ship a reliable checkout recovery experience".
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
When a goal is enough context, `inputText` can be omitted:
|
|
264
|
+
|
|
265
|
+
```text
|
|
266
|
+
Use pi_long_task with commit true and goal "have testing line coverage above 80%".
|
|
267
|
+
```
|
|
268
|
+
|
|
155
269
|
Use a pasted TODO plan:
|
|
156
270
|
|
|
157
271
|
```text
|
|
158
272
|
Use pi_long_task with inputText "<paste TODO markdown here>" and commit false.
|
|
159
273
|
```
|
|
160
274
|
|
|
275
|
+
## Goal-oriented iterative loop
|
|
276
|
+
|
|
277
|
+
Use `pi_goal_task` when you have a high-level outcome instead of a ready TODO plan and want Pi Long Task to keep iterating until a reviewer confirms the goal is complete.
|
|
278
|
+
|
|
279
|
+
```text
|
|
280
|
+
Use pi_goal_task with goal "modernize the settings page, add tests, and update docs" and commit true.
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
Goal loops default to `commit true`, `maxIterations 50`, a 48-hour total timeout, 3 hours per implementation iteration, and 30 minutes per reviewer pass. Override limits when you want a larger or smaller loop.
|
|
284
|
+
|
|
285
|
+
Examples:
|
|
286
|
+
|
|
287
|
+
```text
|
|
288
|
+
Run a goal task with commits for goal: build a full Slack alternative chat app focused on speed.
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
```text
|
|
292
|
+
Use pi_goal_task with goal "build a full Slack alternative chat app focused on speed" and commit true and maxIterations 100.
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
```text
|
|
296
|
+
Use pi_goal_task with goal "ship a polished analytics dashboard with onboarding, tests, docs, and launch notes" and commit false and maxIterations 20.
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
For broad software-product goals like the Slack example, `pi_goal_task` first creates a software/product specification, then generates implementation TODOs from that spec, runs them, reviews completion, and repeats until the spec is complete or safety limits stop the loop.
|
|
300
|
+
|
|
301
|
+
### Discovery for vague software goals
|
|
302
|
+
|
|
303
|
+
When a `pi_goal_task` goal is vague, such as a short product direction or broad feature idea, the goal loop first runs software-focused discovery before implementation TODOs are generated. Discovery turns the original goal into a persisted product definition and definition-of-done so implementation workers do not have to guess the scope.
|
|
304
|
+
|
|
305
|
+
Discovery uses role-based planning outputs from these supported roles:
|
|
306
|
+
|
|
307
|
+
- Product Owner
|
|
308
|
+
- Project Manager
|
|
309
|
+
- Software Architect/Tech Lead
|
|
310
|
+
- UX/UI Designer
|
|
311
|
+
- QA/Reviewer
|
|
312
|
+
- Marketing/Growth, when relevant for user-facing launch or adoption context
|
|
313
|
+
|
|
314
|
+
The consolidated specification is saved as `GOAL_SPEC.json` under the goal run directory. It includes traceability to the original user goal, role-output summaries, in-scope and out-of-scope requirements, assumptions, open questions, milestones, acceptance criteria, verification gates, design constraints, product constraints, optional marketing/growth context, and a definition-of-done with required artifacts and notes.
|
|
315
|
+
|
|
316
|
+
For vague goals, the loop runs as:
|
|
317
|
+
|
|
318
|
+
1. accept the high-level `goal`
|
|
319
|
+
2. classify the goal as vague and run discovery
|
|
320
|
+
3. persist `GOAL_SPEC.json`
|
|
321
|
+
4. generate implementation TODO markdown from the persisted specification
|
|
322
|
+
5. run that generated TODO as a normal long task in an isolated worker session
|
|
323
|
+
6. run a separate reviewer session that decides `complete`, `incomplete`, `blocked`, or `failed` against the persisted specification
|
|
324
|
+
7. if the reviewer says `incomplete`, generate another TODO using previous review context plus the same persisted specification and repeat
|
|
325
|
+
|
|
326
|
+
Implementation TODO generation treats the persisted specification as the source of truth. Generated tasks are instructed to cover relevant requirement, milestone, acceptance-criterion, verification-gate, constraint, and definition-of-done items, including spec IDs such as `REQ-*`, `MS-*`, `AC-*`, and `VG-*` where applicable. Reviewer sessions also load the persisted specification and use it as the primary review target; the original goal remains available for traceability, but vague wording alone is not the completion standard.
|
|
327
|
+
|
|
328
|
+
### Concrete goals and compatibility
|
|
329
|
+
|
|
330
|
+
When a `pi_goal_task` goal is already concrete, existing direct behavior is preserved: the loop skips discovery and generates implementation TODOs from the provided goal, previous iteration context, and reviewer feedback. Goals are generally considered concrete when they already include implementation details such as files or paths, specific commands/tests, explicit acceptance criteria, or enough detailed scope for direct TODO generation.
|
|
331
|
+
|
|
332
|
+
`pi_long_task` behavior is unchanged. Discovery is only enabled by default for `pi_goal_task`; direct long-task planning, TODO normalization, worker execution, progress display, retries, artifacts, and commit behavior continue to work as before.
|
|
333
|
+
|
|
334
|
+
Goal-loop artifacts are stored under `tmp/pi-goal-task/<goal-run-id>/`, including `GOAL_STATE.json`, `GOAL_TRACE.jsonl`, `GOAL_RESULT.md`, optional `GOAL_SPEC.json` for discovered goals, and per-iteration generated TODO, worker, and reviewer files. Child TODO execution still writes normal `tmp/pi-long-task/<run-id>/` artifacts.
|
|
335
|
+
|
|
336
|
+
Safety controls:
|
|
337
|
+
|
|
338
|
+
- `maxIterations` stops retry loops when the reviewer keeps finding remaining work; default is `50`.
|
|
339
|
+
- `timeoutMs` caps the overall goal loop; default is `172800000` ms (48 hours).
|
|
340
|
+
- `iterationTimeoutMs` caps each generated TODO worker iteration; default is `10800000` ms (3 hours).
|
|
341
|
+
- `reviewerTimeoutMs` caps each reviewer session; default is `1800000` ms (30 minutes).
|
|
342
|
+
- tool cancellation is passed through and stops the loop with `cancelled` status.
|
|
343
|
+
- `maxAttemptsPerTask` and `maxBashTimeoutMs` are forwarded to worker long-task runs.
|
|
344
|
+
- `commit` controls whether implementation workers may commit; goal loops default to `commit true`, so pass `commit false` when you want to review all changes first.
|
|
345
|
+
|
|
161
346
|
## Options
|
|
162
347
|
|
|
163
|
-
|
|
348
|
+
`pi_long_task` has one required input and two optional inputs:
|
|
164
349
|
|
|
165
350
|
```ts
|
|
166
351
|
{
|
|
167
|
-
inputText: string;
|
|
168
352
|
commit: boolean;
|
|
353
|
+
inputText?: string;
|
|
354
|
+
goal?: string;
|
|
169
355
|
}
|
|
170
356
|
```
|
|
171
357
|
|
|
172
|
-
- `inputText` is the request or TODO markdown to work on.
|
|
173
358
|
- `commit` controls whether Pi Long Task may create git commits.
|
|
359
|
+
- `inputText` optionally provides the request or TODO markdown to work on.
|
|
360
|
+
- `goal` optionally provides a high-level desired outcome that is passed to TODO planning and worker task prompts. Coverage goals such as `have testing line coverage above 80%` add coverage-specific planning and verification guidance.
|
|
361
|
+
|
|
362
|
+
`pi_goal_task` accepts a high-level goal plus safety controls:
|
|
363
|
+
|
|
364
|
+
```ts
|
|
365
|
+
{
|
|
366
|
+
goal: string;
|
|
367
|
+
commit?: boolean;
|
|
368
|
+
maxIterations?: number;
|
|
369
|
+
timeoutMs?: number;
|
|
370
|
+
iterationTimeoutMs?: number;
|
|
371
|
+
reviewerTimeoutMs?: number;
|
|
372
|
+
maxAttemptsPerTask?: number;
|
|
373
|
+
maxBashTimeoutMs?: number;
|
|
374
|
+
}
|
|
375
|
+
```
|
|
376
|
+
|
|
377
|
+
Use `pi_goal_task` for iterative goal completion. Vague `pi_goal_task` goals enter discovery and persist `GOAL_SPEC.json`; already concrete goals keep the direct implementation path. Use `pi_long_task` when you already have a concrete request or TODO markdown and want one planned long-task run.
|
|
378
|
+
|
|
379
|
+
Example explicit goal-task calls:
|
|
380
|
+
|
|
381
|
+
```text
|
|
382
|
+
Use pi_goal_task with goal "build a full Slack alternative chat app focused on speed" and commit true.
|
|
383
|
+
```
|
|
384
|
+
|
|
385
|
+
```text
|
|
386
|
+
Use pi_goal_task with goal "build a full Slack alternative chat app focused on speed" and commit true and maxIterations 100 and timeoutMs 172800000.
|
|
387
|
+
```
|
|
174
388
|
|
|
175
|
-
For natural-language requests, Pi Long Task routes phrases like "run a long task with commits" to the tool with commits enabled. If you ask for a long task without mentioning commits, commits stay disabled.
|
|
389
|
+
For natural-language requests, Pi Long Task routes phrases like "run a long task with commits" to the tool with commits enabled. Phrases like "with goal to have testing line coverage above 80%" are parsed into the `goal` option. If you ask for a long task without mentioning commits, commits stay disabled.
|
|
176
390
|
|
|
177
391
|
Natural-language routing intentionally avoids informational questions, such as "How do I run a long task with commits?", and explicit tool calls are left unchanged.
|
|
178
392
|
|
|
@@ -230,6 +444,8 @@ That smoke test creates disposable git repos and verifies both `commit: false` a
|
|
|
230
444
|
## Limitations and expectations
|
|
231
445
|
|
|
232
446
|
- Tasks run sequentially, one TODO at a time; Pi Long Task prioritizes isolation, progress tracking, and safe handoff over parallel execution.
|
|
447
|
+
- Natural-language TODO planning has a bounded time budget (five minutes by default, with a short graceful-shutdown request). If planning times out or is aborted before a valid plan exists, the run fails before worker tasks start and records planner diagnostics in `TASK_RESULT.md`.
|
|
448
|
+
- If the planner returns invalid TODO markdown, Pi Long Task makes one repair attempt. A second invalid response fails planning with diagnostics instead of guessing at a plan.
|
|
233
449
|
- Real runs require usable Pi model credentials, such as a working Pi login or API key for the selected model.
|
|
234
450
|
- Worker spend is added to the main Pi `$ spent` total as cost-only usage. Token counts are not merged into the main thread because worker sessions have separate context windows, and merging their token usage would corrupt the main conversation's context statistics.
|
|
235
451
|
- Run artifacts are written under `tmp/pi-long-task/<run-id>/`.
|