← 返回 Skills 市场
drkavner

Cogdx

作者 Dr Amanda Kavner · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
204
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install cogdx
功能描述
Cognitive diagnostics for AI agents. Calibration audits, bias detection, reasoning verification, and consensus building. Feedback builds shared reality acros...
使用说明 (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

安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install cogdx
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /cogdx 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug cogdx
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Cogdx 是什么?

Cognitive diagnostics for AI agents. Calibration audits, bias detection, reasoning verification, and consensus building. Feedback builds shared reality acros... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 204 次。

如何安装 Cogdx?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install cogdx」即可一键安装,无需额外配置。

Cogdx 是免费的吗?

是的,Cogdx 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Cogdx 支持哪些平台?

Cogdx 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Cogdx?

由 Dr Amanda Kavner(@drkavner)开发并维护,当前版本 v1.1.0。

💬 留言讨论