feat: backend orkestrasyonunu ve arac entegrasyonlarini genislet

This commit is contained in:
2026-03-22 04:45:43 +03:00
parent d07bc365f5
commit 5f4c19a18d
25 changed files with 3750 additions and 82 deletions

View File

@@ -19,6 +19,9 @@ SAFE_COMMAND_PREFIXES = (
"whoami",
"uname",
"ps",
"python3 -m http.server",
"python -m http.server",
"npm run build",
)
APPROVAL_REQUIRED_PREFIXES = (
@@ -74,4 +77,3 @@ def evaluate_terminal_command(command: str, mode: int) -> TerminalDecision:
return TerminalDecision(decision="approval", reason="Command needs approval.")
return TerminalDecision(decision="approval", reason="Unknown command defaults to approval.")