跳到主要内容
知仓学习社ZHICANG

opencode-qa

QA opencode itself, per case: verify the CLI/terminal (opencode run, db, serve, export), prove a specific plugin hook/action/event fired via the SSE…

读凭据执行命令写文件读文件联网严重 2 · 高危 16code-yeongyu/oh-my-openagent

它会碰到什么

扫了多少22 个文本文件,261 KB
它会碰到什么读凭据执行命令写文件读文件联网
命中总数70 处
命中统计严重 2 · 高 16 · 中 43 · 低 0
逐条看命中(18 条严重或高危)
  • 严重 references/docker-qa.md:51cred-paths
    - a gitignored `.env` or `.env.local` at the repo root (auto-sourced by
  • 严重 references/docker-qa.md:51cred-paths
    - a gitignored `.env` or `.env.local` at the repo root (auto-sourced by
  • scripts/lib/fake-openai-server.mjs:9cred-envread
    const requestedPort = Number(process.env.FAKE_OPENAI_PORT ?? 0)
  • scripts/lib/fake-openai-server.mjs:10cred-envread
    const logFile = process.env.FAKE_LLM_LOG ?? path.join(os.tmpdir(), "fake-llm.log")
  • scripts/lsp-e2e.sh:166exec-spawn
    import { spawn } from "node:child_process";
  • scripts/lsp-e2e.sh:442cred-envread
    const repoRoot = process.env.REPO_ROOT;
  • scripts/lsp-e2e.sh:443cred-envread
    const base = process.env.PROBE_BASE;
  • scripts/lsp-e2e.sh:444cred-envread
    const output = process.env.PROBE_OUTPUT;
  • scripts/lsp-e2e.sh:523cred-envread
    const neutralBase = resolve(process.env.HOME, ".omo", "lsp-daemon");
  • scripts/lsp-e2e.sh:783cred-envread
    const openCodeConfigRoot = resolve(process.env.XDG_CONFIG_HOME ?? join(process.env.HOME ?? homeDir, ".config"), "opencode");
  • scripts/lsp-e2e.sh:783cred-envread
    const openCodeConfigRoot = resolve(process.env.XDG_CONFIG_HOME ?? join(process.env.HOME ?? homeDir, ".config"), "opencode");
  • scripts/lsp-e2e.sh:1090exec-spawn
    import { spawn } from "node:child_process";
  • scripts/lsp-e2e.sh:1293cred-envread
    const marker = process.env.QA_MARKER || "OMO_LSP_PATH_CONTRACT_QA";
  • scripts/lsp-e2e.sh:1294cred-envread
    const qaScenario = process.env.QA_SCENARIO || "path-contract";
  • scripts/lsp-e2e.sh:1295cred-envread
    const qaSourceFile = process.env.QA_SOURCE_FILE || "source.ts";
  • scripts/lsp-e2e.sh:1296cred-envread
    const logFile = process.env.FAKE_PROVIDER_LOG;
  • scripts/lsp-e2e.sh:1489identity-config-write
    disabled_hooks: ["auto-update-checker"],
  • scripts/lsp-e2e.sh:1793exec-spawn
    import { spawn } from "node:child_process";

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

opencode QA

QA the opencode coding agent itself. This skill maps each QA need to a tested

helper script and a deep reference. Every script ships a --self-test that

asserts its scenario against the live machine, so the scripts are both the QA

tools and their own regression checks.

Verified against opencode v1.17.7 (bun 1.3.12, macOS). Confirm the installed

version with opencode --version; the surface is stable but always sanity

check a flag with opencode <cmd> --help.

Golden rules (read before running anything)

  • READS of the live DB are safe and intended. Investigating sessions (Case D)

only reads ~/.local/share/opencode/opencode.db.

  • Anything that SPAWNS opencode (serve, run, the TUI) must use an isolated XDG

sandbox so QA never writes junk sessions into the real DB. The bundled

scripts already do this; if you run opencode by hand for QA, set

XDG_DATA_HOME / XDG_CONFIG_HOME / XDG_STATE_HOME / XDG_CACHE_HOME to

temp dirs first.

  • Global text search over the part table is a multi-GB scan. Always scope it

(--session, --recent, or --since). The text script refuses an

unbounded scan on purpose.

  • The opencode source repo (packages/opencode) tests itself with bun test

and CANNOT run tests from the repo root. See references/testing-harness.md.

Setup

Scripts live next to this file under scripts/. Invoke them from this skill

directory (or with their absolute path):

cd <this-skill-dir>                        # .agents/skills/opencode-qa
bash scripts/lib/common.sh --self-check    # confirm the harness + deps

Docker is the default QA surface. Run QA inside a disposable container that

has the latest opencode and a copy of your config, with the host untouched:

script/agent/qa-docker.sh (see [references/docker-qa.md](references/docker-qa.md)).

The local scripts below are the fallback for when Docker is unavailable or on

Windows.

common.sh provides the shared harness (DB path, SQL escaping, isolated XDG

sandbox, free port, server start/stop, and an EXIT-trap cleanup). It requires

opencode, sqlite3, curl, jq, and tmux on PATH.

Router: pick your case

| You want to... | Case | Script | Reference |

|---|---|---|---|

| Run opencode non-interactively / check a CLI command | A | opencode run --format json (inline) | references/cli-commands.md |

| Find a session by its id | D | scripts/db-session-by-id.sh <ses_id> | references/db-investigation.md |

| Find sessions by title/name | D | scripts/db-session-by-name.sh "<text>" | references/db-investigation.md |

| Find sessions by message text | D | scripts/db-session-by-text.sh --recent N "<text>" | references/db-investigation.md |

| Export a whole session as JSON | D | scripts/export-roundtrip.sh <ses_id> | references/db-investigation.md |

| Check the HTTP server / an endpoint | B | scripts/server-smoke.sh | references/server-api.md |

| Prove a hook / action / event fired | B | scripts/sse-hook-probe.sh | references/events-hooks.md |

| Prove serve-topology wake runner-split (reproduced/fixed) | B | scripts/serve-wake-split-probe.sh --expect reproduced\|fixed --evidence-dir DIR (self-test: --self-test; fake LLM: scripts/lib/fake-openai-server.mjs) | references/events-hooks.md |

| Smoke-test the TUI | C | scripts/tui-smoke.sh | references/tui-tmux.md |

| Write/run a test in the opencode source | - | (bun test) | references/testing-harness.md |

| Drive opencode from a Bun/TS script | - | (SDK) | references/sdk.md |

Case A: CLI / terminal works

The canonical scriptable, non-interactive entry is opencode run. JSON mode

emits one event per line so you can assert on it.

# stream structured events (types: text, tool_use, step_start, step_finish, reasoning, error)
opencode run "list files in src" --format json
# run a slash command
opencode run --command commit
# resume the last session
opencode run -c "continue"
# target an already-running server instead of booting one
opencode run "explain auth" --attach http://127.0.0.1:4096 -p "$OPENCODE_SERVER_PASSWORD"

Other QA-useful commands: opencode db path, opencode debug paths,

opencode session list --format json, opencode models --verbose. Full flag

detail in references/cli-commands.md.

Case B: a specific hook, action, or event

opencode publishes lifecycle events over Server-Sent Events at GET /event.

Plugins observe the same events via the event hook, so seeing an event on the

wire proves a hook would fire.

# prove the SSE plumbing works (isolated server, asserts server.connected)
bash scripts/sse-hook-probe.sh --self-test

# watch a REAL server for a specific event while you trigger an action
bash scripts/sse-hook-probe.sh --attach http://127.0.0.1:4096 \
  --password "$OPENCODE_SERVER_PASSWORD" --directory "$PWD" \
  --event message.part.updated --timeout 30

Trigger an action over HTTP (fire-and-forget so the stream is not blocked):

curl -X POST -u opencode:$OPENCODE_SERVER_PASSWORD -H 'Content-Type: application/json' \
  -d '{"parts":[{"type":"text","text":"say hi"}]}' \
  "http://127.0.0.1:4096/session/<ses_id>/prompt_async?directory=$PWD"

A real prompt needs a configured provider, so run the watch-and-trigger pattern

against your real server, not the isolated sandbox. Event-type catalog, the 21

plugin hook points, and how to load a local plugin: references/events-hooks.md.

Server start, auth, and routes: references/server-api.md.

Case C: the TUI

bash scripts/tui-smoke.sh --self-test

This launches the TUI under tmux in an isolated sandbox, confirms it renders

(capture-pane), confirms send-keys reaches the composer, tears the tmux

session down, and verifies the real DB session count is unchanged.

When TUI visual QA evidence is needed for a PR, follow

docs/reference/web-terminal-visual-qa.md: render the TUI through the real

xterm.js web terminal and screenshot it - NEVER the tmux capture-pane frame,

which degrades color and CJK width. From the repository root:

node script/qa/web-terminal-visual-qa.mjs --title "OpenCode TUI QA" \
  --command "opencode" --input "{Enter}" \
  --evidence-dir .omo/evidence/<slug>/opencode-web-terminal

This runs a real pty, renders it in xterm.js under Chrome, and writes

terminal.txt, terminal-ansi.txt, terminal.png (the true-color artifact),

and metadata.json with a cleanup receipt (--from-file <capture.ansi> replays

a saved raw stream). The isolated scripts/tui-smoke.sh remains the canonical

OpenCode TUI boot smoke (tmux), separate from this visual evidence.

Honest verdict: tmux is fine for SMOKE (did it boot, render, accept a key) but

fragile for asserting conversation output (the TUI is a 60fps full-screen app).

For real behavior assertions use Case A (opencode run), Case B (server API +

SSE), or the TUI control HTTP API (POST /tui/append-prompt,

POST /tui/submit-prompt, POST /tui/execute-command). Details and the manual

tmux recipe: references/tui-tmux.md.

Case D: investigate sessions in the DB

Read-only against the live SQLite DB. The session table is small (title and

id lookups are instant); message text lives in the multi-GB part table, so

text search must be scoped.

# by id
bash scripts/db-session-by-id.sh ses_3a4ee6335ffedFB8f76BPU1Eb3
# by title / name (newest first; second arg = limit)
bash scripts/db-session-by-name.sh "auth refactor" 20
# by message text - scope with --session, --recent N, or --since "<window>"
bash scripts/db-session-by-text.sh --session ses_3a4e... "ULTRAWORK"
bash scripts/db-session-by-text.sh --recent 50 "permission denied"
bash scripts/db-session-by-text.sh --since "7 days" --limit 50 "TODO"
# export an entire session as clean JSON
bash scripts/export-roundtrip.sh ses_3a4e... > session.json

Ad hoc queries: opencode db "<SQL>" --format json. Schema, tested query

shapes with timings, the legacy message/part vs V2 session_message

distinction, and the 25 GB caveat: references/db-investigation.md.

Scripts index

Run any script with --self-test to verify it against the live machine, or

-h for usage. DB-read scripts are read-only; serve/sse/tui scripts use an

isolated sandbox and clean up on exit.

| Script | Case | Self-test asserts |

|---|---|---|

| scripts/lib/common.sh --self-check | - | deps present, DB path resolves, SQL escaping, free port, sandbox auto-removed |

| scripts/db-session-by-id.sh | D | id round-trips for a real session |

| scripts/db-session-by-name.sh | D | a derived title needle returns >=1 row |

| scripts/db-session-by-text.sh | D | scoped search hits; unbounded scan refused; bounded search <30s |

| scripts/export-roundtrip.sh | D | export stdout is valid JSON and .info.id round-trips |

| scripts/server-smoke.sh | B | /global/health healthy, /doc >=100 paths, no-auth -> 401 |

| scripts/sse-hook-probe.sh | B | /event opens and delivers server.connected |

| scripts/tui-smoke.sh | C | TUI renders under tmux, tears down, real DB untouched |

Risks and caveats

  • 25 GB part table: never run an unbounded text scan. Use --session,

--recent, or --since. A naive JOIN ... WHERE session.time_created >= X

scans oldest-first and can take ~50s; the scripts use an IN-subquery on the

newest sessions (~20ms).

  • opencode export writes its banner to STDERR; pipe with 2>/dev/null before

jq or you will get a parse error.

  • The server enforces auth only when OPENCODE_SERVER_PASSWORD is set;

otherwise it runs unsecured. Authenticated calls use -u opencode:$PASS.

Unauthenticated calls to a secured server return HTTP 401.

  • Installed binary vs dev source: cite dev source paths for internals but

verify flags against the installed opencode <cmd> --help.

  • Isolation: any QA that spawns opencode must use an isolated XDG sandbox so it

never pollutes the real DB. Prove it by comparing

sqlite3 "$(opencode db path)" "SELECT count(*) FROM session" before and

after.

  • TUI output assertions are fragile; use the API for real assertions.

References

  • references/cli-commands.md - every QA-relevant opencode subcommand and flag
  • references/db-investigation.md - DB schema, tested queries, the 25 GB caveat
  • references/server-api.md - server start, auth, route catalog, /doc
  • references/events-hooks.md - SSE endpoints, event types, plugin hooks
  • references/tui-tmux.md - tmux recipe, isolation, TUI control API
  • references/testing-harness.md - how opencode tests itself (bun test)
  • references/sdk.md - the @opencode-ai/sdk client (reference only)
  • references/docker-qa.md - run QA in a disposable Docker container (default; local is the fallback)

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

它属于哪个仓库

星标★ 69,100
本站分层T1
该仓技能数62
原文件路径.agents/skills/opencode-qa/SKILL.md

同一个仓库里的其他技能

看这个仓库的全部 62 个技能