agent-shell
No description available.
File Explorer
- build.yml
- ci.yml
- publish.yml
- agentshell-banner.png
- agentshell-banner.svg
- agent_parameter_comparison.md
- disabled_tools.md
- info.md
- total_token_count.md
- examples.md
- SKILL.md
- api-reference.md
- SKILL.md
- __init__.py
- agent_adapter_protocol.py
- claude_code_adapter.py
- codex_adapter.py
- copilot_cli_adapter.py
- cursor_adapter.py
- grok_adapter.py
- health.py
- model_discovery.py
- opencode_adapter.py
- outcome.py
- pi_adapter.py
- process_failure.py
- response.py
- stderr_format.py
- tool_denial.py
- __init__.py
- agent.py
- __init__.py
- execution.py
- herdr.py
- herdr_protocol.py
- herdr_worker.py
- process_cleanup.py
- shell.py
- terminal_protocol.py
- terminal_window.py
- terminal_worker.py
- tmux.py
- tmux_bridge.py
- tmux_protocol.py
- __init__.py
- test_claude_code_e2e.py
- test_codex_e2e.py
- test_copilot_cli_e2e.py
- test_cursor_e2e.py
- test_execution_host_e2e.py
- test_grok_e2e.py
- test_health_check_e2e.py
- test_model_discovery_e2e.py
- test_opencode_e2e.py
- test_pi_e2e.py
- test_terminal_window_execution_host_e2e.py
- test_tmux_execution_host_e2e.py
- __init__.py
- test_claude_code_integration.py
- test_claude_code_mcp_integration.py
- test_codex_integration.py
- test_codex_mcp_integration.py
- test_copilot_cli_integration.py
- test_copilot_cli_mcp_integration.py
- test_cursor_integration.py
- test_cursor_mcp_integration.py
- test_execution_host.py
- test_grok_integration.py
- test_grok_mcp_integration.py
- test_health_check_integration.py
- test_herdr_execution_host.py
- test_model_discovery_integration.py
- test_opencode_integration.py
- test_opencode_mcp_integration.py
- test_pi_integration.py
- test_pi_mcp_integration.py
- test_process_lifecycle.py
- test_terminal_window_execution_host.py
- test_tmux_execution_host.py
- __init__.py
- adapter_matrix.py
- codex_fixtures.py
- copilot_fixtures.py
- cursor_fixtures.py
- fixtures.py
- grok_fixtures.py
- opencode_fixtures.py
- pi_fixtures.py
- test_adapter_transport.py
- test_cancel.py
- test_codex_cancel.py
- test_codex_execute.py
- test_codex_parse_event.py
- test_codex_warnings.py
- test_copilot_cli_cancel.py
- test_copilot_cli_execute.py
- test_copilot_cli_parse_event.py
- test_copilot_cli_stream.py
- test_cursor_cancel.py
- test_cursor_execute.py
- test_cursor_parse_event.py
- test_cursor_warnings.py
- test_execute.py
- test_execute_outcome.py
- test_grok_cancel.py
- test_grok_execute.py
- test_grok_parse_event.py
- test_grok_warnings.py
- test_health_probe.py
- test_mcp_server_spec.py
- test_model_discovery.py
- test_models.py
- test_opencode_cancel.py
- test_opencode_execute.py
- test_opencode_parse_event.py
- test_opencode_spawn.py
- test_opencode_stream.py
- test_parse_event.py
- test_pi_cancel.py
- test_pi_execute.py
- test_pi_parse_event.py
- test_pi_warnings.py
- test_process_cleanup.py
- test_process_group_registration.py
- test_public_exports.py
- test_response_aggregation.py
- test_shell.py
- test_shell_cancellation.py
- test_shell_mcp.py
- test_stderr_format.py
- test_stream.py
- test_terminal_window_execution_host.py
- test_tool_denial.py
- __init__.py
- conftest.py
- .gitignore
- .python-version
- AGENTS.md
- LICENSE
- pyproject.toml
- README.md
- uv.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
edit
View Details ▼
edit
A terminal-based text editor from Microsoft.
edit {{path/to/file}}
Open a file:
tldr run-mailcap
View documentation for the original command:
<Ctrl f>{{pattern}}<Enter>
Search for a pattern:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
opencode
View Details ▼
opencode
An AI coding agent.
Some subcommands such as `auth`, `models`, `web`, etc. have their own usage documentation.
opencode
Start the interactive TUI:
opencode {{[-c|--continue]}}
Continue the most recent session:
opencode run "{{message}}"
Run opencode in non-interactive mode by passing a prompt directly:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
uv add
View Details ▼
uv add
Add package dependencies to the `pyproject.toml` file.
Packages are specified according to <https://peps.python.org/pep-0508/>.
uv add {{package}}
Add the latest version of a package:
uv add {{package1 package2 ...}}
Add multiple packages:
uv add {{package>=1.2.3}}
Add a package with a version requirement:
