mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
- Implemented a new CLI Stream Viewer to display real-time output from CLI executions. - Added state management for CLI executions, including handling of start, output, completion, and errors. - Introduced UI rendering for stream tabs and content, with auto-scroll functionality. - Integrated keyboard shortcuts for toggling the viewer and handling user interactions. feat: create Issue Manager view for managing issues and execution queue - Developed the Issue Manager view to manage issues, solutions, and execution queue. - Implemented data loading functions for fetching issues and queue data from the API. - Added filtering and rendering logic for issues and queue items, including drag-and-drop functionality. - Created detail panel for viewing and editing issue details, including tasks and solutions.
95 lines
2.7 KiB
JSON
95 lines
2.7 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Issue Registry Schema",
|
|
"description": "Global registry of all issues and their solutions",
|
|
"type": "object",
|
|
"properties": {
|
|
"issues": {
|
|
"type": "array",
|
|
"description": "List of registered issues",
|
|
"items": {
|
|
"type": "object",
|
|
"required": ["id", "title", "status", "created_at"],
|
|
"properties": {
|
|
"id": {
|
|
"type": "string",
|
|
"description": "Issue ID (e.g., GH-123, TEXT-xxx)"
|
|
},
|
|
"title": {
|
|
"type": "string"
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"enum": ["registered", "planning", "planned", "queued", "executing", "completed", "failed", "paused"],
|
|
"default": "registered"
|
|
},
|
|
"priority": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 5,
|
|
"default": 3
|
|
},
|
|
"solution_count": {
|
|
"type": "integer",
|
|
"default": 0,
|
|
"description": "Number of candidate solutions"
|
|
},
|
|
"bound_solution_id": {
|
|
"type": "string",
|
|
"description": "ID of the bound solution (null if none bound)"
|
|
},
|
|
"source": {
|
|
"type": "string",
|
|
"enum": ["github", "text", "file"],
|
|
"description": "Source of the issue"
|
|
},
|
|
"source_url": {
|
|
"type": "string",
|
|
"description": "Original source URL (for GitHub issues)"
|
|
},
|
|
"created_at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"updated_at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"planned_at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"queued_at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"completed_at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"_metadata": {
|
|
"type": "object",
|
|
"properties": {
|
|
"version": { "type": "string", "default": "1.0" },
|
|
"total_issues": { "type": "integer" },
|
|
"by_status": {
|
|
"type": "object",
|
|
"properties": {
|
|
"registered": { "type": "integer" },
|
|
"planning": { "type": "integer" },
|
|
"planned": { "type": "integer" },
|
|
"queued": { "type": "integer" },
|
|
"executing": { "type": "integer" },
|
|
"completed": { "type": "integer" },
|
|
"failed": { "type": "integer" }
|
|
}
|
|
},
|
|
"last_updated": { "type": "string", "format": "date-time" }
|
|
}
|
|
}
|
|
}
|
|
}
|