mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-14 02:42:04 +08:00
- Added A2UITypes for defining question structures and answers. - Created A2UIWebSocketHandler for managing WebSocket connections and message handling. - Developed ask-question tool for interactive user questions via A2UI. - Introduced platformUtils for platform detection and shell command handling. - Centralized TypeScript types in index.ts for better organization. - Implemented compatibility checks for hook templates based on platform requirements.
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"page": {
|
|
"title": "Execution Monitor",
|
|
"subtitle": "View real-time execution status and history"
|
|
},
|
|
"currentExecution": {
|
|
"title": "Current Execution",
|
|
"noExecution": "No workflow is currently executing",
|
|
"expand": "Expand",
|
|
"collapse": "Collapse"
|
|
},
|
|
"stats": {
|
|
"title": "Statistics",
|
|
"totalExecutions": "Total Executions",
|
|
"successRate": "Success Rate",
|
|
"avgDuration": "Avg Duration",
|
|
"nodeSuccessRate": "Node Success Rate"
|
|
},
|
|
"history": {
|
|
"title": "Execution History",
|
|
"empty": "No execution history",
|
|
"tabs": {
|
|
"byWorkflow": "By Workflow",
|
|
"timeline": "Timeline",
|
|
"list": "List View"
|
|
}
|
|
},
|
|
"filters": {
|
|
"workflow": "Workflow",
|
|
"status": "Status",
|
|
"dateRange": "Date Range",
|
|
"all": "All Workflows",
|
|
"allStatus": "All Status"
|
|
},
|
|
"execution": {
|
|
"status": {
|
|
"pending": "Pending",
|
|
"running": "Running",
|
|
"paused": "Paused",
|
|
"completed": "Completed",
|
|
"failed": "Failed"
|
|
},
|
|
"duration": "Duration",
|
|
"startedAt": "Started",
|
|
"completedAt": "Completed",
|
|
"nodes": "Nodes",
|
|
"progress": "Progress",
|
|
"logs": "Logs",
|
|
"viewDetails": "View Details"
|
|
}
|
|
}
|