mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-28 09:23:08 +08:00
feat: initialize monorepo with package.json for CCW workflow platform
This commit is contained in:
@@ -68,32 +68,99 @@
|
||||
}
|
||||
},
|
||||
"cliHooks": {
|
||||
"title": "Git Hooks",
|
||||
"description": "Manage Git hooks for automated workflows",
|
||||
"title": "Hook Manager",
|
||||
"description": "Manage automated CLI hooks",
|
||||
"trigger": {
|
||||
"SessionStart": "Session Start",
|
||||
"UserPromptSubmit": "User Prompt Submit",
|
||||
"PreToolUse": "Pre Tool Use",
|
||||
"PostToolUse": "Post Tool Use",
|
||||
"Stop": "Stop",
|
||||
"pre-commit": "Pre-commit",
|
||||
"post-commit": "Post-commit",
|
||||
"pre-push": "Pre-push",
|
||||
"custom": "Custom"
|
||||
},
|
||||
"stats": {
|
||||
"total": "Total Hooks",
|
||||
"enabled": "Enabled"
|
||||
"total": "{count, plural, =0 {No hooks} one {# hook} other {# hooks}}",
|
||||
"enabled": "{count, plural, =0 {No active} one {# active} other {# active}}",
|
||||
"count": "{enabled}/{total} enabled"
|
||||
},
|
||||
"filters": {
|
||||
"trigger": "Trigger",
|
||||
"allTriggers": "All Triggers",
|
||||
"searchPlaceholder": "Search hooks by name..."
|
||||
"searchPlaceholder": "Search by name, description, command or trigger..."
|
||||
},
|
||||
"actions": {
|
||||
"add": "Add Hook",
|
||||
"addFirst": "Add Your First Hook",
|
||||
"edit": "Edit Hook",
|
||||
"delete": "Delete Hook",
|
||||
"toggle": "Toggle Hook"
|
||||
"deleteConfirm": "Are you sure you want to delete hook \"{hookName}\"?",
|
||||
"enable": "Enable",
|
||||
"disable": "Disable",
|
||||
"toggle": "Toggle Hook",
|
||||
"expand": "Expand",
|
||||
"collapse": "Collapse",
|
||||
"expandAll": "Expand All",
|
||||
"collapseAll": "Collapse All"
|
||||
},
|
||||
"emptyState": {
|
||||
"title": "No Git Hooks Found",
|
||||
"message": "Add a Git hook to automate tasks during Git workflows."
|
||||
"form": {
|
||||
"name": "Hook Name",
|
||||
"description": "Description",
|
||||
"trigger": "Trigger Event",
|
||||
"matcher": "Matcher Pattern",
|
||||
"command": "Command"
|
||||
},
|
||||
"quickTemplates": {
|
||||
"title": "Quick Install Templates",
|
||||
"description": "Install popular hooks with one click"
|
||||
},
|
||||
"templates": {
|
||||
"title": "Quick Install Templates",
|
||||
"description": "Install popular hooks with one click",
|
||||
"categories": {
|
||||
"notification": "Notification",
|
||||
"indexing": "Indexing",
|
||||
"automation": "Automation"
|
||||
},
|
||||
"templates": {
|
||||
"session-start-notify": {
|
||||
"name": "Session Start Notify",
|
||||
"description": "Notify dashboard when a new workflow session is created"
|
||||
},
|
||||
"session-state-watch": {
|
||||
"name": "Session State Watch",
|
||||
"description": "Watch for session metadata file changes (workflow-session.json)"
|
||||
}
|
||||
},
|
||||
"actions": {
|
||||
"install": "Install",
|
||||
"installed": "Installed"
|
||||
}
|
||||
},
|
||||
"wizards": {
|
||||
"sectionTitle": "Hook Wizards",
|
||||
"sectionDescription": "Step-by-step guides to create common hooks",
|
||||
"launch": "Launch Wizard",
|
||||
"memoryUpdate": {
|
||||
"title": "Memory Update Hook",
|
||||
"shortDescription": "Automatically update CLAUDE.md"
|
||||
},
|
||||
"dangerProtection": {
|
||||
"title": "Danger Protection",
|
||||
"shortDescription": "Protect dangerous operations"
|
||||
},
|
||||
"skillContext": {
|
||||
"title": "SKILL Context Hook",
|
||||
"shortDescription": "Auto-inject SKILL context"
|
||||
}
|
||||
},
|
||||
"allTools": "All Tools",
|
||||
"empty": {
|
||||
"title": "No Hooks Yet",
|
||||
"description": "Get started by adding your first hook or use a quick template",
|
||||
"noHooksInEvent": "No hooks configured for this event"
|
||||
}
|
||||
},
|
||||
"cliRules": {
|
||||
|
||||
@@ -51,7 +51,8 @@
|
||||
"clearAll": "Clear all",
|
||||
"select": "Select",
|
||||
"selectAll": "Select All",
|
||||
"deselectAll": "Deselect All"
|
||||
"deselectAll": "Deselect All",
|
||||
"resetLayout": "Reset Layout"
|
||||
},
|
||||
"status": {
|
||||
"active": "Active",
|
||||
@@ -174,15 +175,75 @@
|
||||
"help": {
|
||||
"title": "Help & Documentation",
|
||||
"description": "Learn how to use CCW Dashboard and get the most out of your workflows",
|
||||
"fullDocs": "Full Documentation",
|
||||
"viewAll": "View All",
|
||||
"getStarted": "Get Started",
|
||||
"support": {
|
||||
"title": "Need more help?",
|
||||
"description": "Check the project documentation or reach out for support.",
|
||||
"documentation": "Documentation",
|
||||
"tutorials": "Tutorials"
|
||||
},
|
||||
"searchDocs": {
|
||||
"title": "Search Documentation",
|
||||
"description": "Find answers fast with our comprehensive documentation search",
|
||||
"button": "Search Docs"
|
||||
}
|
||||
},
|
||||
"ticker": {
|
||||
"session_created": "Session {name} created",
|
||||
"task_completed": "Task {name} completed successfully",
|
||||
"session_failed": "Session {name} failed",
|
||||
"workflow_started": "Workflow {name} started",
|
||||
"status_changed": "{name} status changed to {status}",
|
||||
"waiting": "Waiting for activity...",
|
||||
"disconnected": "Ticker disconnected",
|
||||
"aria_label": "Real-time activity ticker"
|
||||
},
|
||||
"all": "All",
|
||||
"yes": "Yes",
|
||||
"no": "No",
|
||||
"navigation": {
|
||||
"header": {
|
||||
"brand": "CCW Dashboard"
|
||||
},
|
||||
"main": {
|
||||
"home": "Home",
|
||||
"project": "Project",
|
||||
"sessions": "Sessions",
|
||||
"liteTasks": "Lite Tasks",
|
||||
"orchestrator": "Orchestrator",
|
||||
"coordinator": "Coordinator",
|
||||
"executions": "Executions",
|
||||
"loops": "Loops",
|
||||
"history": "History",
|
||||
"memory": "Memory",
|
||||
"prompts": "Prompts",
|
||||
"skills": "Skills",
|
||||
"commands": "Commands",
|
||||
"issues": "Issues",
|
||||
"hooks": "Hooks",
|
||||
"settings": "Settings",
|
||||
"rules": "Rules",
|
||||
"codexlens": "CodexLens",
|
||||
"apiSettings": "API Settings",
|
||||
"help": "Help"
|
||||
},
|
||||
"groups": {
|
||||
"overview": "Overview",
|
||||
"workflow": "Workflow",
|
||||
"knowledge": "Knowledge",
|
||||
"issues": "Issues",
|
||||
"tools": "Tools",
|
||||
"configuration": "Configuration"
|
||||
},
|
||||
"sidebar": {
|
||||
"collapse": "Collapse",
|
||||
"collapseAria": "Collapse sidebar",
|
||||
"expand": "Expand",
|
||||
"expandAria": "Expand sidebar"
|
||||
}
|
||||
},
|
||||
"askQuestion": {
|
||||
"defaultTitle": "Questions",
|
||||
"description": "Please answer the following questions",
|
||||
@@ -192,6 +253,12 @@
|
||||
"required": "This question is required"
|
||||
},
|
||||
"coordinator": {
|
||||
"page": {
|
||||
"title": "Coordinator",
|
||||
"status": "Status: {status}",
|
||||
"startButton": "Start Coordinator",
|
||||
"noNodeSelected": "Select a node to view details"
|
||||
},
|
||||
"modal": {
|
||||
"title": "Start Coordinator",
|
||||
"description": "Describe the task you want the coordinator to execute"
|
||||
@@ -256,5 +323,184 @@
|
||||
"error": {
|
||||
"submitFailed": "Failed to submit answer"
|
||||
}
|
||||
},
|
||||
"feedback": {
|
||||
"error": {
|
||||
"network": "Network error. Please check your connection and try again.",
|
||||
"timeout": "Request timed out. Please try again.",
|
||||
"auth": "Authentication failed. Please check your permissions.",
|
||||
"validation": "Please check your input and try again.",
|
||||
"server": "Server error. Please try again later.",
|
||||
"notFound": "The requested resource was not found.",
|
||||
"unknown": "An unexpected error occurred. Please try again."
|
||||
},
|
||||
"skillToggle": {
|
||||
"success": "Skill status updated successfully",
|
||||
"error": "Failed to update skill status"
|
||||
},
|
||||
"skillEnable": {
|
||||
"success": "Skill enabled successfully",
|
||||
"error": "Failed to enable skill"
|
||||
},
|
||||
"skillDisable": {
|
||||
"success": "Skill disabled successfully",
|
||||
"error": "Failed to disable skill"
|
||||
},
|
||||
"commandExecute": {
|
||||
"success": "Command executed successfully",
|
||||
"error": "Failed to execute command"
|
||||
},
|
||||
"commandToggle": {
|
||||
"success": "Command status updated",
|
||||
"error": "Failed to update command status"
|
||||
},
|
||||
"sessionCreate": {
|
||||
"success": "Session created successfully",
|
||||
"error": "Failed to create session"
|
||||
},
|
||||
"sessionDelete": {
|
||||
"success": "Session deleted successfully",
|
||||
"error": "Failed to delete session"
|
||||
},
|
||||
"sessionUpdate": {
|
||||
"success": "Session updated successfully",
|
||||
"error": "Failed to update session"
|
||||
},
|
||||
"settingsSave": {
|
||||
"success": "Settings saved successfully",
|
||||
"error": "Failed to save settings"
|
||||
},
|
||||
"settingsReset": {
|
||||
"success": "Settings reset to defaults",
|
||||
"error": "Failed to reset settings"
|
||||
},
|
||||
"memoryImport": {
|
||||
"success": "Memory imported successfully",
|
||||
"error": "Failed to import memory"
|
||||
},
|
||||
"memoryExport": {
|
||||
"success": "Memory exported successfully",
|
||||
"error": "Failed to export memory"
|
||||
},
|
||||
"memoryDelete": {
|
||||
"success": "Memory deleted successfully",
|
||||
"error": "Failed to delete memory"
|
||||
},
|
||||
"coordinatorStart": {
|
||||
"success": "Coordinator started successfully",
|
||||
"error": "Failed to start coordinator"
|
||||
},
|
||||
"coordinatorStop": {
|
||||
"success": "Coordinator stopped",
|
||||
"error": "Failed to stop coordinator"
|
||||
},
|
||||
"hookToggle": {
|
||||
"success": "Hook status updated",
|
||||
"error": "Failed to update hook status"
|
||||
},
|
||||
"indexRebuild": {
|
||||
"success": "Index rebuild started",
|
||||
"error": "Failed to rebuild index"
|
||||
},
|
||||
"ruleCreate": {
|
||||
"success": "Rule created successfully",
|
||||
"error": "Failed to create rule"
|
||||
},
|
||||
"ruleUpdate": {
|
||||
"success": "Rule updated successfully",
|
||||
"error": "Failed to update rule"
|
||||
},
|
||||
"ruleDelete": {
|
||||
"success": "Rule deleted successfully",
|
||||
"error": "Failed to delete rule"
|
||||
},
|
||||
"promptCreate": {
|
||||
"success": "Prompt created successfully",
|
||||
"error": "Failed to create prompt"
|
||||
},
|
||||
"promptUpdate": {
|
||||
"success": "Prompt updated successfully",
|
||||
"error": "Failed to update prompt"
|
||||
},
|
||||
"promptDelete": {
|
||||
"success": "Prompt deleted successfully",
|
||||
"error": "Failed to delete prompt"
|
||||
},
|
||||
"providerCreate": {
|
||||
"success": "Provider created successfully",
|
||||
"error": "Failed to create provider"
|
||||
},
|
||||
"providerUpdate": {
|
||||
"success": "Provider updated successfully",
|
||||
"error": "Failed to update provider"
|
||||
},
|
||||
"providerDelete": {
|
||||
"success": "Provider deleted successfully",
|
||||
"error": "Failed to delete provider"
|
||||
},
|
||||
"cliToolInstall": {
|
||||
"success": "Tool installed successfully",
|
||||
"error": "Failed to install tool"
|
||||
},
|
||||
"cliToolUninstall": {
|
||||
"success": "Tool uninstalled successfully",
|
||||
"error": "Failed to uninstall tool"
|
||||
},
|
||||
"cliToolUpgrade": {
|
||||
"success": "Tool upgraded successfully",
|
||||
"error": "Failed to upgrade tool"
|
||||
},
|
||||
"codexLensConfigUpdate": {
|
||||
"success": "Configuration updated successfully",
|
||||
"error": "Failed to update configuration"
|
||||
},
|
||||
"codexLensBootstrap": {
|
||||
"success": "CodexLens bootstrapped successfully",
|
||||
"error": "Failed to bootstrap CodexLens"
|
||||
},
|
||||
"codexLensInstallSemantic": {
|
||||
"success": "Semantic dependencies installed",
|
||||
"error": "Failed to install semantic dependencies"
|
||||
},
|
||||
"codexLensUninstall": {
|
||||
"success": "CodexLens uninstalled",
|
||||
"error": "Failed to uninstall CodexLens"
|
||||
},
|
||||
"codexLensDownloadModel": {
|
||||
"success": "Model downloaded successfully",
|
||||
"error": "Failed to download model"
|
||||
},
|
||||
"codexLensDeleteModel": {
|
||||
"success": "Model deleted successfully",
|
||||
"error": "Failed to delete model"
|
||||
},
|
||||
"codexLensUpdateEnv": {
|
||||
"success": "Environment variables updated",
|
||||
"error": "Failed to update environment variables"
|
||||
},
|
||||
"codexLensSelectGpu": {
|
||||
"success": "GPU selected successfully",
|
||||
"error": "Failed to select GPU"
|
||||
},
|
||||
"codexLensResetGpu": {
|
||||
"success": "GPU reset successfully",
|
||||
"error": "Failed to reset GPU"
|
||||
},
|
||||
"codexLensUpdatePatterns": {
|
||||
"success": "Ignore patterns updated",
|
||||
"error": "Failed to update ignore patterns"
|
||||
},
|
||||
"codexLensRebuildIndex": {
|
||||
"success": "Index rebuild started",
|
||||
"error": "Failed to rebuild index"
|
||||
},
|
||||
"codexLensUpdateIndex": {
|
||||
"success": "Index update started",
|
||||
"error": "Failed to update index"
|
||||
},
|
||||
"codexLensCancelIndexing": {
|
||||
"success": "Indexing cancelled",
|
||||
"error": "Failed to cancel indexing"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,11 @@
|
||||
{
|
||||
"title": "Home",
|
||||
"description": "Dashboard overview and statistics",
|
||||
"dashboard": {
|
||||
"title": "Dashboard",
|
||||
"description": "Overview of your workflow sessions and task statistics",
|
||||
"refreshTooltip": "Refresh dashboard data"
|
||||
},
|
||||
"stats": {
|
||||
"activeSessions": "Active Sessions",
|
||||
"totalTasks": "Total Tasks",
|
||||
@@ -16,6 +21,11 @@
|
||||
"openIssues": "Open Issues",
|
||||
"quickActions": "Quick Actions"
|
||||
},
|
||||
"widgets": {
|
||||
"workflowStatus": "Workflow Status",
|
||||
"activity": "Activity Timeline",
|
||||
"taskTypes": "Task Types"
|
||||
},
|
||||
"emptyState": {
|
||||
"noSessions": {
|
||||
"title": "No Sessions Found",
|
||||
@@ -48,6 +58,24 @@
|
||||
"title": "CLI Integration",
|
||||
"description": "Using CCW commands and CLI tool integration",
|
||||
"heading": "CLI Integration"
|
||||
},
|
||||
"commands": {
|
||||
"title": "Commands Reference",
|
||||
"description": "Browse 40+ commands across workflow, issue, CLI, and memory categories"
|
||||
},
|
||||
"commandsOverview": {
|
||||
"title": "Commands Documentation",
|
||||
"description": "Explore all available CCW commands with detailed documentation and examples"
|
||||
},
|
||||
"workflowsOverview": {
|
||||
"title": "Workflow Guides",
|
||||
"description": "Interactive guides for all 15 workflow levels from ultra-lightweight to intelligent"
|
||||
},
|
||||
"quickStart": {
|
||||
"title": "Quick Start",
|
||||
"description": "Get up and running with CCW in minutes",
|
||||
"guide": "Getting Started Guide",
|
||||
"faq": "Frequently Asked Questions"
|
||||
}
|
||||
},
|
||||
"errors": {
|
||||
|
||||
@@ -40,6 +40,12 @@
|
||||
"completed": "completed",
|
||||
"updated": "Updated"
|
||||
},
|
||||
"taskStatus": {
|
||||
"pending": "Pending",
|
||||
"inProgress": "In Progress",
|
||||
"completed": "Completed",
|
||||
"failed": "Failed"
|
||||
},
|
||||
"detail": {
|
||||
"overview": "Overview",
|
||||
"tasks": "Tasks",
|
||||
|
||||
@@ -38,8 +38,16 @@
|
||||
"category": "Category",
|
||||
"source": "Source",
|
||||
"author": "Author",
|
||||
"version": "Version"
|
||||
"version": "Version",
|
||||
"description": "Description"
|
||||
},
|
||||
"allowedTools": "Allowed Tools",
|
||||
"files": "Files",
|
||||
"path": "Path",
|
||||
"metadata": "Metadata",
|
||||
"noDescription": "No description available",
|
||||
"projectSkills": "Project Skills",
|
||||
"userSkills": "User Skills",
|
||||
"filters": {
|
||||
"all": "All",
|
||||
"enabled": "Enabled",
|
||||
|
||||
Reference in New Issue
Block a user