@dreki-gg/pi-subagent 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.
- package/CHANGELOG.md +13 -0
- package/package.json +12 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @dreki-gg/pi-subagent
|
|
2
|
+
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`53809f8`](https://github.com/dreki-gg/pi-extensions/commit/53809f83cdf054d1eb58c577903a1d2619a2a654) Thanks [@jalbarrang](https://github.com/jalbarrang)! - Add repository.url to package.json for npm provenance verification
|
|
8
|
+
|
|
9
|
+
## 0.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`b1e603c`](https://github.com/dreki-gg/pi-extensions/commit/b1e603c9dab1837eed39880c0455b553deab5cb0) Thanks [@jalbarrang](https://github.com/jalbarrang)! - init packages
|
package/package.json
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dreki-gg/pi-subagent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Subagent tool for pi — delegate tasks to specialized agents with isolated context windows",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package"
|
|
7
|
+
],
|
|
6
8
|
"author": "Juan Albarran <jalbarrandev@gmail.com>",
|
|
7
9
|
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/dreki-gg/pi-extensions",
|
|
13
|
+
"directory": "packages/subagent"
|
|
14
|
+
},
|
|
8
15
|
"type": "module",
|
|
9
16
|
"scripts": {
|
|
10
17
|
"typecheck": "tsc --noEmit",
|
|
@@ -13,7 +20,9 @@
|
|
|
13
20
|
"format:check": "oxfmt --check extensions"
|
|
14
21
|
},
|
|
15
22
|
"pi": {
|
|
16
|
-
"extensions": [
|
|
23
|
+
"extensions": [
|
|
24
|
+
"./extensions/subagent"
|
|
25
|
+
]
|
|
17
26
|
},
|
|
18
27
|
"devDependencies": {
|
|
19
28
|
"@types/node": "24",
|