
Verify
- 2 installs
- 78 repo stars
- Updated August 4, 2026
- gitagenthq/git-agent-cli
Run the git-agent CLI monorepo full test suite with `make test` after code changes to catch regressions across Go layers and e2e.
About
Verify is a git-agent-cli repository skill that tells your coding agent exactly how to validate the whole Go project after edits. Solo maintainers of CLI tools often skip e2e because it is slow or unclear; this skill standardizes on `make test`, which exercises application, domain, infrastructure, command, and end-to-end packages with uncached runs so the freshly built `git-agent` binary is what e2e actually hits. When something fails, the procedure narrows scope—rerun a single package or a named test—and for e2e regressions it explicitly prioritizes reading the failing spec in `e2e/` before chasing implementation details. That makes it a lightweight quality gate aligned with indie shipping habits: one command, fresh results, structured reporting back to you. Complexity is beginner-friendly if Go and Make are already on the machine. It does not replace linters or security scans; it confirms behavioral contracts across the repo layers your users depend on.
- Single entry: `make test` runs `go test -count=1` across application, domain, infrastructure, cmd, and e2e
- `-count=1` disables cache so results reflect the latest compile including fresh git-agent binary for e2e
- Targeted reruns: package-scoped `go test ./application/...` or `-run TestName` for one failing test
- E2e failures: read tests under `e2e/` for setup and assertions before diving into production code
- Agent reports back with output, failures, and likely causes
Verify by the numbers
- 2 all-time installs (skills.sh)
- Ranked #1,693 of 2,153 Testing & QA skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/gitagenthq/git-agent-cli --skill verifyAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 78 |
| Security audit | 3 / 3 scanners passed |
| Last updated | August 4, 2026 |
| Repository | gitagenthq/git-agent-cli ↗ |
What it does
Run the git-agent CLI monorepo full test suite with `make test` after code changes to catch regressions across Go layers and e2e.
Files
Run the full test suite:
make testThis 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:
go test ./application/... -run TestCommitService_NoStagedChangesIf an e2e test fails, read the failing test file in e2e/ to understand the setup and assertions before investigating the source code.
Report back with the test output, highlighting any failures and their likely cause.
Related skills
FAQ
Is Verify safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.