@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
- ![pi-extensions banner](https://raw.githubusercontent.com/diegopetrucci/pi-extensions/main/assets/social-preview.png)
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.2
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> <thinking>
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 high
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} ${thinking}`;
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);
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-minimal-footer",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "A minimal custom footer for pi.",
5
5
  "keywords": ["pi-package", "pi", "terminal", "footer"],
6
6
  "license": "MIT",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-extensions",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "A collection of pi extensions, starting with a minimal custom footer.",
5
5
  "keywords": ["pi-package", "pi", "terminal", "agent"],
6
6
  "license": "MIT",