jedarden
|
f5d7553f98
|
Add Phase 7-9 features: evolution dashboard, WASM sandbox, enhanced replay
Phase 7 Evolution:
- Add live-export subcommand to acb-evolver for dashboard JSON generation
- Export programs, stats, and generation log to live.json
Phase 8 Enhanced Features:
- Add WASM game engine build (cmd/acb-wasm/) with JS bindings
- Add in-browser sandbox page with Monaco editor (web/src/pages/sandbox.ts)
- Add win probability computation (web/src/win-probability.ts)
- Add replay commentary generator (web/src/commentary.ts)
- Add clip maker for GIF/MP4 export (web/src/pages/clip-maker.ts)
- Add rivalry detection and pages (web/src/pages/rivalries.ts)
- Add replay feedback system (web/src/pages/feedback.ts)
- Add evolution dashboard page (web/src/pages/evolution.ts)
Phase 9 Platform Depth:
- Add predictions API (cmd/acb-api/predictions.go)
- Add series management API (cmd/acb-api/series.go)
- Add seasons API (cmd/acb-api/seasons.go)
- Add narrative generator for rivalries (cmd/acb-indexer/src/narrative.ts)
Engine Updates:
- Add debug field to move response schema
- Add match event timeline extraction
- Add replay enrichment fields
Web Updates:
- Update app.html navigation for new pages
- Add API client methods for predictions, series, seasons
- Export engine types for browser use
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
2026-03-29 01:13:23 -04:00 |
|
jedarden
|
6f1b50384c
|
Complete Phase 2: HTTP protocol and 6 strategy bots
Phase 2 Implementation:
- HMAC authentication for engine-to-bot communication
- Request signing with timestamp anti-replay
- Response signing for integrity verification
- HTTP bot client with timeout and crash detection
- Per-turn 3s timeout, 10 consecutive failure crash threshold
- Move validation (position ownership, direction validity)
- Integration tests for HTTP match execution
- 6 strategy bots in 6 languages:
- RandomBot (Python): Random valid moves - rating floor
- GathererBot (Go): Energy-focused with combat avoidance
- RusherBot (Rust): Aggressive core rushing via BFS
- GuardianBot (PHP): Defensive core protection
- SwarmBot (TypeScript): Formation-based group combat
- HunterBot (Java): Target isolation and hunting
All bots include:
- HMAC signature verification
- Dockerfile for containerization
- README documentation
All engine tests passing (32+ tests)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
2026-03-24 07:00:38 -04:00 |
|