pi-long-task 0.3.13 → 0.3.14

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +13 -1
  3. package/package.json +31 -16
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  Notable changes to Pi Long Task are recorded here. This project follows semantic versioning.
4
4
 
5
+ ## 0.3.14 - 2026-08-20
6
+
7
+ ### Documentation and metadata
8
+
9
+ - Improve npm and GitHub discoverability with a richer package description, expanded keywords, and added `repository`, `homepage`, `bugs`, and `engines` fields.
10
+ - Add npm version, Node.js, and license badges, a keyword-rich introduction, and the embedded package preview image to the README.
11
+
5
12
  ## 0.3.13 - 2026-07-22
6
13
 
7
14
  ### Fixed
package/README.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Pi Long Task
2
2
 
3
- Pi Long Task is a Pi extension that breaks large coding requests into tracked TODOs, executes them in isolated worker sessions, registers a real Pi TUI progress sidebar while a run is active, and optionally commits completed work.
3
+ [![npm version](https://img.shields.io/npm/v/pi-long-task.svg)](https://www.npmjs.com/package/pi-long-task)
4
+ [![Node.js >= 22.19](https://img.shields.io/badge/node-%3E%3D22.19-brightgreen)](https://nodejs.org/)
5
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
6
+
7
+ **Pi Long Task** is a long-running task runner and subagent orchestrator for the [Pi coding agent](https://github.com/earendil-works/pi). It is a Pi extension that breaks large coding requests into tracked TODOs, executes them in isolated AI worker sessions, registers a real Pi TUI progress sidebar while a run is active, and optionally commits completed work.
8
+
9
+ If you are looking for a way to run long-running, multi-step, autonomous coding tasks with Pi — refactors, test coverage pushes, full feature builds, or entire product goals — this extension handles the planning, delegation, progress tracking, retries, and safe git commits for you.
4
10
 
5
11
  Use it when a coding request is bigger than one focused interaction. Pi Long Task creates or cleans up the TODO plan, hands each TODO to a fresh worker session, tracks every attempt, and keeps the run artifacts so you can inspect what happened later.
6
12
 
@@ -198,6 +204,8 @@ During execution, Pi Long Task creates `tmp/pi-long-task/<run-id>/TODO.md` and `
198
204
 
199
205
  ## What it looks like
200
206
 
207
+ ![Pi Long Task running in the Pi TUI with a live progress sidebar showing the task timeline, subtasks, and worker spend](docs/assets/package-preview.png)
208
+
201
209
  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:
202
210
 
203
211
  ```text
@@ -460,6 +468,10 @@ That smoke test creates disposable git repos and verifies both `commit: false` a
460
468
  - 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.
461
469
  - Run artifacts are written under `tmp/pi-long-task/<run-id>/`.
462
470
 
471
+ ## Keywords
472
+
473
+ Pi extension, Pi package, Pi coding agent, AI coding agent, AI coding assistant, LLM agent, agentic coding, subagent orchestration, long-running tasks, task runner, task orchestration, TODO planner, autonomous coding, background coding agent, isolated worker sessions, multi-step coding tasks.
474
+
463
475
  ## License
464
476
 
465
477
  MIT. See [LICENSE](LICENSE).
package/package.json CHANGED
@@ -1,15 +1,41 @@
1
1
  {
2
2
  "name": "pi-long-task",
3
- "version": "0.3.13",
3
+ "version": "0.3.14",
4
4
  "type": "module",
5
- "description": "Pi extension for breaking down and running long coding tasks safely.",
5
+ "description": "Pi coding agent extension that breaks large coding requests into tracked TODOs and runs them in isolated AI worker sessions. A long-running task runner and subagent orchestrator for Pi, with a live TUI progress sidebar, retries, goal loops, and optional per-task git commits.",
6
6
  "keywords": [
7
+ "pi",
7
8
  "pi-package",
9
+ "pi-extension",
10
+ "pi-coding-agent",
11
+ "coding-agent",
12
+ "ai-coding-agent",
13
+ "ai-coding-assistant",
14
+ "llm-agent",
15
+ "agentic-coding",
16
+ "subagent",
8
17
  "long-task",
18
+ "long-running-tasks",
9
19
  "task-runner",
10
- "coding-agent",
11
- "pi-extension"
20
+ "task-orchestration",
21
+ "todo-planner",
22
+ "autonomous-coding",
23
+ "background-agent",
24
+ "worker-sessions",
25
+ "ai-automation",
26
+ "developer-tools"
12
27
  ],
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/thestuntcoder/pi-long-task.git"
31
+ },
32
+ "homepage": "https://github.com/thestuntcoder/pi-long-task#readme",
33
+ "bugs": {
34
+ "url": "https://github.com/thestuntcoder/pi-long-task/issues"
35
+ },
36
+ "engines": {
37
+ "node": ">=22.19.0"
38
+ },
13
39
  "files": [
14
40
  "CHANGELOG.md",
15
41
  "LICENSE",
@@ -53,16 +79,5 @@
53
79
  "typescript-eslint": "^8.61.1"
54
80
  },
55
81
  "license": "MIT",
56
- "author": "Dejan Jacimovic <dejan@stuntcoders.com>",
57
- "repository": {
58
- "type": "git",
59
- "url": "git+https://github.com/thestuntcoder/pi-long-task.git"
60
- },
61
- "bugs": {
62
- "url": "https://github.com/thestuntcoder/pi-long-task/issues"
63
- },
64
- "homepage": "https://github.com/thestuntcoder/pi-long-task#readme",
65
- "engines": {
66
- "node": ">=22.19.0"
67
- }
82
+ "author": "Dejan Jacimovic <dejan@stuntcoders.com>"
68
83
  }