From a7a654805c2d324cd5c4cfca165d1c524d5711cb Mon Sep 17 00:00:00 2001 From: catlog22 Date: Sun, 23 Nov 2025 19:33:29 +0800 Subject: [PATCH] refactor: remove context_signature field from task JSON schema MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- .claude/agents/action-planning-agent.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.claude/agents/action-planning-agent.md b/.claude/agents/action-planning-agent.md index ffd12368..ac96b036 100644 --- a/.claude/agents/action-planning-agent.md +++ b/.claude/agents/action-planning-agent.md @@ -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