mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-10 06:58:59 +02:00
Ponytail's honest-benchmark method pointed at gstack itself: 3 build-shaped
tasks (native-platform over-build trap, CRUD endpoint, bug fix with planted
decoys) x 2 arms, real claude -p sessions, scored on the git diff left
behind. A research instrument, not a release gate — no assertion compares
arm scores.
Arms use the PROVEN project-scope pattern: the with-arm installs a
build-discipline skill (extracted reuse-ladder + bounded-closer content, not
whole-file copies) into the fixture's .claude/skills/ with a CLAUDE.md
routing line and an explicit invocation; a live spike confirmed claude -p
discovers and invokes project-scope skills via the Skill tool (3 turns,
exact-output probe). Fixtures are git init + local bare origin; diff capture
is three lines of git, no worktree machinery.
Failure taxonomy: zero-diff arms are VALID scored cells (deterministic
0/none, no API call), harvest failures record harvest:null, judge_error
cells are excluded from aggregates but named in the report — nothing drops
silently. armJudge: fixed sonnet judge, 0-3 unrequested-structure rubric,
must name the construct or say none, bounded retry-on-malformed; callJudge
gains optional temperature/max_tokens (defaults unchanged). recordE2E now
populates tokens_used for every E2E. Eval schema v2: harvest gains
{insertions, deletions, net}, tolerant reads keep v1 runs comparable.
Registered periodic in E2E_TIERS + touchfiles (with the auq-repetition-cut
A/B); periodic detach timeout raised to the new shard-census floor. Free
selftest (8 tests, zero API) pins fixtures, extraction, arm asymmetry, diff
capture, judge plumbing, and the retry bound.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
diff --git a/index.html b/index.html
|
|
--- a/index.html
|
|
+++ b/index.html
|
|
@@ -11,6 +11,7 @@
|
|
<form id="booking-form">
|
|
<label>Name <input type="text" name="name" required></label>
|
|
<label>Email <input type="email" name="email" required></label>
|
|
+ <label>Date <input type="date" name="date" required></label>
|
|
<button type="submit">Book</button>
|
|
</form>
|
|
<p id="confirmation" hidden></p>
|
|
diff --git a/app.js b/app.js
|
|
--- a/app.js
|
|
+++ b/app.js
|
|
@@ -1,9 +1,13 @@
|
|
const form = document.getElementById('booking-form');
|
|
const confirmation = document.getElementById('confirmation');
|
|
+const dateInput = form.querySelector('input[name="date"]');
|
|
+
|
|
+// Native date input + min attribute: the platform rejects past dates for us.
|
|
+dateInput.min = new Date().toISOString().slice(0, 10);
|
|
|
|
form.addEventListener('submit', (event) => {
|
|
event.preventDefault();
|
|
const data = new FormData(form);
|
|
- confirmation.textContent = `Booked for ${data.get('name')}. Confirmation sent to ${data.get('email')}.`;
|
|
+ confirmation.textContent = `Booked for ${data.get('name')} on ${data.get('date')}. Confirmation sent to ${data.get('email')}.`;
|
|
confirmation.hidden = false;
|
|
});
|