taskplane 0.0.1

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.
Files changed (2) hide show
  1. package/README.md +20 -0
  2. package/package.json +11 -0
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # Taskplane
2
+
3
+ AI agent orchestration for [pi](https://github.com/badlogic/pi-mono) — parallel task execution with checkpoint discipline, dependency-aware wave scheduling, and automated merges.
4
+
5
+ **⚠️ Under active development.** Full package coming soon.
6
+
7
+ ## What Taskplane Will Provide
8
+
9
+ - **Task Runner** (`/task`) — Autonomous single-task execution with fresh-context worker loops and cross-model reviews
10
+ - **Task Orchestrator** (`/orch`) — Parallel multi-task execution using git worktrees, dependency-aware wave scheduling, and automated merges
11
+ - **Web Dashboard** — Live browser-based monitoring of batch execution
12
+ - **Task Management** — Structured task creation with PROMPT.md/STATUS.md templates
13
+ - **Themes** — 11 terminal themes for pi
14
+
15
+ ## Installation (Coming Soon)
16
+
17
+ ```bash
18
+ pi install npm:taskplane
19
+ taskplane init
20
+ ```
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "taskplane",
3
+ "version": "0.0.1",
4
+ "description": "AI agent orchestration for pi — parallel task execution with checkpoint discipline",
5
+ "keywords": ["pi-package", "ai", "agent", "orchestration", "task-runner", "parallel"],
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/HenryLach/taskplane.git"
10
+ }
11
+ }