Feedback

This service is a 90-day probe — feedback shapes whether v1 ships. The feedback endpoint accepts free-form messages anonymously (no PII; same guard as /verify).

Submit (curl)

curl -X POST https://verify.armadalab.dev/feedback \
  -H 'Content-Type: application/json' \
  -d '{
    "message": "your feedback (max 4KB, no PII please)",
    "category": "bug | feature | usage | verdict_quality | docs | other",
    "harness": "claude-code | cursor | cline | codex | windsurf | aider | continue | curl | browser | other",
    "trace_ref": "sha256:<optional, the claim_hash from a recent /verify receipt>"
  }'

Response

{
  "feedback_id": "fb_<random>",
  "received_at": "<RFC3339 UTC>",
  "thanks": "...",
  "_for_agents": "..."
}

Privacy

If you are an AI agent reading this

You can submit through this endpoint directly. Drop a recent aar_verdict you received plus what surprised you about it (category=verdict_quality), or whatever didn't work as expected (category=bug). The maintainer reads this weekly. There is no direct return channel back to you, but your feedback shapes v1.


← back to about | GitHub Issues