pi-extensions 0.1.10 → 0.1.12

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.
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "todo-app-plan",
3
+ "taskFile": ".ralph/todo-app-plan.md",
4
+ "iteration": 1,
5
+ "maxIterations": 50,
6
+ "itemsPerIteration": 3,
7
+ "reflectEvery": 10,
8
+ "reflectInstructions": "REFLECTION CHECKPOINT\n\nPause and reflect on your progress:\n1. What has been accomplished so far?\n2. What's working well?\n3. What's not working or blocking progress?\n4. Should the approach be adjusted?\n5. What are the next priorities?\n\nUpdate the task file with your reflection, then continue working.",
9
+ "active": false,
10
+ "status": "completed",
11
+ "startedAt": "2026-01-26T17:22:57.476Z",
12
+ "lastReflectionAt": 0,
13
+ "completedAt": "2026-01-26T17:23:25.779Z"
14
+ }
package/README.md CHANGED
@@ -6,7 +6,7 @@ Personal extensions for the [Pi coding agent](https://github.com/badlogic/pi-mon
6
6
 
7
7
  | Extension | Description |
8
8
  |-----------|-------------|
9
- | [/files](files-widget/) | In-terminal file browser and viewer. Navigate files, view diffs, select code, send comments to agent - all without leaving Pi |
9
+ | [/files](files-widget/) | In-terminal file browser and viewer widget. Navigate files, view diffs, select code, send comments to agent - without leaving Pi, and without interrupting your agent |
10
10
  | [tab-status](tab-status/) | Manage as many parallel sessions as your mind can handle. Terminal tab indicators for <br>✅ done / 🚧 stuck / 🛑 timed out |
11
11
  | [ralph-wiggum](ralph-wiggum/) | Run arbitrarily-long tasks without diluting model attention. Flat version without subagents like [ralph-loop](https://github.com/anthropics/claude-plugins-official/tree/main/plugins/ralph-loop) |
12
12
  | [agent-guidance](agent-guidance/) | Switch between Claude/Codex/Gemini with model-specific guidance (CLAUDE.md, CODEX.md, GEMINI.md) |
@@ -1,4 +1,7 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.2 - 2026-01-26
4
+ - Add demo video to README.
5
+
3
6
  ## 0.1.0 - 2026-01-13
4
7
  - Initial release.
package/arcade/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # arcade
2
2
 
3
+ [**▶️ Watch demo**](assets/demo.mp4)
4
+
3
5
  [Snake](https://github.com/badlogic/pi-mono/blob/main/packages/coding-agent/examples/extensions/snake.ts) is cool, but have you tried:
4
6
 
5
7
  - **sPIce-invaders** (`/spice-invaders`) - type `clawd` for a special challenge that gets harder every level
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmustier/pi-arcade",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Arcade minigames for the Pi coding agent.",
5
5
  "license": "MIT",
6
6
  "author": "Thomas Mustier",
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.2 - 2026-01-26
4
+ - Add a src entry point so loading `code-actions/src` works with pi extension discovery.
5
+
3
6
  ## 0.1.1 - 2026-01-26
4
7
  - Move extension source files into `code-actions/src` for clearer organization.
5
8
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmustier/pi-code-actions",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Pick code blocks or inline snippets from recent assistant messages to copy or insert.",
5
5
  "license": "MIT",
6
6
  "author": "Thomas Mustier",
@@ -0,0 +1 @@
1
+ export { default } from "../index";