pi-better-harness 0.1.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.
- package/README.md +56 -0
- package/package.json +35 -0
package/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# pi-better-harness
|
|
2
|
+
|
|
3
|
+
Meta package for the core Pi Better Harness extensions.
|
|
4
|
+
|
|
5
|
+
Install it once to load the background-work tools used most often in Pi:
|
|
6
|
+
|
|
7
|
+
- `pi-better-subagents` for detached subagent runs and completion callbacks
|
|
8
|
+
- `pi-better-background-tasks` for durable shell tasks and command watchers
|
|
9
|
+
- `pi-better-goal` for current-goal tracking and background-aware continuation
|
|
10
|
+
|
|
11
|
+
`pi-better-read-aloud` is intentionally not included yet.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
pi install npm:pi-better-harness
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
For a temporary run without saving the package to Pi settings:
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
pi -e npm:pi-better-harness
|
|
23
|
+
```
|
|
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
|
+
## Install Individual Packages
|
|
38
|
+
|
|
39
|
+
Use these when you want only one part of the harness:
|
|
40
|
+
|
|
41
|
+
```sh
|
|
42
|
+
pi install npm:pi-better-subagents
|
|
43
|
+
pi install npm:pi-better-background-tasks
|
|
44
|
+
pi install npm:pi-better-goal
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Update Or Remove
|
|
48
|
+
|
|
49
|
+
```sh
|
|
50
|
+
pi update npm:pi-better-harness
|
|
51
|
+
pi remove npm:pi-better-harness
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Source
|
|
55
|
+
|
|
56
|
+
Repository: https://github.com/1aboveio/pi-better-harness
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pi-better-harness",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Meta package for the core Pi Better Harness extensions.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"pi-package",
|
|
8
|
+
"pi-extension",
|
|
9
|
+
"pi-better-harness"
|
|
10
|
+
],
|
|
11
|
+
"pi": {
|
|
12
|
+
"extensions": [
|
|
13
|
+
"node_modules/pi-better-subagents/index.ts",
|
|
14
|
+
"node_modules/pi-better-background-tasks/src/index.ts",
|
|
15
|
+
"node_modules/pi-better-goal/src/index.ts"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/1aboveio/pi-better-harness.git",
|
|
21
|
+
"directory": "packages/pi-better-harness"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/1aboveio/pi-better-harness/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/1aboveio/pi-better-harness/tree/main/packages/pi-better-harness#readme",
|
|
27
|
+
"files": [
|
|
28
|
+
"README.md"
|
|
29
|
+
],
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"pi-better-background-tasks": "0.1.0",
|
|
32
|
+
"pi-better-goal": "0.1.0",
|
|
33
|
+
"pi-better-subagents": "0.1.0"
|
|
34
|
+
}
|
|
35
|
+
}
|