1. Add LM_ADDRESS and POOL_ADDRESS to ponder .env.local (bootstrap.sh)
2. Discover pool address from Uniswap factory during bootstrap (bootstrap-common.sh)
3. Make ring buffer block threshold configurable via MINIMUM_BLOCKS_FOR_RINGBUFFER env var,
set to 0 for local dev so early events populate the ring buffer
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Docker containers running inside LXD need security_opt apparmor=unconfined
to avoid permission denied errors on Unix socket creation (anvil, postgres).
Umami port moved from 3000 to 3001 to avoid conflict with Forgejo when
running alongside the disinto factory stack.
Test prediction #1185: ponder 504 Gateway Timeout is NOT persistent.
Fresh stack start shows ponder healthy (<50ms, all 200 OK).
Staking still blocked by webapp protocol-stats fetch issue.
0/5 personas completed staking, 5/5 wallet+buy succeeded.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
AGENTS.md watermarks refreshed to HEAD (79a93d4).
Grooming: closed 2 prediction/actioned issues.
- #1179: /stakestake fix verified working in post-fix user-test (2026-03-27)
- #1177: fresh red-team session 2026-03-27 with 7 real attacks (floor_held)
Remaining open: #1166, #1141 (prediction/backlog, planner watching),
#857, #856, #383 (vision).
No blocked issues, no open PRs, no stale PRs.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Replace ghost evidence from crashed 2026-03-26 session with real
adversarial coverage data. 7 strategies tested, all HELD. Per-attack
structured data with strategy, outcome, eth_extracted, floor_held_for_attack,
delta_bps, and insight fields populated from raw session output.
Fixes#1178
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Floor held under 7 adversarial strategies. LM ETH unchanged
(~1000 ETH). No extraction vector found.
Strategies: IL crystallization, multi-cycle oscillation,
parasitic LP, staking-mode exploit, round-trip attacks.
Replaces the ghost 2026-03-26 evidence (crashed mid-session,
empty attacks[]). This run completed to produce real per-attack
data.
Resolves: #1178
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Ran all 5 persona Playwright specs against full stack after PR #1171
fixed the /stakestake navigation bug. Results:
- Navigation fix VERIFIED: /stake route works correctly (no /stakestake)
- 5/5 wallet connections succeeded
- 0/5 on-chain stakes completed (new blocker: ponder 504 timeout)
- 2/5 tests crashed due to chain snapshot/revert state corruption
Closes#1180
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
AGENTS.md watermarks refreshed to HEAD (7d72f40).
landing/AGENTS.md: document new pitch-deck.html (influencer outreach).
Grooming: CLEAN — 5 open issues (2 prediction/backlog, 3 vision), no
backlog issues, no blocked issues, no open PRs.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Add HTML pitch deck at /pitch-deck.html covering:
- What KRK is and the floor mechanism
- Three-position liquidity architecture
- Three user funnels (hold, stake, compete)
- How to buy and stake instructions
- Why the floor matters (asymmetric downside protection)
- Comparison vs typical DeFi tokens
- Proper risk disclaimers per PRODUCT-TRUTH.md
The deck is print-optimized with page breaks for PDF export.
Footer link added to landing page for discoverability.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
## Summary
PR #1172 (evidence: red-team 2026-03-26) was merged despite the review bot requesting schema fixes. This PR applies the corrections identified in that review.
## Changes
- `profile` → `optimizer_profile`
- `result: "PASS"` → `verdict: "floor_held"`
- `lm_eth_before`/`lm_eth_after`: integer ETH values → wei strings (×1e18)
- Add missing `candidate_commit`: `a76d393` (most recent OptimizerV3Push3 optimizer commit)
- Add missing `eth_extracted: 0`
- Add `attacks: []` (per-attack raw data is unrecoverable — session crashed due to Claude auto-update)
## Why this matters
The planner reads evidence files programmatically. Schema violations break automated delta_bps calculation and candidate tracking.
## Root cause of original violation
The action session that produced this evidence crashed due to a Claude Code auto-update mid-run. Evidence was reconstructed from diagnostics, and the schema was not matched correctly to the existing files.
Reviewed-on: https://codeberg.org/johba/harb/pulls/1173
Reviewed-by: Disinto_bot <disinto_bot@noreply.codeberg.org>
Use URL.origin instead of splitting on '#' to construct the stake URL,
preventing path duplication when the page is already on /stake.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
PR #1160 wallet connector fix verified working. All 5 personas now
connect wallets successfully via desktop Connect button (previously 0/5).
New issue discovered: /stakestake navigation bug in attemptStake helper.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
AGENTS.md watermarks refreshed to HEAD (4dedc72). Watermark bump only —
no code changes since last gardener run.
Pending actions (3): re-queue promotion of #1155 pitch-deck to backlog
(pending actions from PR #1162 were not executed by orchestrator).
Escalate: #1158 (Phase 1 completion accuracy) — still needs planner/human decision.
Add a lightweight always-run passthrough pipeline that triggers on all PRs
and exits 0, ensuring every PR gets at least one successful CI status.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Replace fixed sleeps with proper observable waits:
- wagmi settle: waitFor on '.connect-button--disconnected, .connect-button--connected'
which auto-retries until wagmi renders a terminal state
- panel animation: connector.waitFor already handles this
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The deep link test's wallet connection was silently failing because
isVisible() returns immediately without waiting for the element to
appear. wagmi needs time to settle into 'disconnected' state after
provider injection. Now uses waitFor() which properly auto-retries,
plus adds a 2s delay matching the pattern used in test 01.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>