@dreki-gg/pi-subagent 0.1.0 → 0.1.3

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 (3) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +1 -1
  3. package/package.json +12 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ # @dreki-gg/pi-subagent
2
+
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`0d6fee9`](https://github.com/dreki-gg/pi-extensions/commit/0d6fee9417cbc5874ce5d212b5e6c1f2e42f5192) Thanks [@jalbarrang](https://github.com/jalbarrang)! - Use provider-qualified model IDs in agent frontmatter to work around upstream pi model resolution bug where bare IDs (e.g. `gpt-5.4`) can resolve to the wrong provider (e.g. `azure-openai-responses` instead of `openai`).
8
+
9
+ ## 0.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [`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
14
+
15
+ ## 0.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [`b1e603c`](https://github.com/dreki-gg/pi-extensions/commit/b1e603c9dab1837eed39880c0455b553deab5cb0) Thanks [@jalbarrang](https://github.com/jalbarrang)! - init packages
package/README.md CHANGED
@@ -27,7 +27,7 @@ Create agent files in `~/.pi/agent/agents/` as markdown with YAML frontmatter:
27
27
  name: my-agent
28
28
  description: What this agent does
29
29
  tools: read, grep, find, ls
30
- model: claude-haiku-4-5
30
+ model: anthropic/claude-haiku-4-5
31
31
  ---
32
32
 
33
33
  System prompt for the agent.
package/package.json CHANGED
@@ -1,10 +1,17 @@
1
1
  {
2
2
  "name": "@dreki-gg/pi-subagent",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "Subagent tool for pi — delegate tasks to specialized agents with isolated context windows",
5
- "keywords": ["pi-package"],
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": ["./extensions/subagent"]
23
+ "extensions": [
24
+ "./extensions/subagent"
25
+ ]
17
26
  },
18
27
  "devDependencies": {
19
28
  "@types/node": "24",