chore: remove taskplane config and example tasks

This commit is contained in:
Dustin Byrne
2026-03-25 22:54:35 -04:00
parent 5ee7cb6e91
commit e2ebafc1cf
8 changed files with 0 additions and 318 deletions

View File

@@ -1,33 +0,0 @@
---
name: supervisor
# tools: read,write,edit,bash,grep,find,ls
# model:
# standalone: true
---
<!-- ═══════════════════════════════════════════════════════════════════
Project-Specific Supervisor Guidance
This file is COMPOSED with the base supervisor prompt shipped in the
taskplane package. Your content here is appended after the base prompt.
The base prompt (maintained by taskplane) handles:
- Supervisor identity and standing orders
- Recovery action classification and autonomy levels
- Audit trail format and rules
- Batch monitoring, failure handling, operator communication
- Orchestrator tool reference (orch_status, orch_pause, etc.)
- Startup checklist and operational knowledge
Add project-specific supervisor rules below. Common examples:
- Run linter before integration ("always run `npm run lint` after merge")
- CI dashboard URL for failure triage
- PR template or label conventions
- Project-specific recovery procedures
- Team notification preferences (Slack, etc.)
- Custom health check commands
To override frontmatter values (tools, model), uncomment and edit above.
To use this file as a FULLY STANDALONE prompt (ignoring the base),
uncomment `standalone: true` above and write the complete prompt below.
═══════════════════════════════════════════════════════════════════ -->

View File

@@ -1,27 +0,0 @@
---
name: task-merger
# tools: read,write,edit,bash,grep,find,ls
# model:
# standalone: true
---
<!-- ═══════════════════════════════════════════════════════════════════
Project-Specific Merger Guidance
This file is COMPOSED with the base task-merger prompt shipped in the
taskplane package. Your content here is appended after the base prompt.
The base prompt (maintained by taskplane) handles:
- Branch merge workflow (fast-forward, 3-way, conflict resolution)
- Post-merge verification command execution
- Result file JSON format and writing conventions
Add project-specific merge rules below. Common examples:
- Post-merge verification commands (build, lint, test)
- Conflict resolution preferences
- Protected files that should never be auto-merged
To override frontmatter values (tools, model), uncomment and edit above.
To use this file as a FULLY STANDALONE prompt (ignoring the base),
uncomment `standalone: true` above and write the complete prompt below.
═══════════════════════════════════════════════════════════════════ -->

View File

@@ -1,30 +0,0 @@
---
name: task-reviewer
# tools: read,write,bash,grep,find,ls
# model:
# standalone: true
---
<!-- ═══════════════════════════════════════════════════════════════════
Project-Specific Reviewer Guidance
This file is COMPOSED with the base task-reviewer prompt shipped in the
taskplane package. Your content here is appended after the base prompt.
The base prompt (maintained by taskplane) handles:
- Plan review and code review workflows
- Verdict format (APPROVE / REVISE)
- Review file output conventions
- Plan granularity guidance
- Persistent reviewer mode (wait_for_review tool workflow)
Add project-specific review criteria below. Common examples:
- Required test coverage thresholds
- Security review checklist items
- Architecture constraints to enforce
- Performance requirements
To override frontmatter values (tools, model), uncomment and edit above.
To use this file as a FULLY STANDALONE prompt (ignoring the base),
uncomment `standalone: true` above and write the complete prompt below.
═══════════════════════════════════════════════════════════════════ -->

View File

@@ -1,34 +0,0 @@
---
name: task-worker
# tools: read,write,edit,bash,grep,find,ls
# model:
# standalone: true
---
<!-- ═══════════════════════════════════════════════════════════════════
Project-Specific Worker Guidance
This file is COMPOSED with the base task-worker prompt shipped in the
taskplane package. Your content here is appended after the base prompt.
The base prompt (maintained by taskplane) handles:
- STATUS.md-first workflow and checkpoint discipline
- Multi-step execution (worker handles all remaining steps per invocation)
- Iteration recovery (context limit → next invocation resumes from STATUS.md)
- Git commit conventions (per-step commits) and .DONE file creation
- Review protocol (inline reviews via review_step tool when available)
- Review response handling
- Test execution strategy (targeted tests during steps, full suite at gate)
- File reading strategy (grep-first for large files, context budget awareness)
Add project-specific rules below. Common examples:
- Preferred package manager (pnpm, yarn, bun)
- Test commands (make test, npm run test:unit)
- Coding standards (linting, formatting)
- Framework-specific patterns
- Environment or deployment constraints
To override frontmatter values (tools, model), uncomment and edit above.
To use this file as a FULLY STANDALONE prompt (ignoring the base),
uncomment `standalone: true` above and write the complete prompt below.
═══════════════════════════════════════════════════════════════════ -->

View File

@@ -1,46 +0,0 @@
# ═══════════════════════════════════════════════════════════════════════
# Parallel Task Orchestrator Configuration — hai
# ═══════════════════════════════════════════════════════════════════════
#
# This file configures the /orch commands (task-orchestrator extension).
# Edit freely — this file is owned by you, not the package.
orchestrator:
max_lanes: 3
worktree_location: "subdirectory"
worktree_prefix: "hai-wt"
batch_id_format: "timestamp"
spawn_mode: "tmux"
tmux_prefix: "hai-orch"
dependencies:
source: "prompt"
cache: true
assignment:
strategy: "affinity-first"
size_weights:
S: 1
M: 2
L: 4
pre_warm:
auto_detect: false
commands: {}
always: []
merge:
model: ""
tools: "read,write,edit,bash,grep,find,ls"
verify: []
order: "fewest-files-first"
failure:
on_task_failure: "skip-dependents"
on_merge_failure: "pause"
stall_timeout: 30
max_worker_minutes: 30
abort_grace_period: 60
monitoring:
poll_interval: 5

View File

@@ -1,35 +0,0 @@
# ═══════════════════════════════════════════════════════════════════════
# Task Runner Configuration — hai
# ═══════════════════════════════════════════════════════════════════════
#
# This file configures the /task command (task-runner extension).
# Edit freely — this file is owned by you, not the package.
# ── Task Areas ────────────────────────────────────────────────────────
# Define where tasks live. Each area has a folder path, ID prefix, and
# a CONTEXT.md file that provides domain context to agents.
task_areas:
general:
path: "taskplane-tasks"
prefix: "TP"
context: "taskplane-tasks/CONTEXT.md"
# ── Reference Docs ────────────────────────────────────────────────────
# Docs that tasks can reference in their "Context to Read First" section.
# Add your project's architecture docs, API specs, etc.
reference_docs: {}
# ── Standards ─────────────────────────────────────────────────────────
# Coding standards and rules. Agents follow these during implementation.
standards: {}
# ── Testing ───────────────────────────────────────────────────────────
# Commands that agents run to verify their work.
testing:
commands:
unit: "pnpm test"
build: "pnpm build"

View File

@@ -1,97 +0,0 @@
{
"configVersion": 1,
"taskRunner": {
"project": {
"name": "hai",
"description": ""
},
"paths": {
"tasks": "taskplane-tasks"
},
"testing": {
"commands": {
"unit": "pnpm test",
"build": "pnpm build"
}
},
"standards": {
"docs": [],
"rules": []
},
"standardsOverrides": {},
"worker": {
"model": "",
"tools": "read,write,edit,bash,grep,find,ls",
"thinking": "off"
},
"reviewer": {
"model": "openai/gpt-5.3-codex",
"tools": "read,bash,grep,find,ls",
"thinking": "on"
},
"context": {
"workerContextWindow": 200000,
"warnPercent": 70,
"killPercent": 85,
"maxWorkerIterations": 20,
"maxReviewCycles": 2,
"noProgressLimit": 3
},
"taskAreas": {
"general": {
"path": "taskplane-tasks",
"prefix": "TP",
"context": "taskplane-tasks/CONTEXT.md"
}
},
"referenceDocs": {},
"neverLoad": [],
"selfDocTargets": {},
"protectedDocs": []
},
"orchestrator": {
"orchestrator": {
"maxLanes": 3,
"worktreeLocation": "subdirectory",
"worktreePrefix": "hai-wt",
"batchIdFormat": "timestamp",
"spawnMode": "tmux",
"tmuxPrefix": "hai-orch",
"operatorId": ""
},
"dependencies": {
"source": "prompt",
"cache": true
},
"assignment": {
"strategy": "affinity-first",
"sizeWeights": {
"S": 1,
"M": 2,
"L": 4
}
},
"preWarm": {
"autoDetect": false,
"commands": {},
"always": []
},
"merge": {
"model": "",
"tools": "read,write,edit,bash,grep,find,ls",
"verify": [],
"order": "fewest-files-first",
"timeoutMinutes": 10
},
"failure": {
"onTaskFailure": "skip-dependents",
"onMergeFailure": "pause",
"stallTimeout": 30,
"maxWorkerMinutes": 30,
"abortGracePeriod": 60
},
"monitoring": {
"pollInterval": 5
}
}
}

View File

@@ -1,16 +0,0 @@
{
"version": "0.18.0",
"installedAt": "2026-03-25T21:43:16.305Z",
"lastUpgraded": "2026-03-25T21:43:16.305Z",
"components": {
"agents": "0.18.0",
"config": "0.18.0"
},
"migrations": {
"applied": {
"add-supervisor-local-template-v1": {
"appliedAt": "2026-03-25T21:43:24.697Z"
}
}
}
}