Installation
Install Goa-AI and set up your development environment.
This section guides you through getting started with Goa-AI development. You’ll learn how to:
When working with Goa-AI, your development workflow typically follows these steps:
After completing the getting started guides, you can:
Keep your design files in a separate design package: This separation helps maintain a clear distinction between your agent design and implementation. It makes it easier to manage changes to your agent contract independently from your planner logic.
Run goa gen after any design changes: Keeping generated code in sync with your design is crucial. Running goa gen ensures that your agent packages, tool specs, and workflows always reflect your current agent design.
Version control your generated code: While generated code can be recreated, versioning it helps track agent evolution, makes deployments more reliable, and enables easier code review of agent changes.
Use the generated tool specs: The auto-generated tool specs serve as a valuable resource for both development and validation. They provide type-safe access to tool payloads and results.
Follow consistent naming conventions: Use descriptive and consistent names for your agents, toolsets, and tools in your design. This makes your agent architecture more intuitive and easier to maintain.
Leverage Goa’s type system: Take advantage of Goa’s rich type system to define precise tool payloads and validation rules in your design. This reduces boilerplate validation code and ensures consistent data handling.
Ready to begin? Start with Installation to set up your Goa-AI development environment.