Skip to main content

Tracks v0.3.0: Phase 1 Complete - The Core Web Layer

· 6 min read
Aaron Ross
Creator of Tracks, Owner of Anomalous Ventures

The day after Thanksgiving seems like the perfect time to share what we've been cooking up. Tracks v0.3.0 marks the completion of Phase 1 (Core Web Layer), and we're grateful for the progress. Generated applications now include a complete web stack with Chi router, templ templates, HTMX v2, TemplUI components, and a production-ready middleware stack.

What's in v0.3.0

Status: Phase 1 - Core Web Layer ✅ Complete

New in This Release:

  • ✅ Complete middleware stack (10 middleware with security headers, CSP, CORS)
  • ✅ TemplUI integration with 100+ shadcn-style components
  • tracks ui CLI commands for component management
  • ✅ Asset pipeline with TailwindCSS v4, HTMX v2, and hashfs caching
  • ✅ Air live reload for .templ, .css, and .js files
  • ✅ Working counter example demonstrating HTMX patterns
  • ✅ Comprehensive documentation for all features

Try It:

# Install via Homebrew (macOS/Linux)
brew install anomalousventures/tap/tracks

# Or with Go 1.25+
go install github.com/anomalousventures/tracks/cmd/tracks@v0.3.0

# Create a new project
tracks new myapp
cd myapp

# Start development (live reload with Air)
make dev

Tracks v0.2.0: Phase 0 Complete - Foundation Ready for Production

· 6 min read
Aaron Ross
Creator of Tracks, Owner of Anomalous Ventures

I'm excited to announce Tracks v0.2.0, marking the completion of Phase 0 (Foundation). The CLI tool can now generate production-ready Go web applications with clean architecture, comprehensive tooling, and multi-database support.

What's in v0.2.0

Status: Phase 0 - Foundation ✅ Complete

Available Now:

  • ✅ Complete tracks new command with project scaffolding
  • ✅ Multi-database driver support (LibSQL, SQLite3, PostgreSQL)
  • ✅ Development tooling (Makefile, Air, Docker Compose, golangci-lint, Mockery, CI/CD)
  • ✅ Auto-generated .env and automatic Docker service startup
  • ✅ Production-ready templates with health endpoints, logging, and configuration
  • ✅ Comprehensive documentation with tutorials and guides

Try It:

# Install (requires Go 1.25+)
go install github.com/anomalousventures/tracks/cmd/tracks@v0.2.0

# Create a new project
tracks new myapp
cd myapp

# Start development (auto-starts Docker, runs with live reload)
make dev

Tracks v0.1.0: CLI Foundation Complete

· 4 min read
Aaron Ross
Creator of Tracks, Owner of Anomalous Ventures

Tracks v0.1.0 is now available! This first release completes the CLI infrastructure foundation with a robust, extensible command-line tool ready for project generation.

What's in v0.1.0

Status: Phase 0 - Foundation (Epic 1: CLI Infrastructure ✅)

Available Now:

  • Full CLI with Cobra framework integration
  • Multiple output modes (Console, JSON, TUI-ready)
  • Smart environment detection (TTY, CI, piped output)
  • Theme system with Lip Gloss styling
  • Comprehensive test coverage
  • Complete documentation

Try It:

# macOS
brew install anomalousventures/tap/tracks

# Any platform with Go
go install github.com/anomalousventures/tracks/cmd/tracks@v0.1.0

# Verify installation
tracks version

Building Tracks: A Rails-Inspired Go Web Framework for the AI Era

· 14 min read
Aaron Ross
Creator of Tracks, Owner of Anomalous Ventures

Why I'm creating a batteries-included Go framework with AI integration and code generation

TL;DR

What is Tracks? An opinionated Go web framework that brings Rails-like conventions to Go while embracing modern tools like HTMX, templ, and SQLC. Unlike traditional frameworks, it generates clean, readable Go code you own completely—no runtime dependencies, no magic.

What makes it unique:

  • 🎛️ Interactive Terminal UI for development, debugging, and monitoring
  • 🤖 AI Integration via Model Context Protocol for intelligent code generation
  • 🎵 DAW-style generation - compose your app from separate "tracks" (models, services, handlers, templates)
  • 🚫 Zero runtime dependencies - generated code has no framework lock-in

Tech Stack: Go • HTMXtemplSQLCChiCasbinOpenTelemetry
Who it's for: Go developers who want rapid development without sacrificing control or code quality
Current Status: Phase 0 (Foundation) - Core scaffolding ✅ | Everything else 🚧

GitHubDocumentation