@topce/pizx 0.1.0 → 0.3.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 +261 -20
- package/dist/cli.js +681 -722
- package/dist/cli.js.map +4 -4
- package/dist/index.js +673 -715
- package/dist/index.js.map +4 -4
- package/package.json +13 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topce/pizx",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "zx fork with native Pi AI integration — π (pi-ai), Π (pi-coding-agent), and agent pattern template tags (Ρ Φ Σ Δ Λ Ψ Ω)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,8 +32,10 @@
|
|
|
32
32
|
"build:dts": "tsc --project tsconfig.build.json",
|
|
33
33
|
"dev": "node scripts/build.mjs --watch",
|
|
34
34
|
"check": "biome check --write src/",
|
|
35
|
+
"lint:fix": "biome lint --write src/",
|
|
35
36
|
"test": "vitest --run",
|
|
36
37
|
"test:integration": "PIZX_INTEGRATION=1 vitest --run",
|
|
38
|
+
"test:coverage": "vitest --run --coverage",
|
|
37
39
|
"prepublishOnly": "npm run build",
|
|
38
40
|
"example:hello": "node dist/cli.js examples/hello-pizx.mjs",
|
|
39
41
|
"example:pi": "node dist/cli.js examples/basic-pi.mjs",
|
|
@@ -47,8 +49,7 @@
|
|
|
47
49
|
"example:pattern-pipeline": "node dist/cli.js examples/pattern-pipeline.mjs",
|
|
48
50
|
"example:pattern-critique": "node dist/cli.js examples/pattern-critique.mjs",
|
|
49
51
|
"example:pattern-orchestrator": "node dist/cli.js examples/pattern-orchestrator.mjs",
|
|
50
|
-
"example:all": "npm run example:hello && npm run example:pi && npm run example:Pi && npm run example:quick && npm run example:ralph && npm run example:pattern-ralph && npm run example:pattern-fleet && npm run example:pattern-subagent && npm run example:pattern-debate && npm run example:pattern-pipeline && npm run example:pattern-critique && npm run example:pattern-orchestrator && npm run example:pattern-thread && npm run example:pattern-memory && npm run example:pattern-broadcast && npm run example:pattern-adaptive && npm run example:pattern-graph && npm run example:pattern-nu && npm run example:pattern-chi && npm run example:pattern-tau && npm run example:five-whys"
|
|
51
|
-
,
|
|
52
|
+
"example:all": "npm run example:hello && npm run example:pi && npm run example:Pi && npm run example:quick && npm run example:ralph && npm run example:pattern-ralph && npm run example:pattern-fleet && npm run example:pattern-subagent && npm run example:pattern-debate && npm run example:pattern-pipeline && npm run example:pattern-critique && npm run example:pattern-orchestrator && npm run example:pattern-thread && npm run example:pattern-memory && npm run example:pattern-broadcast && npm run example:pattern-adaptive && npm run example:pattern-graph && npm run example:pattern-nu && npm run example:pattern-chi && npm run example:pattern-tau && npm run example:five-whys",
|
|
52
53
|
"example:pattern-thread": "node dist/cli.js examples/pattern-thread.mjs",
|
|
53
54
|
"example:pattern-memory": "node dist/cli.js examples/pattern-memory.mjs",
|
|
54
55
|
"example:pattern-broadcast": "node dist/cli.js examples/pattern-broadcast.mjs",
|
|
@@ -57,8 +58,12 @@
|
|
|
57
58
|
"example:pattern-nu": "node dist/cli.js examples/pattern-nu.mjs",
|
|
58
59
|
"example:pattern-chi": "node dist/cli.js examples/pattern-chi.mjs",
|
|
59
60
|
"example:pattern-tau": "node dist/cli.js examples/pattern-tau.mjs",
|
|
60
|
-
"example:five-whys": "node dist/cli.js examples/pattern-five-whys.mjs"
|
|
61
|
-
|
|
61
|
+
"example:five-whys": "node dist/cli.js examples/pattern-five-whys.mjs",
|
|
62
|
+
"test:quality": "node dist/cli.js examples/test-quality.mjs",
|
|
63
|
+
"test:confirm": "node dist/cli.js examples/test-confirm.mjs",
|
|
64
|
+
"test:composition-fleet": "node dist/cli.js examples/test-composition-fleet.mjs",
|
|
65
|
+
"test:composition-pipeline": "node dist/cli.js examples/test-composition-pipeline.mjs",
|
|
66
|
+
"test:new-features": "npm run test:quality && npm run test:confirm && npm run test:composition-fleet && npm run test:composition-pipeline"
|
|
62
67
|
},
|
|
63
68
|
"keywords": [
|
|
64
69
|
"zx",
|
|
@@ -82,13 +87,14 @@
|
|
|
82
87
|
"node": ">=22.19.0"
|
|
83
88
|
},
|
|
84
89
|
"dependencies": {
|
|
85
|
-
"@earendil-works/pi-ai": "0.
|
|
86
|
-
"@earendil-works/pi-coding-agent": "0.
|
|
90
|
+
"@earendil-works/pi-ai": "0.79.1",
|
|
91
|
+
"@earendil-works/pi-coding-agent": "0.79.1",
|
|
87
92
|
"zx": "8.8.5"
|
|
88
93
|
},
|
|
89
94
|
"devDependencies": {
|
|
90
95
|
"@biomejs/biome": "2.4.16",
|
|
91
96
|
"@types/node": "25.9.2",
|
|
97
|
+
"@vitest/coverage-v8": "^4.1.8",
|
|
92
98
|
"esbuild": "0.28.0",
|
|
93
99
|
"typescript": "6.0.3",
|
|
94
100
|
"vitest": "4.1.8"
|