pi-interactive-shell 0.3.0 → 0.3.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/README.md +3 -3
- package/package.json +2 -2
- package/scripts/install.js +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Interactive Shell
|
|
1
|
+
# Pi Interactive Shell Overlay
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
An extension for [pi-coding-agent](https://github.com/badlogic/pi-mono/) that runs AI coding agents (Claude Code, Gemini CLI, Codex, Aider, etc.) as **foreground subagents** inside a TUI overlay. The user sees the agent working in real-time and can take over control at any time.
|
|
4
4
|
|
|
5
5
|
This is distinct from **background subagents** (the `subagent` tool) which run pi instances invisibly.
|
|
6
6
|
|
|
@@ -16,7 +16,7 @@ This is distinct from **background subagents** (the `subagent` tool) which run p
|
|
|
16
16
|
## Install
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npx pi-interactive-shell
|
|
19
|
+
npx pi-interactive-shell
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
This installs the extension to `~/.pi/agent/extensions/interactive-shell/`, runs `npm install` for dependencies, and creates the skill symlink.
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-interactive-shell",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Run AI coding agents as foreground subagents in pi TUI overlays with hands-free monitoring",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"pi-interactive-shell
|
|
7
|
+
"pi-interactive-shell": "./scripts/install.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"index.ts",
|
package/scripts/install.js
CHANGED
|
File without changes
|