# rye:signed:2026-04-10T02:20:26Z:8871257d3620cc6fa40acee68c163981930e8fec19a4815ae533c8bab0b1c8c4:9QlhjCY5b8XQvURwa68vquXsTboSUsMe2DxJWH86nKEgxqEmfQ27lx7BO7XUXm42Y7vRSfaUNQfaDmeMwzOiBA:6ea18199041a1ea8
# rye:unsigned
version: "1.0.0"
tool_type: runtime
executor_id: rye/core/primitives/execute
category: rye/core/runtimes/bash
description: "Bash runtime - executes shell commands directly"

env_config:
  env:
    PATH: "${PATH}"

config_resolve:
  path: "execution/execution.yaml"
  mode: "deep_merge"

config:
  command: "/bin/bash"
  args:
    - "-c"
    - "{command}"
    - "{tool_path}"
    - "{project_path}"
  input_data: "{params_json}"
  timeout: 300

config_schema:
  type: object
  properties:
    command:
      type: string
      description: Shell command to execute
