Files
zitadel/apps/api/AGENTS.md
T

1.1 KiB

ZITADEL API App Guide for AI Agents

Context

The API App (apps/api) is the Nx application target for building and running the Go backend. Most backend implementation lives in internal/, while this project orchestrates build, generate, lint, and test workflows.

Source of Truth

  • Go Toolchain: Inspect root go.mod before Go work.
  • API Design Contract: Follow API_DESIGN.md for service and resource conventions.
  • Domain Logic Location: For implementation details, also read internal/AGENTS.md.

Verified Nx Targets

  • Run API (prod profile): pnpm nx run @zitadel/api:prod
  • Build: pnpm nx run @zitadel/api:build
  • Generate (all): pnpm nx run @zitadel/api:generate
  • Lint: pnpm nx run @zitadel/api:lint
  • Test (all): pnpm nx run @zitadel/api:test
  • Test (unit): pnpm nx run @zitadel/api:test-unit
  • Test (integration): pnpm nx run @zitadel/api:test-integration

Generation Notes

  • @zitadel/api:generate can update generated, tracked files (stubs/assets/statik). Run it intentionally.
  • API changes in proto/ often require regenerating API, package, and docs artifacts.