Complete BZZZ deployment system fixes with all remaining changes

## Additional Changes:
- Add test configurations and deployment artifacts
- Update web assets and build manifests
- Add version management scripts
- Include local test configs (.bzzz/ directory)
- Update internal runtime and agent configurations
- Refresh Next.js build artifacts

## Final State:
- Complete deployment system working end-to-end
- ironwood successfully deployed and operational
- All hardcoded values removed from codebase
- Config generation and validation fully functional

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-08-31 22:06:01 +10:00
parent da1b42dc33
commit 03d938037a
75 changed files with 548 additions and 117 deletions

View File

@@ -12,12 +12,29 @@ import (
"chorus.services/bzzz/logging"
)
// simpleLogger implements the logging.Logger interface
type simpleLogger struct {
name string
}
func (l *simpleLogger) Info(msg string, args ...interface{}) {
log.Printf("[INFO] %s: "+msg, append([]interface{}{l.name}, args...)...)
}
func (l *simpleLogger) Warn(msg string, args ...interface{}) {
log.Printf("[WARN] %s: "+msg, append([]interface{}{l.name}, args...)...)
}
func (l *simpleLogger) Error(msg string, args ...interface{}) {
log.Printf("[ERROR] %s: "+msg, append([]interface{}{l.name}, args...)...)
}
func main() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Create logger for agent
logger := logging.NewStandardLogger("bzzz-agent")
logger := &simpleLogger{name: "bzzz-agent"}
// Create runtime
rt := runtime.NewRuntime(logger)