pi-extensions 0.1.11 → 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.
- package/.ralph/todo-app-plan.state.json +14 -0
- package/README.md +1 -1
- package/arcade/CHANGELOG.md +3 -0
- package/arcade/README.md +2 -0
- package/arcade/assets/demo.mp4 +0 -0
- package/arcade/package.json +1 -1
- package/control/control.ts +1397 -0
- package/files-widget/CHANGELOG.md +8 -0
- package/files-widget/README.md +1 -1
- package/files-widget/file-tree.ts +41 -2
- package/files-widget/file-viewer.ts +178 -11
- package/files-widget/package.json +5 -1
- package/package.json +1 -1
- package/review/review.ts +807 -0
|
@@ -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 -
|
|
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) |
|
package/arcade/CHANGELOG.md
CHANGED
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
|