Skip to main content

Integration validation checklist

1

Backend health is stable

curl -s http://localhost:3001/health | jq .
Confirm status is ok and version is present.
2

Core endpoints respond

curl -s -X POST http://localhost:3001/api/v1/keys/generate | jq .
curl -s http://localhost:3001/api/v1/registry/stats | jq .
3

Create and scan round-trip works

Re-run /getting-started/quickstart and confirm discovery output is non-empty.
4

CLI path is available

cd SPECTER/specter
cargo run --bin specter -- --help
Confirm commands include generate, resolve, create, scan, serve, and bench.

Integration-ready definition

You are integration-ready when:
  • /health is stable
  • key generation and registry stats endpoints succeed
  • quickstart round-trip returns a discovery
  • your team can repeat the same results with CLI or API