@agnishc/edb-agent-steer 0.1.0 → 0.4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/package.json +24 -7
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [0.2.0] - 2026-04-29
4
4
 
5
5
  ### Added
6
6
  - Initial release: steer / queue / discard / edit prompt for mid-turn messages
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "@agnishc/edb-agent-steer",
3
- "version": "0.1.0",
3
+ "version": "0.4.0",
4
4
  "description": "Pi extension: intercepts mid-turn messages with a steer / queue / discard / edit prompt",
5
- "keywords": ["pi-package", "pi-extension", "edb"],
5
+ "keywords": [
6
+ "pi-package",
7
+ "pi-extension",
8
+ "edb"
9
+ ],
6
10
  "type": "module",
7
11
  "license": "MIT",
8
12
  "author": "Agnish Chakraborty",
@@ -12,12 +16,25 @@
12
16
  "directory": "packages/edb-agent-steer"
13
17
  },
14
18
  "homepage": "https://github.com/agnishcc/pi-extention-monorepo/tree/main/packages/edb-agent-steer#readme",
15
- "bugs": { "url": "https://github.com/agnishcc/pi-extention-monorepo/issues" },
16
- "publishConfig": { "access": "public" },
17
- "scripts": { "test": "vitest run" },
18
- "files": ["src", "README.md", "LICENSE", "CHANGELOG.md"],
19
+ "bugs": {
20
+ "url": "https://github.com/agnishcc/pi-extention-monorepo/issues"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "scripts": {
26
+ "test": "vitest run"
27
+ },
28
+ "files": [
29
+ "src",
30
+ "README.md",
31
+ "LICENSE",
32
+ "CHANGELOG.md"
33
+ ],
19
34
  "pi": {
20
- "extensions": ["./src/index.ts"]
35
+ "extensions": [
36
+ "./src/index.ts"
37
+ ]
21
38
  },
22
39
  "peerDependencies": {
23
40
  "@mariozechner/pi-coding-agent": "*",