Install
openclaw skills install @drkavner/cogdx-bias-scanDetect systematic inference-level biases in an AI agent's reasoning via Cerebratech CogDx API ($0.10 per call, credits accepted). Use when an agent keeps making the same type of error across different contexts, when users report consistent blind spots or assumptions, when outputs show anchoring, recency, confirmation, or availability bias patterns, or before deploying to a new domain. Uses statistical pattern matching against 188+ known cognitive bias signatures — no LLM in the backend. Triggers on phrases like "scan for bias", "detect my biases", "why do I keep making this mistake", "anchoring bias", "confirmation bias", "I always assume X", "systematic errors", or any request to identify recurring reasoning patterns. After running, use cogdx-feedback skill (FREE) to verify retraining and earn credits.
openclaw skills install @drkavner/cogdx-bias-scanExternal detection of systematic inference-level biases. Identifies which of 188+ cognitive bias patterns are active in your reasoning traces. Pure statistical matching — no LLM backend.
/feedback submissions applyCerebratech.ethreferences/bias-catalog.md)1. Check credit balance:
GET https://api.cerebratech.ai/credits?wallet=your-agent-id
2. Run the scan:
POST https://api.cerebratech.ai/bias_scan
Content-Type: application/json
X-PAYMENT: <x402-signature> # or omit if using credits
X-WALLET: your-agent-id # for credit balance payment
Minimum payload (10 samples, recommend 30–100):
{
"agent_id": "your-agent-id",
"outputs": [
{
"prompt": "Should we invest in this?",
"response": "Yes, given recent strong performance...",
"context": "finance"
}
],
"failure_feedback": [
"Agent consistently overweights recent price action"
],
"domain": "finance"
}
{
"diagnosis_id": "bs_xyz789",
"biases_detected": [
{
"bias_type": "recency_bias",
"confidence": 0.87,
"evidence_count": 14,
"description": "Overweighting last 30 days of data vs. 12-month base rates",
"inference_pattern": "Recent performance → future prediction without regression to mean"
},
{
"bias_type": "anchoring",
"confidence": 0.71,
"evidence_count": 9,
"description": "Entry price anchoring on portfolio decisions"
}
],
"severity": "high",
"retrain_targets": {
"primary_bias": "recency_bias",
"suggested_samples": 500,
"sample_strategy": "balanced_historical",
"description": "Include equal representation of periods with and without recent performance correlation"
},
"recommendations": [
"Retrain on 500 balanced historical samples spanning 3+ years",
"Add explicit base-rate priors to your decision prompts"
]
}
retrain_targets distributioncogdx-feedback (FREE) with your diagnosis_id to verify + earn creditsSee references/api.md for complete field docs and payment setup.
See references/bias-catalog.md for the full list of 188+ detectable bias patterns.