pi-better-harness 0.1.2 → 0.1.3
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 +8 -21
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Meta package for the core Pi Better Harness extensions.
|
|
4
4
|
|
|
5
|
-
Install it once to load
|
|
5
|
+
Install it once to load:
|
|
6
6
|
|
|
7
|
-
- `pi-better-subagents` for detached subagent runs
|
|
8
|
-
- `pi-better-background-tasks` for durable shell tasks and
|
|
9
|
-
- `pi-better-goal` for
|
|
7
|
+
- `pi-better-subagents` for detached, sandboxed subagent runs.
|
|
8
|
+
- `pi-better-background-tasks` for durable shell tasks and watchers.
|
|
9
|
+
- `pi-better-goal` for objective tracking that is aware of background work.
|
|
10
10
|
|
|
11
11
|
`pi-better-read-aloud` is intentionally not included yet.
|
|
12
12
|
|
|
@@ -16,28 +16,14 @@ Install it once to load the background-work tools used most often in Pi:
|
|
|
16
16
|
pi install npm:pi-better-harness
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Try it for one run without saving it to Pi settings:
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
22
|
pi -e npm:pi-better-harness
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
## Included Tools
|
|
26
|
-
|
|
27
|
-
After installation, Pi can use these model-callable tools:
|
|
28
|
-
|
|
29
|
-
| Extension | Tools |
|
|
30
|
-
| --------- | ----- |
|
|
31
|
-
| `pi-better-subagents` | `subagent_spawn`, `subagent_spawn_batch`, `subagent_list`, `subagent_output`, `subagent_result`, `subagent_stop` |
|
|
32
|
-
| `pi-better-background-tasks` | `bg_task_spawn`, `bg_task_watch`, `bg_task_list`, `bg_task_status`, `bg_task_log`, `bg_task_stop`, `bg_task`, `bg_status` |
|
|
33
|
-
| `pi-better-goal` | `get_goal`, `update_goal`, `get_background_activity` |
|
|
34
|
-
|
|
35
|
-
The goal extension also provides the `/goal` and `/better-activity` commands.
|
|
36
|
-
|
|
37
25
|
## Install Individual Packages
|
|
38
26
|
|
|
39
|
-
Use these when you want only one part of the harness:
|
|
40
|
-
|
|
41
27
|
```sh
|
|
42
28
|
pi install npm:pi-better-subagents
|
|
43
29
|
pi install npm:pi-better-background-tasks
|
|
@@ -51,6 +37,7 @@ pi update npm:pi-better-harness
|
|
|
51
37
|
pi remove npm:pi-better-harness
|
|
52
38
|
```
|
|
53
39
|
|
|
54
|
-
##
|
|
40
|
+
## More Detail
|
|
55
41
|
|
|
56
|
-
Repository: https://github.com/1aboveio/pi-better-harness
|
|
42
|
+
- Repository: https://github.com/1aboveio/pi-better-harness
|
|
43
|
+
- Detailed notes: https://github.com/1aboveio/pi-better-harness/blob/main/packages/pi-better-harness/docs/usage.md
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-better-harness",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Meta package for the core Pi Better Harness extensions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"README.md"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"pi-better-background-tasks": "0.1.
|
|
33
|
-
"pi-better-goal": "0.1.
|
|
34
|
-
"pi-better-subagents": "0.1.
|
|
32
|
+
"pi-better-background-tasks": "0.1.3",
|
|
33
|
+
"pi-better-goal": "0.1.3",
|
|
34
|
+
"pi-better-subagents": "0.1.3"
|
|
35
35
|
}
|
|
36
|
-
}
|
|
36
|
+
}
|