mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 14:13:54 +08:00
feat: Enhance team lifecycle roles with checkpoint handling and inner loop execution
- Added checkpoint gate handling to the coordinator role, defining behavior based on quality gate results. - Updated planner role to utilize inner loop pattern for structured implementation planning and reporting. - Revised writer role to implement inner loop for document generation, delegating CLI execution to a subagent. - Introduced a new doc-generation subagent for isolated CLI calls and document generation strategies. - Enhanced UI components in the frontend to display job statuses, last run times, and improved error handling. - Updated localization files to include new strings for job details and status banners. - Improved CSS styles for markdown previews to enhance readability and presentation.
This commit is contained in:
@@ -119,6 +119,7 @@
|
||||
"extracting": "Extracting...",
|
||||
"extracted": "Extracted",
|
||||
"recentJobs": "Recent Jobs",
|
||||
"lastRun": "Last run",
|
||||
"triggered": "Extraction triggered",
|
||||
"triggerError": "Failed to trigger extraction"
|
||||
},
|
||||
@@ -132,8 +133,11 @@
|
||||
"exists": "Exists",
|
||||
"notExists": "Not Exists",
|
||||
"inputs": "Inputs",
|
||||
"lastRun": "Last run",
|
||||
"triggered": "Consolidation triggered",
|
||||
"triggerError": "Failed to trigger consolidation"
|
||||
"triggerError": "Failed to trigger consolidation",
|
||||
"copySuccess": "Copied",
|
||||
"noContent": "No content available"
|
||||
},
|
||||
"jobs": {
|
||||
"title": "Jobs",
|
||||
@@ -144,7 +148,26 @@
|
||||
"noJobs": "No jobs found",
|
||||
"allKinds": "All Kinds",
|
||||
"extraction": "Extraction",
|
||||
"consolidation": "Consolidation"
|
||||
"consolidation": "Consolidation",
|
||||
"statusFilter": {
|
||||
"all": "All Status",
|
||||
"pending": "Pending",
|
||||
"running": "Running",
|
||||
"done": "Done",
|
||||
"error": "Error"
|
||||
},
|
||||
"detail": {
|
||||
"title": "Job Details",
|
||||
"kind": "Kind",
|
||||
"jobKey": "Job ID",
|
||||
"status": "Status",
|
||||
"startedAt": "Started At",
|
||||
"finishedAt": "Finished At",
|
||||
"workerId": "Worker ID",
|
||||
"retryRemaining": "Retry Remaining",
|
||||
"error": "Error",
|
||||
"noError": "No error"
|
||||
}
|
||||
},
|
||||
"status": {
|
||||
"idle": "Idle",
|
||||
@@ -153,6 +176,10 @@
|
||||
"done": "Done",
|
||||
"error": "Error",
|
||||
"pending": "Pending"
|
||||
},
|
||||
"statusBanner": {
|
||||
"running": "Pipeline Running - {count} job(s) in progress",
|
||||
"hasErrors": "Pipeline Idle - {count} job(s) failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user