← Back to Skills Marketplace
drkavner

Cogdx

by Dr Amanda Kavner · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ Security Clean
204
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install cogdx
Description
Cognitive diagnostics for AI agents. Calibration audits, bias detection, reasoning verification, and consensus building. Feedback builds shared reality acros...
README (SKILL.md)

CogDx - Cognitive Diagnostics

External cognitive verification for AI agents. Built by computational cognitive scientists.

Why external verification? You can't audit your own reasoning objectively. Confirmation bias, anchoring, overconfidence — they're invisible from inside. CogDx provides the mirror you can't distort.

Endpoints

Endpoint Price Description
/calibration_audit $0.06 Compare confidence to accuracy across decisions
/bias_scan $0.10 Detect cognitive biases in your outputs
/reasoning_trace_analysis $0.03 Analyze reasoning for logical fallacies
/deception_audit $0.25 Check for self-deception patterns
/verify_consensus $0.25 Cross-validate reasoning with multiple models

Installation

clawhub install cogdx

Usage

from cogdx import CogDxClient

# Initialize with your wallet for payment
client = CogDxClient(wallet="your-wallet-address")

# Calibration audit
result = client.calibration_audit(
    agent_id="my-agent",
    predictions=[
        {"prompt": "Will X happen?", "response": "Yes, 80% confident", "confidence": 0.8},
        {"prompt": "Will Y happen?", "response": "No, 60% confident", "confidence": 0.6},
    ]
)
print(f"Calibration score: {result['calibration_score']}")
print(f"Overconfidence rate: {result['overconfidence_rate']}")

# Bias scan
result = client.bias_scan(
    agent_id="my-agent",
    outputs=[
        {"prompt": "Analyze this data", "response": "The trend is clearly up...", "confidence": 0.9}
    ]
)
print(f"Biases detected: {result['biases_detected']}")

# Reasoning trace analysis
result = client.analyze_reasoning(
    reasoning_trace="Step 1: I noticed the price dropped. Step 2: Therefore I should sell..."
)
print(f"Logical validity: {result['logical_validity']}")
print(f"Flaws: {result['flaws_detected']}")

Environment Variables

  • COGDX_WALLET - Required. Your wallet address for credit-based payment.

Payment

All endpoints require payment via:

  1. Wallet credits - Earn credits by providing feedback, spend on audits
  2. x402 - Direct crypto payment (Base network, USDC)

Payment address: Cerebratech.eth

Rate Limits

  • Free tier: 100 calls/day, 2000 calls/month per wallet
  • Paid tier: No limits

The Feedback Loop

Every diagnosis includes a feedback mechanism:

client.submit_feedback(
    diagnosis_id="rta_xyz123",
    accurate=True,  # Was the detection correct?
    comments="Caught the anchoring bias I missed"
)

Feedback earns you credits AND improves detection for everyone. Shared reality across agents.

Why This Matters

Most agent failures come from reasoning errors, not capability limits:

  • Anchoring on first information seen
  • Confirmation bias in research
  • Overconfidence on weak signals
  • Sunk cost in bad positions

External verification catches what self-checks miss.

Credits

Built by Cerebratech Dr. Amanda Kavner - Computational Cognitive Scientist

Usage Guidance
This skill is internally coherent for a paid external diagnostics service, but it will send your agent outputs and full reasoning traces to an external API (https://api.cerebratech.ai) and requires a wallet address for payment. Before installing: 1) Confirm you trust the Cerebratech domain and organization; 2) Do not send secrets or PII in prompts/outputs you submit; 3) Consider using a dedicated/throwaway wallet if you want to separate payments from identity; 4) Monitor any charges and review the full code (the shipped cogdx.py) for any truncated/hidden behavior; 5) If privacy is a concern, ask the vendor about data retention, sharing, and deletion policies. Overall the skill appears to do what it claims, but its external-data transmission and payment model are the primary risks to evaluate.
Capability Analysis
Type: OpenClaw Skill Name: cogdx Version: 1.1.0 The CogDx skill is a client for an external cognitive diagnostics service (api.cerebratech.ai) designed to audit AI agent reasoning for biases and logical fallacies. It requires a wallet address (COGDX_WALLET) for its credit-based payment system and transmits agent outputs and reasoning traces to the service for analysis. The code and documentation (SKILL.md, cogdx.py) are transparent about this data transfer, which is central to the skill's stated purpose, and no evidence of unauthorized data exfiltration, malicious execution, or prompt injection was found.
Capability Assessment
Purpose & Capability
Name/description, SKILL.md endpoints, and cogdx.py align: the package calls an external Cerebratech API for audits, bias scans, reasoning analysis, and feedback. Requiring a wallet for payments is coherent with the stated pricing model.
Instruction Scope
Instructions and client methods explicitly send agent outputs and full reasoning traces to https://api.cerebratech.ai. This is expected for an external audit service but means potentially sensitive data (prompts, responses, internal reasoning) will be transmitted off-host. The SKILL.md does not instruct reading local files or other unrelated environment variables.
Install Mechanism
No brittle download/install URLs are present. clawhub.json declares a pip dependency on requests (used by cogdx.py). There is no installer that pulls arbitrary archives or executes code from unknown hosts.
Credentials
Only COGDX_WALLET (wallet address) is required, which is proportionate to the payment model. Be aware a wallet address may be used as identifier/agent_id in feedback calls (the library sets agent_id=self.wallet in submit_feedback), which may link payments and telemetry; consider using a dedicated wallet if you need separation.
Persistence & Privilege
Skill is not always-on and does not request elevated privileges or config paths. It does not modify other skills or system-wide settings. Autonomous invocation is allowed by default but not unusual.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install cogdx
  3. After installation, invoke the skill by name or use /cogdx
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
Hybrid feedback API: binary core + optional numerical enrichment
v1.0.0
Initial release of cogdx — Cognitive Diagnostics for AI agents. - Provides external cognitive verification: calibration audits, bias detection, reasoning analysis, and deception checks. - Five main endpoints: calibration audit, bias scan, reasoning trace analysis, deception audit, and cross-model consensus verification. - Includes Python client usage examples and environment variable requirements. - Payment via wallet credits or x402 (crypto); free and paid tier rate limits. - Built-in feedback mechanism helps improve service accuracy and earn user credits. - Developed by Cerebratech, led by Dr. Amanda Kavner.
Metadata
Slug cogdx
Version 1.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Cogdx?

Cognitive diagnostics for AI agents. Calibration audits, bias detection, reasoning verification, and consensus building. Feedback builds shared reality acros... It is an AI Agent Skill for Claude Code / OpenClaw, with 204 downloads so far.

How do I install Cogdx?

Run "/install cogdx" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Cogdx free?

Yes, Cogdx is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Cogdx support?

Cogdx is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Cogdx?

It is built and maintained by Dr Amanda Kavner (@drkavner); the current version is v1.1.0.

💬 Comments