@brainervirus/workit-pi 1.0.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 +24 -0
- package/dist/worker.js +8659 -0
- package/dist/workit.js +18336 -0
- package/package.json +45 -0
- package/skills/workit-babysit/SKILL.md +33 -0
- package/skills/workit-behavioral-tdd/SKILL.md +53 -0
- package/skills/workit-blast-radius/SKILL.md +31 -0
- package/skills/workit-challenge/SKILL.md +62 -0
- package/skills/workit-debug/SKILL.md +61 -0
- package/skills/workit-deslop/SKILL.md +36 -0
- package/skills/workit-diagram/SKILL.md +32 -0
- package/skills/workit-green-run/SKILL.md +29 -0
- package/skills/workit-handoff/SKILL.md +43 -0
- package/skills/workit-implement/SKILL.md +46 -0
- package/skills/workit-mockup/SKILL.md +28 -0
- package/skills/workit-plan/SKILL.md +66 -0
- package/skills/workit-review/SKILL.md +60 -0
- package/skills/workit-steer/SKILL.md +32 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# @brainervirus/workit-pi
|
|
2
|
+
|
|
3
|
+
[](https://github.com/BrainerVirus/workit/actions/workflows/ci.yml)
|
|
4
|
+
[](../../LICENSE)
|
|
5
|
+
|
|
6
|
+
Workit native extension for Pi (stock 0.85.1 package contract) — eight core-backed operation tools, fourteen method skills, session/compaction continuity, and a coordinator that supervises fresh reviewer/investigator processes plus explicitly scoped implementers.
|
|
7
|
+
|
|
8
|
+
## Requirements
|
|
9
|
+
|
|
10
|
+
- **Node.js ≥ 24**
|
|
11
|
+
- **Pi coding agent 0.85.1** (peer dependency)
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
Install this package alongside the Pi peer dependency. Pi discovers the
|
|
16
|
+
extension and skills through the `pi` manifest section in `package.json`
|
|
17
|
+
(`./dist/workit.js` plus `./skills`); see the Pi documentation for how it
|
|
18
|
+
resolves extension packages in your setup.
|
|
19
|
+
|
|
20
|
+
## Notes
|
|
21
|
+
|
|
22
|
+
- Only an observed child process may acquire the shared writer; cancellation or restart uncertainty blocks replacement ownership.
|
|
23
|
+
- The extension is a workflow control, not an OS sandbox: shell writes stay agent-guided.
|
|
24
|
+
- Approval uses native `ctx.ui.confirm`, or `needs_input` when headless.
|