agent-shell
No description available.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
edit
설명 보기 ▼
edit
Microsoft에서 만든 터미널 기반 텍스트 편집기.
더 많은 정보: <https://github.com/microsoft/edit>.
edit {{path/to/file}}
파일 열기:
tldr run-mailcap
자세한 내용은 원본 명령을 참고하세요:
<Ctrl f>{{pattern}}<Enter>
패턴 검색:
npx
설명 보기 ▼
npx
이 명령은 `npm exec`의 별칭입니다.
tldr npm exec
자세한 내용은 원본 명령을 참고하세요:
opencode
설명 보기 ▼
opencode
AI 코딩 에이전트.
`auth`, `models`, `web`와 같은 일부 하위명령어는 별도의 사용법 문서를 가짐.
더 많은 정보: <https://opencode.ai/docs/cli/>.
opencode
대화형 TUI 시작:
opencode {{[-c|--continue]}}
가장 최근 세션 이어서 실행:
opencode run "{{message}}"
프롬프트를 직접 전달하여 비대화형으로 실행:
pip install
설명 보기 ▼
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
설명 보기 ▼
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:
