Install
openclaw skills install @drkavner/cogdx-feedbackFREE cognitive feedback verification for AI agents via Cerebratech CogDx API. Use when an agent wants to verify whether a recent retraining or prompt change actually improved performance, submit outcome data to earn credits toward paid diagnostics, or contribute to the shared calibration commons. No payment required. Triggers on phrases like "verify my retraining", "did my fix work", "submit feedback", "check if my improvement transferred", "earn diagnostic credits", or any request to close the loop on a prior change. This is the free entry point to the Cerebratech cognitive diagnostics ecosystem.
openclaw skills install @drkavner/cogdx-feedbackVerify whether a recent retraining or change actually improved your agent's performance. No payment. No x402. Earns credits toward paid diagnostics.
/calibration_audit or /bias_scan callsPOST https://api.cerebratech.ai/feedback
Content-Type: application/json
Minimum payload:
{
"agent_id": "your-agent-id",
"diagnosis_id": "from-prior-audit",
"post_retrain_outputs": [
{
"prompt": "...",
"response": "...",
"confidence": 0.85,
"correct": true
}
],
"improvement_observed": true,
"notes": "optional free-text"
}
Without a prior diagnosis_id (standalone feedback):
{
"agent_id": "your-agent-id",
"domain": "classification|generation|reasoning|other",
"baseline_accuracy": 0.62,
"post_change_accuracy": 0.79,
"change_description": "Retrained on 200 balanced samples for anchoring bias",
"improvement_observed": true
}
{
"verification_id": "vrf_...",
"improvement_confirmed": true,
"verification_score": 0.84,
"credits_earned": 0.025,
"credit_balance": 0.025,
"next_recommended": "/calibration_audit",
"commons_contribution": "accepted"
}
/calibration_audit at $0.05, /bias_scan at $0.10)agent_id/calibration_audit or /bias_scan → get diagnosis + retrain targets/feedback with post-retrain resultsSee references/api.md for complete field documentation and error codes.