Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions site/harnesses/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ <h3>Cline</h3>
<p class="harness-card__chips">
<span class="harness-chip">Pass <code>deepseek-v4-flash</code> → <code>qwen3.7-plus</code></span>
<span class="harness-chip">Credits <code>deepseek-chat</code> → <code>qwen3-coder-plus</code></span>
<span class="harness-chip">Judge Composer 2.5</span>
<span class="harness-chip">Judge any runtime, optional</span>
</p>
<p class="harness-card__run"><code>pnpm exec agent-loop run .cursor/loops/my-task --runtime cline-pass --review-gate</code></p>
<p class="harness-card__note">Install <code>@cline/sdk</code>. Use <code>--runtime cline</code> for credits.</p>
Expand All @@ -154,7 +154,7 @@ <h3>OpenCode</h3>
<p class="harness-card__chips">
<span class="harness-chip">Go <code>deepseek-v4-flash</code> → <code>qwen3.7-plus</code></span>
<span class="harness-chip">BYOK <code>openrouter/…</code></span>
<span class="harness-chip">Judge Cursor or <code>reviewRuntime: opencode</code></span>
<span class="harness-chip">Judge any runtime, optional</span>
</p>
<p class="harness-card__run"><code>pnpm exec agent-loop run .cursor/loops/my-task --runtime opencode --review-gate</code></p>
<p class="harness-card__note">Install <code>@opencode-ai/sdk</code>; ensure <code>opencode</code> CLI is on PATH.</p>
Expand All @@ -171,7 +171,7 @@ <h3>Pi</h3>
<p class="harness-card__job"><code>@earendil-works/pi-coding-agent</code> — OpenRouter by default or another OpenAI-compatible router you configure.</p>
<p class="harness-card__chips">
<span class="harness-chip">Worker <code>openrouter/deepseek-chat</code> → <code>qwen3-coder-plus</code></span>
<span class="harness-chip">Judge Cursor or <code>reviewRuntime: pi</code></span>
<span class="harness-chip">Judge any runtime, optional</span>
</p>
<p class="harness-card__run"><code>pnpm exec agent-loop run .cursor/loops/my-task --runtime pi --review-gate</code></p>
<p class="harness-card__note">Install <code>@earendil-works/pi-coding-agent</code>.</p>
Expand All @@ -188,7 +188,7 @@ <h3>Codex</h3>
<p class="harness-card__job"><code>@openai/codex-sdk</code> and <code>codex</code> CLI — ChatGPT / OpenAI BYO.</p>
<p class="harness-card__chips">
<span class="harness-chip">Worker <code>gpt-5.6-luna</code> → <code>gpt-5.6-terra</code></span>
<span class="harness-chip">Judge Cursor or <code>reviewRuntime: codex</code> (<code>gpt-5.6-sol</code>)</span>
<span class="harness-chip">Judge any runtime, optional</span>
</p>
<p class="harness-card__run"><code>pnpm exec agent-loop run .cursor/loops/my-task --runtime codex --review-gate</code></p>
<p class="harness-card__note">Install <code>@openai/codex-sdk</code>; ensure <code>codex</code> CLI is on PATH.</p>
Expand Down
8 changes: 4 additions & 4 deletions site/harnesses/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ DeepSeek Harness CLI — worker is `dsh --profile headless`; `dsh-agent-looper`

- `cline-pass` worker: `cline-pass/deepseek-v4-flash` → `qwen3.7-plus`
- `cline` worker: `deepseek/deepseek-chat` → `qwen/qwen3-coder-plus`
- Judge: Cursor Composer 2.5 (unless `reviewRuntime` is set)
- Judge: any runtime, optional
- Run: `pnpm exec agent-loop run .cursor/loops/my-task --runtime cline-pass --review-gate` (or `--runtime cline` for credits)

### OpenCode (`--runtime opencode`)
Expand All @@ -57,21 +57,21 @@ DeepSeek Harness CLI — worker is `dsh --profile headless`; `dsh-agent-looper`

- Go worker: `opencode-go/deepseek-v4-flash` → `qwen3.7-plus`
- BYOK: `openrouter/…`, `vercel/…`, `ollama/…`
- Judge: Cursor, or `reviewRuntime: opencode` (DeepSeek V4 Pro)
- Judge: any runtime, optional
- Run: `pnpm exec agent-loop run .cursor/loops/my-task --runtime opencode --review-gate`

### Pi (`--runtime pi`)

`@earendil-works/pi-coding-agent` — OpenRouter by default, or another OpenAI-compatible router you configure.

- Worker: `openrouter/deepseek/deepseek-chat` → `openrouter/qwen/qwen3-coder-plus`
- Judge: Cursor, or `reviewRuntime: pi`
- Judge: any runtime, optional
- Run: `pnpm exec agent-loop run .cursor/loops/my-task --runtime pi --review-gate`

### Codex (`--runtime codex`)

`@openai/codex-sdk` and `codex` CLI — ChatGPT / OpenAI BYO.

- Worker: `gpt-5.6-luna` → `gpt-5.6-terra`
- Judge: Cursor, or `reviewRuntime: codex` (default judge `gpt-5.6-sol`)
- Judge: any runtime, optional
- Run: `pnpm exec agent-loop run .cursor/loops/my-task --runtime codex --review-gate`
50 changes: 50 additions & 0 deletions src/site/landingAgentReadiness.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,56 @@ describe('landing agent readiness', () => {
expect(md).toContain('looper-bot.png')
})

it('Cline runtime card describes judge as optional, not a Cursor default', () => {
const html = readSite('harnesses/index.html')
const clineCard =
html.match(/<article class="harness-card" id="cline">[\s\S]*?<\/article>/)?.[0] ?? ''
expect(clineCard).toMatch(/any runtime/i)
expect(clineCard).toMatch(/optional/i)
expect(clineCard).not.toMatch(/Composer/i)
expect(clineCard).not.toMatch(/Judge Cursor/)
expect(clineCard).not.toMatch(/reviewRuntime:\s*cline/i)

const md = readSite('harnesses/index.md')
const clineSection = md.slice(
md.indexOf('### Cline'),
md.indexOf('### OpenCode'),
)
expect(clineSection).toMatch(/any runtime/i)
expect(clineSection).toMatch(/optional/i)
expect(clineSection).not.toMatch(/Composer/i)
expect(clineSection).not.toMatch(/Judge: Cursor/)
expect(clineSection).not.toMatch(/reviewRuntime:\s*cline/i)
})

it('OpenCode, Pi, and Codex runtime cards describe judge as optional, not a Cursor default', () => {
const html = readSite('harnesses/index.html')
const md = readSite('harnesses/index.md')
const cases = [
{ id: 'opencode', mdHeading: '### OpenCode', mdEnd: '### Pi' },
{ id: 'pi', mdHeading: '### Pi', mdEnd: '### Codex' },
{ id: 'codex', mdHeading: '### Codex', mdEnd: undefined },
] as const

for (const { id, mdHeading, mdEnd } of cases) {
const card =
html.match(
new RegExp(`<article class="harness-card" id="${id}">[\\s\\S]*?<\\/article>`),
)?.[0] ?? ''
expect(card, id).toMatch(/any runtime/i)
expect(card, id).toMatch(/optional/i)
expect(card, id).not.toMatch(/Judge Cursor/)
expect(card, id).not.toMatch(new RegExp(`reviewRuntime:\\s*${id}`, 'i'))

const mdStart = md.indexOf(mdHeading)
const mdSlice = mdEnd ? md.slice(mdStart, md.indexOf(mdEnd)) : md.slice(mdStart)
expect(mdSlice, id).toMatch(/any runtime/i)
expect(mdSlice, id).toMatch(/optional/i)
expect(mdSlice, id).not.toMatch(/Judge: Cursor/)
expect(mdSlice, id).not.toMatch(new RegExp(`reviewRuntime:\\s*${id}`, 'i'))
}
})

it('help section leads with dep, issues, optional telemetry, and Ko-fi', () => {
const html = readSite('index.html')
expect(html).toContain('id="help"')
Expand Down
Loading