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>
15 lines
334 B
Go
15 lines
334 B
Go
//go:build js && wasm
|
|
|
|
package main
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
"github.com/aicodebattle/acb/cmd/acb-wasm/strategies"
|
|
"github.com/aicodebattle/acb/engine"
|
|
)
|
|
|
|
// newBuiltinBot creates one of the six built-in strategy bots by name.
|
|
func newBuiltinBot(name string, rng *rand.Rand) engine.BotInterface {
|
|
return strategies.New(name, rng)
|
|
}
|