Agent Skills
› nowledge-co/con-terminal
› terminal-agent-benchmark
terminal-agent-benchmark
GitHub用于运行和维护终端智能体基准测试,验证 con-cli、SSH 工作区复用及 tmux 感知能力。支持严格与算子配置集执行、评分及趋势报告生成,为回归测试和发布说明收集证据。
Trigger Scenarios
验证终端原生智能体功能
收集回归测试证据
评估 SSH 或 tmux 变更影响
Install
npx skills add nowledge-co/con-terminal --skill terminal-agent-benchmark -g -y
SKILL.md
Frontmatter
{
"name": "terminal-agent-benchmark",
"description": "Run and maintain Con's terminal-agent benchmark against a live app session. Use when validating con-cli, SSH workspace reuse, tmux awareness, agent-target preparation, or when collecting benchmark evidence for regressions and release notes."
}
Terminal Agent Benchmark
Use this skill when you need to evaluate Con as a terminal-native agent, not just compile it.
Primary references:
Default workflow
- Confirm a live app session and socket exist.
- Run the strict benchmark:
python3 benchmarks/terminal-agent/run.py --suite strict
- If provider setup is present, run:
CON_BENCH_ENABLE_AGENT=1 python3 benchmarks/terminal-agent/run.py --suite all
- Prefer a built-in profile when one matches the workflow:
python3 benchmarks/terminal-agent/run.py --list-profilespython3 benchmarks/terminal-agent/run.py --profile basic-local-shellCON_BENCH_ENABLE_AGENT=1 python3 benchmarks/terminal-agent/run.py --profile basic-local-codex --suite all
- Use starter profiles for quick regression checks and operator profiles for richer coding, SSH maintenance, or tmux dev-loop evaluation.
python3 benchmarks/terminal-agent/run.py --profile operator-local-codex-devloop --suite operatorpython3 benchmarks/terminal-agent/run.py --profile operator-local-claude-devloop --suite operatorpython3 benchmarks/terminal-agent/run.py --profile operator-local-opencode-devloop --suite operatorpython3 benchmarks/terminal-agent/run.py --profile operator-ssh-dual-host-maintenance --suite operatorpython3 benchmarks/terminal-agent/run.py --profile operator-ssh-tmux-devloop --suite operator
- For SSH/tmux changes, run the relevant playbook under
benchmarks/terminal-agent/playbooks/. - Save the JSON record under
.context/benchmarks/and cite it in your report. - If the run is an operator benchmark, score it with:
python3 benchmarks/terminal-agent/score.py --profile ... --record ... --score ...
- Generate a trend report when comparing many runs:
python3 benchmarks/terminal-agent/report.py
Rules
- Prefer
pane_idoverpane_indexwhen following up on benchmark findings. - Keep benchmark control on the existing
panes.*API unless the benchmark explicitly targets pane-local surfaces. Surface support is additive and should not change the built-in agent's pane/tool contract. - Do not treat playbook observations as strict pass/fail evidence unless the behavior is actually deterministic.
- If a scenario depends on host setup, say so explicitly.
- Keep operator playbooks safe-by-default. Prefer read-only checks first, and treat destructive or privileged steps as explicit branches.
- If a benchmark reveals a product limit, document the limit instead of hiding it behind a softer assertion.
- Operator suites intentionally serialize
agent askturns. If a tab already has a pending agent request, let the runner wait and reuse the same tab instead of opening a parallel benchmark against it.
Version History
- ba63ca0 Current 2026-07-24 22:26


