## Installation
### Quick Install
# Linux / macOS
curl -fsSL https://vizb.goptics.org/install.sh | bash
# Windows
irm https://vizb.goptics.org/install.ps1 | iex
### Go Toolchain
go install github.com/goptics/vizb@latest
### Download Binary
Pre-built binaries for Linux, macOS, and Windows are available on the [releases page](https://github.com/goptics/vizb/releases).
## Documentation
Full documentation is available at **[vizb.goptics.org](https://vizb.goptics.org/)**:
- [Getting Started](https://vizb.goptics.org/getting-started/)
- [Parser Guide](https://vizb.goptics.org/guides/parsers/)
- [CLI Commands](https://vizb.goptics.org/commands/root/)
- [Grouping Guide](https://vizb.goptics.org/guides/grouping/)
- [Merging Guide](https://vizb.goptics.org/guides/merging/)
- [CI/CD Integration](https://vizb.goptics.org/ci-cd/github-action/)
## Development
This project uses [Task](https://taskfile.dev/) for managing development workflows.
### Setup
go install github.com/go-task/task/v3/cmd/task@latest
task init
### Available Tasks
task dev:ui # Run the UI in development mode
task dev:docs # Run the docs site in development mode
task build:ui # Build the UI
task build:cli # Build the binary (run from ./bin/vizb)
task build:docs # Build the docs for production
task build # Build everything
task test # Run tests
## License
This project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.