task-forest
GitHub维护工作区任务森林或DAG,支持初始化、更新、进度追踪及HTML导出。通过Python脚本管理任务依赖与提案,确保结构清晰且可移植。
Trigger Scenarios
Install
npx skills add dongshuyan/compass-skills --skill task-forest -g -y
SKILL.md
Frontmatter
{
"name": "task-forest",
"description": "Maintains a repo-local task forest or task DAG for the current workspace. Use when the user asks to initialize or update a task forest, close a session, summarize evolving project work, align a request with a global goal, track progress\/history\/deviations\/todos, save or apply a task proposal, or export the client-readable task-forest HTML. Do not use for executing the tracked tasks themselves or for generic HTML work."
}
Task Forest
Purpose
Maintain the current workspace's task structure, proposals, history, and progress. Produce one standalone HTML deliverable that a first-time reader can understand without opening another task list or internal file.
Use the user's language for task content, proposals, reports, and HTML. Default to Chinese when unknown.
Portability
This skill is agent-agnostic. Install the whole task-forest directory in any host-supported skill location, then resolve scripts, references, and assets from the directory containing this SKILL.md. Do not assume a specific agent name, skill root, home-directory layout, shell, path separator, or operating system.
Use an available Python 3 launcher on the host (python3, python, or py -3). The scripts use the Python standard library and support macOS, Linux, and Windows. To label task history with the calling agent, set COMPASS_AGENT_NAME or AGENT_NAME, or pass --actor; otherwise the neutral value agent is used.
Core Rules
- Read and write task-forest data only through
scripts/task_forest.py; never hand-edit.agent-workbench/task-forest/canonical files. - Use one primary
child_ofparent per node,contributes_tofor secondary ownership, anddepends_onfor prerequisites. - Save graph changes as a proposal and wait for user confirmation before
proposal-apply --yes. - Keep low-confidence inference in a question or proposal. Record material execution drift as a deviation.
- Write visible task titles and purposes in plain language. A reader must understand what the task delivers, why it exists, and what has been completed without knowing internal codes such as
P04or reading another file. - Export one HTML surface:
exports/task-forest.html. It showsdone,in_progress, and their necessarychild_ofancestors, with history playback. Do not expose internal discussions, evidence, queues, filesystem paths, sessions, or proposal content in the HTML. - Keep HTML interactions read-only. Formal changes always return through the proposal workflow.
Main Workflow
When initializing, updating, or closing a session:
- Run
init. - Read
list --jsonandtodo --json. - Identify the global goal served by the session and the task structure that must remain visible.
- When the workspace has an authoritative task list, preserve its meaningful
goal -> phase -> module -> concrete taskhierarchy and sibling order for everydoneorin_progresstask. Include necessary ancestors, omit wholly unstarted branches, and attach extra fixes under the feature they improve. Never collapse several phases into one node or rely on edge creation order. If one sibling needsdisplay_order, set a unique numeric value for the whole sibling group; partial, duplicate, or invalid values must fail validation. - Make every visible node independently understandable. Use a clear title plus
summaryorpurpose; add outcomes or acceptance criteria when they clarify delivery. Treat internal codes as secondary labels, not as the task name. - Show and save a proposal. Do not apply it before confirmation.
- After confirmation, run
proposal-apply --yes,validate, andexport. - Return the proposal path and the single HTML path.
Use $task-clarifier when user intent or the target global goal is genuinely unclear.
Commands
Resolve <skill-dir> from this file and use an available Python 3 executable. The examples use python3; substitute the host's available launcher when needed.
python3 <skill-dir>/scripts/task_forest.py init
python3 <skill-dir>/scripts/task_forest.py list --json
python3 <skill-dir>/scripts/task_forest.py todo --json
python3 <skill-dir>/scripts/task_forest.py proposal-save --proposal-file /path/to/proposal.json
python3 <skill-dir>/scripts/task_forest.py proposal-apply <proposal-id> --yes
python3 <skill-dir>/scripts/task_forest.py validate
python3 <skill-dir>/scripts/task_forest.py export
The default workspace is the current directory. Use --workspace only when another workspace is explicit. Use --root only when the caller explicitly selected a non-default task-forest root.
Outputs
The user-facing artifacts are:
proposals/<proposal_id>.json
exports/task-forest.html
The exporter also maintains three internal compatibility files for gap-router and local-agent-control-room:
exports/task-forest.graph.json
exports/task-forest.todos.json
exports/task-forest.timeline.json
Do not present those JSON files as delivery artifacts unless the user explicitly asks for machine-readable data.
References and Validation
- Read
references/schema.mdfor node fields, proposal actions, and canonical invariants. - Read
references/goal-alignment.mdonly when judging global-goal fit or competing candidate plans. - Read
references/node-types.mdonly when node classification is unclear. - Read
references/concurrency.mdbefore resolving stale proposals or concurrent writes. - Read
references/html-visualization-contract.mdwhen changing or validating the HTML. - Read
references/integration-contract.mdonly when changing JSON or registry compatibility.
For HTML or exporter changes, run:
python3 <skill-dir>/scripts/validate_task_forest_export.py --skill-dir <skill-dir>
The HTML remains a derived, read-only view. Canonical task data and proposal history stay repo-local.
Version History
-
5456143
Current 2026-08-12 16:51
修复了任务森林排序的确定性,确保兄弟节点顺序与权威任务阶段一致,拒绝部分display_order更新,并为旧版图提供安全回退。
- 9e245e2 2026-07-05 12:09


