mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-28 09:23:08 +08:00
- Added command architecture section to skill router template, detailing role organization and command delegation. - Updated role router input parsing to reflect new file structure for roles. - Introduced role isolation rules to enforce strict boundaries on role responsibilities and output tagging. - Enhanced team configuration section to include role-specific guidelines and message bus requirements. feat: Improve terminal dashboard with session status indicators - Integrated terminal status indicators in the session group tree, displaying active, idle, error, paused, and resuming states. - Updated session click handling to focus on existing panes or assign sessions to available panes. feat: Add session lifecycle controls in terminal pane - Implemented restart, pause, and resume functionalities for terminal sessions with loading states. - Enhanced UI buttons for session control with appropriate loading indicators and tooltips. i18n: Update terminal dashboard localization for session controls - Added translations for restart, pause, and resume session actions in English and Chinese. chore: Create role command template for command file generation - Established a comprehensive template for generating command files in roles, including sections for strategy, execution steps, and error handling. - Included pre-built command patterns for common tasks like exploration, analysis, implementation, validation, review, dispatch, and monitoring.
115 lines
3.3 KiB
JSON
115 lines
3.3 KiB
JSON
{
|
|
"page": {
|
|
"title": "Terminal Dashboard"
|
|
},
|
|
"columns": {
|
|
"sessions": "Sessions",
|
|
"workflow": "Workflow",
|
|
"terminal": "Terminal Workbench"
|
|
},
|
|
"kpi": {
|
|
"title": "Dashboard KPI",
|
|
"activeSessions": "Active Sessions",
|
|
"queueSize": "Queue Size",
|
|
"alertCount": "Alerts",
|
|
"errorCount": "Errors",
|
|
"idleCount": "Idle"
|
|
},
|
|
"inspector": {
|
|
"title": "Inspector",
|
|
"noSelection": "Select an item to view details",
|
|
"associationChain": "Association Chain"
|
|
},
|
|
"bottomPanel": {
|
|
"queueTab": "Queue",
|
|
"inspectorTab": "Inspector",
|
|
"collapse": "Collapse panel",
|
|
"expand": "Expand panel"
|
|
},
|
|
"sessionTree": {
|
|
"createGroup": "New Group",
|
|
"groupNamePrompt": "Enter group name",
|
|
"defaultGroupName": "Untitled Group",
|
|
"emptyGroup": "No sessions in this group",
|
|
"noGroups": "No session groups yet",
|
|
"sessionCount": "{count} sessions",
|
|
"dragHint": "Drag sessions between groups"
|
|
},
|
|
"agentList": {
|
|
"title": "Agents",
|
|
"noAgents": "No active agents",
|
|
"stepLabel": "Step {current}/{total}",
|
|
"statusRunning": "Running",
|
|
"statusCompleted": "Completed",
|
|
"statusFailed": "Failed",
|
|
"statusPaused": "Paused",
|
|
"statusPending": "Pending"
|
|
},
|
|
"issuePanel": {
|
|
"title": "Issues",
|
|
"sendToQueue": "Send to Queue",
|
|
"noIssues": "No issues found",
|
|
"noIssuesDesc": "Issues will appear here when discovered",
|
|
"error": "Failed to load issues"
|
|
},
|
|
"queuePanel": {
|
|
"title": "Queue",
|
|
"noItems": "Queue is empty",
|
|
"noItemsDesc": "Send issues to queue to start workflow",
|
|
"error": "Failed to load queue",
|
|
"order": "#{order}",
|
|
"dependsOn": "Depends on: {deps}",
|
|
"status": {
|
|
"pending": "Pending",
|
|
"ready": "Ready",
|
|
"executing": "Executing",
|
|
"completed": "Completed",
|
|
"failed": "Failed",
|
|
"blocked": "Blocked"
|
|
}
|
|
},
|
|
"toolbar": {
|
|
"sessions": "Sessions",
|
|
"issues": "Issues",
|
|
"queue": "Queue",
|
|
"inspector": "Inspector",
|
|
"layoutSingle": "Single",
|
|
"layoutSplitH": "Split Horizontal",
|
|
"layoutSplitV": "Split Vertical",
|
|
"layoutGrid": "Grid 2x2",
|
|
"launchCli": "Launch CLI",
|
|
"quickCreate": "Quick Create",
|
|
"configure": "Configure..."
|
|
},
|
|
"pane": {
|
|
"selectSession": "Select a session",
|
|
"selectSessionHint": "Choose a terminal session from the dropdown",
|
|
"splitHorizontal": "Split Right",
|
|
"splitVertical": "Split Down",
|
|
"clearTerminal": "Clear Terminal",
|
|
"closePane": "Close Pane",
|
|
"linkedIssue": "Linked Issue",
|
|
"restart": "Restart Session",
|
|
"pause": "Pause Session",
|
|
"resume": "Resume Session"
|
|
},
|
|
"tabBar": {
|
|
"noTabs": "No terminal sessions"
|
|
},
|
|
"workbench": {
|
|
"noTerminal": "No terminal selected",
|
|
"noTerminalHint": "Select a session from the tab bar or create a new one",
|
|
"issuePreview": "Issue Preview",
|
|
"issuePreviewHint": "Select a terminal session or send this issue to the queue to begin work"
|
|
},
|
|
"placeholder": {
|
|
"sessionTree": "Session groups will appear here",
|
|
"agentList": "Agent list will appear here",
|
|
"issuePanel": "Issue panel will appear here",
|
|
"queuePanel": "Queue panel will appear here",
|
|
"terminalWorkbench": "Terminal workbench will appear here",
|
|
"kpiBar": "KPI metrics will appear here",
|
|
"inspector": "Inspector details will appear here"
|
|
}
|
|
}
|