pi-recurse 0.1.0 → 0.1.2

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 (2) hide show
  1. package/README.md +2 -8
  2. package/package.json +15 -15
package/README.md CHANGED
@@ -28,16 +28,10 @@ Thank you to the original `ypi` for pioneering the concept of depth-limited recu
28
28
 
29
29
  ## Installation
30
30
 
31
- ### Via Git URL (Recommended for now)
31
+ ### Via npm (Recommended)
32
32
 
33
33
  ```bash
34
- pi install https://github.com/monotykamary/pi-recurse
35
- ```
36
-
37
- ### Via npm (when published)
38
-
39
- ```bash
40
- pi install pi-recurse
34
+ pi install npm:pi-recurse
41
35
  ```
42
36
 
43
37
  ### Local Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-recurse",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Recursive agent extension for Pi — spawn subagents programmatically with depth guardrails",
5
5
  "type": "module",
6
6
  "author": "Tom X Nguyen",
@@ -32,17 +32,6 @@
32
32
  "README.md",
33
33
  "CHANGELOG.md"
34
34
  ],
35
- "scripts": {
36
- "lint:dead": "knip --no-gitignore",
37
- "test": "vitest run",
38
- "test:watch": "vitest",
39
- "test:coverage": "vitest run --coverage",
40
- "typecheck": "tsc --noEmit",
41
- "build": "tsc",
42
- "release": "standard-version",
43
- "release:dry-run": "standard-version --dry-run",
44
- "postinstall": "simple-git-hooks 2>/dev/null || true"
45
- },
46
35
  "devDependencies": {
47
36
  "@commitlint/cli": "21.0.1",
48
37
  "@commitlint/config-conventional": "21.0.1",
@@ -54,11 +43,11 @@
54
43
  "simple-git-hooks": "2.13.1",
55
44
  "standard-version": "9.5.0",
56
45
  "typescript": "6.0.3",
57
- "vitest": "4.1.7"
46
+ "vitest": "4.1.7",
47
+ "@earendil-works/pi-tui": "0.83.0"
58
48
  },
59
49
  "peerDependencies": {
60
50
  "@earendil-works/pi-coding-agent": ">=0.74.0",
61
- "@earendil-works/pi-tui": ">=0.74.0",
62
51
  "@sinclair/typebox": "0.34.49"
63
52
  },
64
53
  "pi": {
@@ -84,5 +73,16 @@
84
73
  "fast-xml-builder": "1.2.0",
85
74
  "protobufjs": "8.4.0",
86
75
  "ws": "8.20.1"
76
+ },
77
+ "scripts": {
78
+ "lint:dead": "knip --no-gitignore",
79
+ "test": "vitest run",
80
+ "test:watch": "vitest",
81
+ "test:coverage": "vitest run --coverage",
82
+ "typecheck": "tsc --noEmit",
83
+ "build": "tsc",
84
+ "release": "standard-version",
85
+ "release:dry-run": "standard-version --dry-run",
86
+ "postinstall": "simple-git-hooks 2>/dev/null || true"
87
87
  }
88
- }
88
+ }