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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ corpus/
test_repo/
.sic-run-*/
.swe-run-*/
.gen2-runs/
.gen3-runs/
4 changes: 2 additions & 2 deletions bench/src/agent-graphs-gen2.mts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Smoke: GEN2_SMOKE=1 pnpm tsx src/agent-graphs-gen2.mts — stubs both LLM calls,
* exercises the full loop wiring + gate + report at zero cost.
*
* Writes skills/agent-graphs/gen2.json; on ship, replaces SKILL.md with v2.
* Writes skills/agent-graphs/generations/gen2.json; on ship, replaces SKILL.md with v2.
*/

import { createHash } from 'node:crypto'
Expand Down Expand Up @@ -56,7 +56,7 @@ import {
const HERE = dirname(fileURLToPath(import.meta.url))
const REPO = join(HERE, '..', '..')
const SKILL_PATH = join(REPO, 'skills', 'agent-graphs', 'SKILL.md')
const OUT_PATH = join(REPO, 'skills', 'agent-graphs', 'gen2.json')
const OUT_PATH = join(REPO, 'skills', 'agent-graphs', 'generations', 'gen2.json')
const RUNS_ROOT = join(REPO, '.gen2-runs')
const SMOKE = process.env.GEN2_SMOKE === '1'

Expand Down
Loading