taskplane 0.1.14 → 0.1.15
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 +0 -4
- package/extensions/taskplane/engine.ts +771 -758
- package/extensions/taskplane/execution.ts +4 -2
- package/extensions/taskplane/git.ts +25 -7
- package/extensions/taskplane/merge.ts +18 -16
- package/extensions/taskplane/persistence.ts +1136 -1121
- package/extensions/taskplane/resume.ts +1096 -1092
- package/extensions/taskplane/types.ts +5 -2
- package/extensions/taskplane/waves.ts +894 -900
- package/extensions/taskplane/worktree.ts +6 -5
- package/package.json +1 -1
- package/templates/config/task-orchestrator.yaml +86 -89
- package/templates/config/task-runner.yaml +95 -99
package/bin/taskplane.mjs
CHANGED
|
@@ -212,7 +212,6 @@ orchestrator:
|
|
|
212
212
|
max_lanes: ${vars.max_lanes}
|
|
213
213
|
worktree_location: "subdirectory"
|
|
214
214
|
worktree_prefix: "${vars.worktree_prefix}"
|
|
215
|
-
integration_branch: "${vars.integration_branch}"
|
|
216
215
|
batch_id_format: "timestamp"
|
|
217
216
|
spawn_mode: "subprocess"
|
|
218
217
|
tmux_prefix: "${vars.tmux_prefix}"
|
|
@@ -707,7 +706,6 @@ function getPresetVars(preset, projectRoot, tasksRootOverride = null) {
|
|
|
707
706
|
const { test: test_cmd, build: build_cmd } = detectStack(projectRoot);
|
|
708
707
|
return {
|
|
709
708
|
project_name: dirName,
|
|
710
|
-
integration_branch: "main",
|
|
711
709
|
max_lanes: 3,
|
|
712
710
|
worktree_prefix: `${slug}-wt`,
|
|
713
711
|
tmux_prefix: `${slug}-orch`,
|
|
@@ -725,7 +723,6 @@ async function getInteractiveVars(projectRoot, tasksRootOverride = null) {
|
|
|
725
723
|
const detected = detectStack(projectRoot);
|
|
726
724
|
|
|
727
725
|
const project_name = await ask("Project name", dirName);
|
|
728
|
-
const integration_branch = await ask("Default branch (fallback — orchestrator uses your current branch at runtime)", "main");
|
|
729
726
|
const max_lanes = parseInt(await ask("Max parallel lanes", "3")) || 3;
|
|
730
727
|
const tasks_root = tasksRootOverride || await ask("Tasks directory", "taskplane-tasks");
|
|
731
728
|
const default_area = await ask("Default area name", "general");
|
|
@@ -736,7 +733,6 @@ async function getInteractiveVars(projectRoot, tasksRootOverride = null) {
|
|
|
736
733
|
const slug = slugify(project_name);
|
|
737
734
|
return {
|
|
738
735
|
project_name,
|
|
739
|
-
integration_branch,
|
|
740
736
|
max_lanes,
|
|
741
737
|
worktree_prefix: `${slug}-wt`,
|
|
742
738
|
tmux_prefix: `${slug}-orch`,
|