verify
Run the full test suite:
make test
This runs go test -count=1 across ./application/..., ./domain/..., ./infrastructure/..., ./cmd/..., and ./e2e/....
The -count=1 flag disables caching so results are always fresh. The e2e package builds the git-agent binary once at the start — any code changes made before running this skill will be compiled in automatically.
If a specific package is failing, re-run just that package:
go test ./application/...
go test ./infrastructure/config/...
go test ./e2e/...
To run a single test by name:
More from gitagenthq/git-agent-cli
use-git-agent
Operates the git-agent CLI — commits, init, config, and provider setup via ~/.config/git-agent/config.yml or git config. Provider CLI overrides belong in exception flows only. Use whenever the user mentions git-agent, wants to commit/init, or needs to configure a provider.
67build-release
Build git-agent with embedded credentials (CLIENT_TOKEN, WORKER_URL, MODEL) via scripts/build.sh. Use when you need a fully functional binary for manual testing or pre-release verification.
1