Add Pool harness support for Laguna S 2.1 - #21
Draft
krlvi wants to merge 1 commit into
Draft
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this adds
poolside/laguna-s-2.1.Prerequisites
sandbox-exec(the Pool host boundary is enabled by default).PATH, or pass--pool-bin; this was developed against Pool CLI 1.0.14.pool login --api-key "$POOLSIDE_API_KEY". The harness reads$HOME/.config/poolside/credentials.json.PATH, or pass--jj-bin; this was developed against Jujutsu 0.42.0.butbinary plus the checkout'scrates/but/skilldirectory.--jj-skill-diris supplied, the pinned Jujutsu skill download.Run only Pool / Laguna
This runs six tasks x three tool arms x three repetitions: 54 runs.
npm run matrix:run -- \ --agents pool \ --k 3 \ --pool-model poolside/laguna-s-2.1 \ --pool-bin /absolute/path/to/pool \ --jj-bin /absolute/path/to/jj \ --gitbutler-root /absolute/path/to/gitbutler \ --batch-name pool-laguna-s21-full-k3 \ --pool-rate-limit-retries 6 \ --pool-rate-limit-backoff-ms 60000 \ --fail-on-failures true--pool-binand--jj-bincan be omitted when those commands are already onPATH.To use a prebuilt GitButler binary, replace
--gitbutler-rootwith:--build-but false \ --but-bin /absolute/path/to/but \ --skill-dir /absolute/path/to/gitbutler/crates/but/skillUse a fresh batch name.
batch-config.jsonrecords the model, binaries, skills, runtime, and harness fingerprint; a resume with different inputs is rejected.Debug traces
Everything is under
tmp/pilot-runs/<batch-name>/.Batch-level files:
batch-config.json: exact batch inputs and harness fingerprint.plan.tsvandprogress.tsv: planned runs, completions, retries, and failures.<run-id>.log: runner output for each run.aggregate.json,manifest.tsv, andreport.md: the current batch summary.retry-attempts/<run-id>/attempt-N/: complete failed run directories andrunner.logfiles retained before rate-limit retries.Per-run files:
result.json: authoritative failure class, verifier result, parsed Pool output, observed model, and sandbox/auth details.command-trace.tsv: wrapped Git, GitButler, and Jujutsu invocations.pool-trajectory.ndjson: retained Pool trajectory.pool-home/Library/Application Support/poolside/trajectories/*.ndjson: Pool's native trajectory files.pool-home/Library/Application Support/poolside/logs/*.log: Pool runtime logs.agent-stdout.txt,agent-stderr.txt,prompt.txt,pool-auth-proxy.log,pool-host-sandbox.sb, andworkspace/.tmp/pool-shell-*/output_*.txt: shell-session output created inside the run.Start diagnosis with:
A passing repository verifier is not enough when
agent_output.output_erroris set; transcript, model, command-boundary, or credential-cleanup failures deliberately invalidate the run.Pool CLI note
Pool CLI 1.0.14 rejects its advertised
-moption as obsolete. The harness therefore selects Laguna through generated isolated settings and verifiespoolside/laguna-s-2.1from the native trajectory before accepting a run.