@agnishc/edb-agent-steer 0.5.1 → 0.6.1
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 +5 -0
- package/package.json +3 -3
- package/src/component.ts +1 -1
- package/src/index.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agnishc/edb-agent-steer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Pi extension: intercepts mid-turn messages with a steer / queue / discard / edit prompt",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
]
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@
|
|
41
|
-
"@
|
|
40
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
41
|
+
"@earendil-works/pi-tui": "*"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/src/component.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { matchesKey, truncateToWidth } from "@
|
|
1
|
+
import { matchesKey, truncateToWidth } from "@earendil-works/pi-tui";
|
|
2
2
|
import type { SteerChoice } from "./types";
|
|
3
3
|
|
|
4
4
|
// ── Component ──────────────────────────────────────────────────────────────────
|
package/src/index.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* The /steer <text> slash command skips the prompt entirely and always steers directly.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
import type { ExtensionAPI } from "@
|
|
17
|
+
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
18
18
|
import { SteerPromptComponent } from "./component";
|
|
19
19
|
import type { SteerChoice } from "./types";
|
|
20
20
|
|