pi-runline 0.11.5 → 0.12.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.
- package/README.md +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Code mode for [pi](https://github.com/mariozechner/pi).
|
|
4
4
|
|
|
5
|
-
An extension that plugs [runline](https://www.npmjs.com/package/runline) into coding agents. The agent gets one native tool, in-sandbox action discovery, a fuzzy picker for choosing which of the
|
|
5
|
+
An extension that plugs [runline](https://www.npmjs.com/package/runline) into coding agents. The agent gets one native tool, in-sandbox action discovery, a fuzzy picker for choosing which of the 211 built-in plugins to expose, and a guided credential prompt for the ones it hasn't seen before.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -23,7 +23,7 @@ actions.list() // every "plugin.action" path
|
|
|
23
23
|
actions.list("github") // filter to one plugin
|
|
24
24
|
actions.find("create issue") // ranked fuzzy search (MiniSearch)
|
|
25
25
|
actions.describe("github.issue.create")
|
|
26
|
-
// → { path, plugin, action, description, signature, inputs }
|
|
26
|
+
// → { path, plugin, action, access, description, signature, inputs }
|
|
27
27
|
actions.check("github.issue.create", { owner: "a" })
|
|
28
28
|
// → { ok, missing, unknown, typeErrors, signature } (does NOT call the action)
|
|
29
29
|
```
|
|
@@ -38,11 +38,11 @@ return await github.issue.create({ owner: "acme", repo: "api", title: "Bug" });
|
|
|
38
38
|
|
|
39
39
|
## `/runline-plugins` — the picker
|
|
40
40
|
|
|
41
|
-
Typing `/runline-plugins` in a pi session opens a fuzzy multi-select over all
|
|
41
|
+
Typing `/runline-plugins` in a pi session opens a fuzzy multi-select over all 211 built-in plugins.
|
|
42
42
|
|
|
43
43
|
```
|
|
44
44
|
╭─────────────────────────────────────────────╮
|
|
45
|
-
│ runline plugins · 5/
|
|
45
|
+
│ runline plugins · 5/211 enabled │
|
|
46
46
|
│ type to filter · space toggle · ^A toggle │
|
|
47
47
|
│ │
|
|
48
48
|
│ filter ❯ gith │
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-runline",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Code mode for pi",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"keywords": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"lint:fix": "biome check --write extensions/"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"runline": "^0.
|
|
25
|
+
"runline": "^0.12.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@mariozechner/pi-coding-agent": "*",
|