Delphidelphi

Bash

Run shell commands in the agent's environment.

Runs a shell command and returns stdout, stderr, and exit code.

Parameters

NameTypeRequiredDescription
commandstringThe shell command to run
timeoutnumberTimeout in milliseconds (default: 120000)
descriptionstringHuman-readable label shown in the UI

Example

{
  "command": "git status",
  "timeout": 10000
}

Notes

  • Delphi runs with bypassPermissions mode — the agent can execute commands without per-action prompts. Only run Delphi on machines you control.
  • Long-running commands (builds, tests) should set an appropriate timeout.
  • The agent confirms before destructive operations by default (configured in CLAUDE.md).