refactor: remove context_signature field from task JSON schema

- Remove context_signature field from meta object
- Simplify meta object to focus on essential fields
- Keep execution_group for parallelization support

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
catlog22
2025-11-23 19:33:29 +08:00
parent c0c894ced1
commit a7a654805c

View File

@@ -162,8 +162,7 @@ Generate individual `.task/IMPL-*.json` files with:
"meta": {
"type": "feature|bugfix|refactor|test-gen|test-fix|docs",
"agent": "@code-developer|@action-planning-agent|@test-fix-agent|@universal-executor",
"execution_group": "parallel-abc123|null",
"context_signature": "hash-value"
"execution_group": "parallel-abc123|null"
}
}
```
@@ -172,7 +171,6 @@ Generate individual `.task/IMPL-*.json` files with:
- `type`: Task category - `feature` (new functionality), `bugfix` (fix defects), `refactor` (restructure code), `test-gen` (generate tests), `test-fix` (fix failing tests), `docs` (documentation)
- `agent`: Assigned agent for execution
- `execution_group`: Parallelization group ID (tasks with same ID can run concurrently) or `null` for sequential tasks
- `context_signature`: Hash computed from task's context (focus_paths + artifacts) for context-based grouping/merging
#### Context Object
```json