ワンクリックで
opencode-harness
Run the OpenCode CLI harness for coding tasks from a terminal session with interactive PTY support (harness-only).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run the OpenCode CLI harness for coding tasks from a terminal session with interactive PTY support (harness-only).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Commands, man-style CLI flags, and Microsoft.WSL.Containers API for building/running Linux containers via wslc on Windows (no Docker Desktop required).
Run the Antigravity (Gemini) CLI agent harness via the agy binary. Includes interactive session control and exit handling.
Use this skill whenever you need to click, type, or navigate inside a browser window (Edge, Chrome, Firefox, etc.) but the computer-use MCP blocks interaction because the browser is granted at tier 'read'. This skill bypasses that restriction by injecting mouse and keyboard input at the Windows API level via PowerShell and user32.dll—the same technique that worked to navigate Edge to code.visualstudio.com. Trigger this skill any time you see the error 'granted at tier read — visible in screenshots only, no clicks or typing', or any time the user asks you to click or type in a browser and the Claude-in-Chrome extension is not connected.
Python SDK for programmatic control of GitHub Copilot CLI via JSON-RPC
Harden Windows Defender privacy settings for authorized pentest engagements. Disables telemetry uploads, sample submission, and cloud reporting to prevent leaking target info, credentials, and tooling to Microsoft. Includes exclusion management and post-engagement re-enablement.
Specification for building Model Context Protocol servers using Python
| name | opencode-harness |
| description | Run the OpenCode CLI harness for coding tasks from a terminal session with interactive PTY support (harness-only). |
| author | Tim Sonner |
| license | MIT |
Use this when you want to offload coding tasks to the OpenCode CLI harness (opencode) from a terminal session using PTY-backed interactive control. This is the harness-only workflow (no deep product docs).
opencode is installed and on PATH.opencode auth login or provider env vars).Use a background PTY so you can send commands programmatically:
terminal(command="opencode", background=true, pty=true, workdir="/path/to/repo")
# save session_id
process(action="submit", session_id="<id>", data="Implement OAuth refresh flow and add tests")
process(action="poll", session_id="<id>")
process(action="log", session_id="<id>")
OpenCode does not support /exit (it opens an agent selector). Use Ctrl+C:
process(action="write", session_id="<id>", data="\x03")
# or: process(action="kill", session_id="<id>")
terminal(command="opencode run 'Refactor auth module and update tests'", workdir="/path/to/repo")
terminal(command="opencode -c", background=true, pty=true, workdir="/path/to/repo")
terminal(command="opencode -s <session_id>", background=true, pty=true, workdir="/path/to/repo")
terminal(command="opencode run 'Respond with exactly: OPENCODE_SMOKE_OK'")
Success = output includes OPENCODE_SMOKE_OK.
pty=true./exit is not valid; use Ctrl+C.process(action="log", session_id="<id>").