From e1f2fc72d9c589b29e0fd8755d33cb3985fd16e5 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Mon, 29 Dec 2025 19:45:43 +0800 Subject: [PATCH] refactor(schema): remove assigned_executor from queue-schema MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Queue produces execution plan without executor assignment. Executor is determined at runtime by /issue:execute command. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .claude/workflows/cli-templates/schemas/queue-schema.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.claude/workflows/cli-templates/schemas/queue-schema.json b/.claude/workflows/cli-templates/schemas/queue-schema.json index 3f38eb9b..938f4d83 100644 --- a/.claude/workflows/cli-templates/schemas/queue-schema.json +++ b/.claude/workflows/cli-templates/schemas/queue-schema.json @@ -120,10 +120,6 @@ "maximum": 1, "description": "Semantic importance score (0.0-1.0)" }, - "assigned_executor": { - "type": "string", - "enum": ["codex", "gemini", "agent"] - }, "queued_at": { "type": "string", "format": "date-time" }, "started_at": { "type": "string", "format": "date-time" }, "completed_at": { "type": "string", "format": "date-time" }, @@ -160,7 +156,6 @@ "execution_group": { "type": "string" }, "depends_on": { "type": "array", "items": { "type": "string" } }, "semantic_priority": { "type": "number", "minimum": 0, "maximum": 1 }, - "assigned_executor": { "type": "string", "enum": ["codex", "gemini", "agent"] }, "queued_at": { "type": "string", "format": "date-time" }, "started_at": { "type": "string", "format": "date-time" }, "completed_at": { "type": "string", "format": "date-time" },