mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 15:03:57 +08:00
feat(cli-tools): add effort level configuration for Claude CLI
- Introduced effort level options (low, medium, high) in the CLI tool settings. - Updated the SettingsPage and CliToolCard components to handle effort level updates. - Enhanced CLI command options to accept effort level via --effort parameter. - Modified backend routes to support effort level updates in tool configurations. - Created a new CliViewerToolbar component for improved CLI viewer interactions. - Implemented logic to manage and display execution statuses and layouts in the CLI viewer.
This commit is contained in:
@@ -21,7 +21,14 @@
|
||||
"toolbar": {
|
||||
"refresh": "Refresh",
|
||||
"clearAll": "Clear All",
|
||||
"settings": "Settings"
|
||||
"settings": "Settings",
|
||||
"back": "Back",
|
||||
"addExecution": "Add",
|
||||
"running": "running",
|
||||
"executions": "executions",
|
||||
"executionsList": "Recent Executions",
|
||||
"fullscreen": "Fullscreen",
|
||||
"exitFullscreen": "Exit Fullscreen"
|
||||
},
|
||||
"emptyState": {
|
||||
"title": "No CLI Executions",
|
||||
|
||||
@@ -41,7 +41,12 @@
|
||||
"saveToConfig": "Save to Config",
|
||||
"saving": "Saving...",
|
||||
"configSaved": "Configuration saved to ~/.claude/cli-tools.json",
|
||||
"configSaveError": "Failed to save configuration"
|
||||
"configSaveError": "Failed to save configuration",
|
||||
"effort": "Effort Level",
|
||||
"effortHint": "Controls thinking effort for Claude sessions. Default: high.",
|
||||
"effortLow": "Low",
|
||||
"effortMedium": "Medium",
|
||||
"effortHigh": "High"
|
||||
},
|
||||
"display": {
|
||||
"title": "Display Settings",
|
||||
|
||||
@@ -84,7 +84,8 @@
|
||||
"modeDefault": "Default",
|
||||
"modeYolo": "Yolo",
|
||||
"quickCreate": "Quick Create",
|
||||
"configure": "Configure..."
|
||||
"configure": "Configure...",
|
||||
"fullscreen": "Fullscreen"
|
||||
},
|
||||
"cliConfig": {
|
||||
"title": "Create CLI Session",
|
||||
@@ -113,7 +114,15 @@
|
||||
"copied": "Copied",
|
||||
"insertPath": "Insert into terminal",
|
||||
"loading": "Loading...",
|
||||
"loadFailed": "Failed to load file tree"
|
||||
"loadFailed": "Failed to load file tree",
|
||||
"showHidden": "Toggle filtered files"
|
||||
},
|
||||
"fileSidebar": {
|
||||
"title": "Files",
|
||||
"refresh": "Refresh",
|
||||
"collapse": "Collapse",
|
||||
"noProject": "No project open",
|
||||
"openProjectHint": "Open a project to browse files"
|
||||
},
|
||||
"artifacts": {
|
||||
"types": {
|
||||
@@ -134,7 +143,8 @@
|
||||
"linkedIssue": "Linked Issue",
|
||||
"restart": "Restart Session",
|
||||
"pause": "Pause Session",
|
||||
"resume": "Resume Session"
|
||||
"resume": "Resume Session",
|
||||
"backToTerminal": "Back to terminal"
|
||||
},
|
||||
"tabBar": {
|
||||
"noTabs": "No terminal sessions"
|
||||
|
||||
Reference in New Issue
Block a user