You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add daemon process detection utility with common service patterns
- Modify executeCommandTool to detect and handle daemons as background processes
- Add configuration options for custom daemon patterns
- Add comprehensive tests for daemon detection logic
Fixes#8636
Copy file name to clipboardExpand all lines: src/package.nls.json
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,8 @@
33
33
"commands.commandExecutionTimeout.description": "Maximum time in seconds to wait for command execution to complete before timing out (0 = no timeout, 1-600s, default: 0s)",
34
34
"commands.commandTimeoutAllowlist.description": "Command prefixes that are excluded from the command execution timeout. Commands matching these prefixes will run without timeout restrictions.",
35
35
"commands.preventCompletionWithOpenTodos.description": "Prevent task completion when there are incomplete todos in the todo list",
36
+
"commands.daemonCommands.description": "Additional command patterns to identify as daemon/long-running processes. These commands will be handled as background services that continue running without blocking the workflow.",
37
+
"commands.disableDaemonDetection.description": "Disable automatic detection of daemon/long-running processes. When disabled, all commands will wait for completion before proceeding.",
36
38
"settings.vsCodeLmModelSelector.description": "Settings for VSCode Language Model API",
37
39
"settings.vsCodeLmModelSelector.vendor.description": "The vendor of the language model (e.g. copilot)",
38
40
"settings.vsCodeLmModelSelector.family.description": "The family of the language model (e.g. gpt-4)",
0 commit comments