@diegopetrucci/pi-extensions 0.1.2 → 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.
package/README.md
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# pi-extensions
|
|
2
2
|
|
|
3
|
-

|
|
4
|
-
|
|
5
3
|
A collection of [pi](https://github.com/badlogic/pi-mono) agent extensions I made.
|
|
6
4
|
|
|
7
5
|
## Included extensions
|
|
@@ -23,7 +21,7 @@ pi install git:github.com/diegopetrucci/pi-extensions
|
|
|
23
21
|
Or pin to a tagged version:
|
|
24
22
|
|
|
25
23
|
```bash
|
|
26
|
-
pi install git:github.com/diegopetrucci/pi-extensions@v0.1.
|
|
24
|
+
pi install git:github.com/diegopetrucci/pi-extensions@v0.1.3
|
|
27
25
|
```
|
|
28
26
|
|
|
29
27
|
### npm
|
|
Binary file
|
|
Binary file
|
|
@@ -17,14 +17,14 @@ On wide terminals it renders two lines:
|
|
|
17
17
|
|
|
18
18
|
```text
|
|
19
19
|
<git-branch> <repo-name>
|
|
20
|
-
<context-%> <model>
|
|
20
|
+
<context-%> <model> <thinking>
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Example:
|
|
24
24
|
|
|
25
25
|
```text
|
|
26
26
|
fix/remove-detached-image-tasks SendItToMy
|
|
27
|
-
44.1% gpt-5.4
|
|
27
|
+
44.1% gpt-5.4 high
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
On narrow terminals it falls back to one item per line.
|
|
@@ -19,7 +19,7 @@ export default function (pi: ExtensionAPI) {
|
|
|
19
19
|
|
|
20
20
|
const model = ctx.model?.id ?? "no-model";
|
|
21
21
|
const thinking = pi.getThinkingLevel();
|
|
22
|
-
const modelText = thinking === "off" ? model : `${model}
|
|
22
|
+
const modelText = thinking === "off" ? model : `${model} ${thinking}`;
|
|
23
23
|
|
|
24
24
|
const branchStyled = theme.fg("dim", branch);
|
|
25
25
|
const repoStyled = theme.fg("dim", repo);
|
package/package.json
CHANGED