taskplane 0.1.0 → 0.1.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.
- package/bin/taskplane.mjs +3 -3
- package/package.json +5 -4
package/bin/taskplane.mjs
CHANGED
|
@@ -398,13 +398,13 @@ async function getInteractiveVars(projectRoot) {
|
|
|
398
398
|
const detected = detectStack(projectRoot);
|
|
399
399
|
|
|
400
400
|
const project_name = await ask("Project name", dirName);
|
|
401
|
-
const integration_branch = await ask("
|
|
401
|
+
const integration_branch = await ask("Default branch (fallback — orchestrator uses your current branch at runtime)", "main");
|
|
402
402
|
const max_lanes = parseInt(await ask("Max parallel lanes", "3")) || 3;
|
|
403
403
|
const tasks_root = await ask("Tasks directory", "taskplane-tasks");
|
|
404
404
|
const default_area = await ask("Default area name", "general");
|
|
405
405
|
const default_prefix = await ask("Task ID prefix", "TP");
|
|
406
|
-
const test_cmd = await ask("Test command", detected.test || "");
|
|
407
|
-
const build_cmd = await ask("Build command", detected.build || "");
|
|
406
|
+
const test_cmd = await ask("Test command (agents run this to verify work — blank to skip)", detected.test || "");
|
|
407
|
+
const build_cmd = await ask("Build command (agents run this after tests — blank to skip)", detected.build || "");
|
|
408
408
|
|
|
409
409
|
return {
|
|
410
410
|
project_name,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taskplane",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "AI agent orchestration for pi — parallel task execution with checkpoint discipline",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -11,11 +11,12 @@
|
|
|
11
11
|
"parallel"
|
|
12
12
|
],
|
|
13
13
|
"bin": {
|
|
14
|
-
"taskplane": "
|
|
14
|
+
"taskplane": "bin/taskplane.mjs"
|
|
15
15
|
},
|
|
16
16
|
"pi": {
|
|
17
17
|
"extensions": [
|
|
18
|
-
"./extensions"
|
|
18
|
+
"./extensions/task-runner.ts",
|
|
19
|
+
"./extensions/task-orchestrator.ts"
|
|
19
20
|
],
|
|
20
21
|
"skills": [
|
|
21
22
|
"./skills"
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"license": "MIT",
|
|
47
48
|
"repository": {
|
|
48
49
|
"type": "git",
|
|
49
|
-
"url": "https://github.com/HenryLach/taskplane.git"
|
|
50
|
+
"url": "git+https://github.com/HenryLach/taskplane.git"
|
|
50
51
|
},
|
|
51
52
|
"homepage": "https://github.com/HenryLach/taskplane#readme",
|
|
52
53
|
"bugs": {
|