shell

package
v0.1.14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 1, 2026 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewShellBash

func NewShellBash(cfg ShellBashConfig, deps ShellBashDeps) (agentkit.Tool, error)

NewShellBash registers tool/shell-bash: Execute bash commands rooted in the workspace (tool name: bash).

Best practices:

  • Keep commands non-interactive; avoid pagers and prompts.
  • For unattended runs pair with policy/shell-allowlist in strict mode.

Types

type ShellBashConfig

type ShellBashConfig struct {
	// WorkDir is working directory relative to the workspace root.
	WorkDir string `json:"workDir"`
	// TimeoutSeconds is per-command limit; 0 falls back to the built-in default.
	TimeoutSeconds int `json:"timeoutSeconds"`
}

type ShellBashDeps

type ShellBashDeps struct {
	Workspace workspace.Service `json:"workspace"`
}

type ShellInput

type ShellInput struct {
	Command string `json:"command" jsonschema:"Shell command to execute"`
}

type ShellOutput

type ShellOutput struct {
	ExitCode int    `json:"exitCode"`
	Stdout   string `json:"stdout"`
	Stderr   string `json:"stderr"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL