Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

apophenia-guard阿波菲尼亚守卫

Agent Skill

apophenia-guard 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,314

周安装

396

GitHub Stars

公开资料未说明

下载量

3,263
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:apophenia-guard(阿波菲尼亚守卫)
来源仓库:https://github.com/jcools1977/apophenia-guard
安装命令:
openclaw skills install apophenia-guard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install apophenia-guard

简介

apophenia-guard 检测对话中是否存在认知偏差与虚假模式识别。

  • 辅助用户理性分析问题,避免过度解读或确认偏误干扰判断。
  • 在复杂推理或多选项决策时特别有用,提升思考客观性。
  • 不替代专业心理评估,仅作为日常思维校准工具使用。apophenia-guard 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议与其他事实核查工具配合,形成多角度验证机制。

SKILL.md

name
apophenia-guard
version
1.0.0
description
>
author
J. DeVere Cooley
category
cognitive-defense
tags
metadata
openclaw
emoji
🛡️
os
["darwin", "linux", "win32"]
cost
free
requires_api
false
tags

Apophenia Guard

"Apophenia: the spontaneous perception of connections and meaningfulness of unrelated phenomena. In debugging, it's the voice that says 'this must be related' when it absolutely isn't."

What It Does

You've been debugging for an hour. You've formed a theory. Every new piece of evidence *seems* to confirm it. You're deep in the code, cross-referencing logs, following a trail that feels inevitable —

And you're wrong. You've been wrong since minute twelve. Everything after that was confirmation bias wearing a lab coat.

Apophenia Guard is a cognitive bias interceptor that monitors debugging reasoning for the twelve most common cognitive traps that waste developer time, and intervenes before you spend three hours proving a hypothesis that a fresh pair of eyes would dismiss in three minutes.

The Twelve Cognitive Traps

1. Confirmation Bias

The trap: Seeking evidence that supports your theory while ignoring evidence that contradicts it.

DETECTION SIGNALS:
├── "That proves it!" appears more than "That's weird..."
├── Contradictory evidence is dismissed as "noise" or "unrelated"
├── Investigation narrows instead of widening after the first hypothesis
└── You haven't tried to disprove your theory — only to prove it

Intervention: Force an inversion. State the opposite hypothesis and spend 5 minutes looking for evidence that supports *it*.

2. Recency Bias

The trap: Assuming the bug was introduced by a recent change because it was recently discovered.

DETECTION SIGNALS:
├── "It was working yesterday" → investigating only today's commits
├── Ignoring the possibility that the bug always existed
├── Conflating "when we noticed" with "when it started"
└── Not checking if the bug exists in older versions

Intervention: Check the last known good state. Binary search through history. The bug's discovery date is not its birth date.

3. Narrative Fallacy

The trap: Constructing a story that explains the symptoms, then treating the story as fact.

DETECTION SIGNALS:
├── "What must have happened is..."
├── The explanation is coherent, detailed, and untested
├── You can describe the bug's lifecycle without having verified any step
└── The story is more compelling than the evidence

Intervention: Strip the narrative. List only what you've observed (not inferred). If the observation list is shorter than the theory, you're writing fiction.

4. Availability Heuristic

The trap: Assuming the cause is something you've seen before, because it's easily recalled.

DETECTION SIGNALS:
├── "I've seen this before — it's definitely a race condition"
├── Jumping to a diagnosis before examining symptoms
├── The first tool you reach for is specific to your assumed cause
└── Pattern-matching from a different project/language/context

Intervention: Pretend you've never seen this type of bug before. What would a first-principles investigation look like?

5. Anchoring

The trap: The first piece of evidence disproportionately shapes all subsequent reasoning.

DETECTION SIGNALS:
├── Your entire investigation traces back to the first anomaly you noticed
├── You haven't questioned whether the first clue is even relevant
├── "It all started when I saw..." drives the narrative
└── Alternative starting points haven't been explored

Intervention: Deliberately start from a different symptom. If you started from the error log, start from the user report. If you started from the code, start from the data.

6. Sunk Cost Trap

The trap: Continuing down a debugging path because you've already invested time, not because it's productive.

DETECTION SIGNALS:
├── "I've been at this for two hours, I must be close"
├── Reluctance to abandon a theory you've invested in
├── The investigation is getting more complex, not more focused
├── New evidence requires increasingly elaborate explanations to fit the theory
└── You're adding epicycles to save the model

Intervention: Time check. If you've been on the same theory for > 30 minutes without new supporting evidence, the theory is probably wrong. Start over. The time is already spent.

7. Fundamental Attribution Error

The trap: Blaming the system (framework, OS, compiler, hardware) when the bug is in your code.

DETECTION SIGNALS:
├── "It must be a bug in [library/framework/OS]"
├── Elaborate theories about runtime behavior before checking your logic
├── "This shouldn't be possible" → implies the platform is broken
└── You're reading framework source code before re-reading your own

Intervention: 99.9% of bugs are in your code. Check your code first. Check it again. Then check the framework.

8. Clustering Illusion

The trap: Seeing a pattern in random or coincidental events.

DETECTION SIGNALS:
├── "It always fails on Tuesdays" (sample size: 2 Tuesdays)
├── "It only happens with user IDs ending in 7"
├── Correlation treated as causation without mechanism
└── Small sample sizes interpreted as trends

Intervention: Calculate the actual base rate. How many Tuesdays didn't have failures? What's the expected distribution? Random events cluster naturally — it doesn't mean anything.

9. Einstellung Effect

The trap: A known solution prevents you from seeing a better one (or the actual one).

DETECTION SIGNALS:
├── You immediately reached for a familiar fix pattern
├── The fix "should work" but doesn't, yet you keep refining it
├── You haven't considered that this might be a fundamentally different problem
└── Your solution vocabulary is from a previous project/language

Intervention: Describe the problem to someone (or rubber duck) without mentioning your solution. Let the problem define the solution space, not the other way around.

10. Survivorship Bias

The trap: Only examining the cases that failed while ignoring the cases that succeeded.

DETECTION SIGNALS:
├── Investigating only failed requests, not successful ones
├── "What's different about the broken ones?" without asking
│   "What's the same about the working ones?"
├── No control group in your investigation
└── Assuming the failure case is representative

Intervention: Compare a failing case with a succeeding case side by side. The difference is more informative than either case alone.

11. Occam's Broom

The trap: Sweeping inconvenient evidence under the rug (Occam's Razor in reverse).

DETECTION SIGNALS:
├── "That log entry is probably unrelated"
├── "Ignore that — it's a known issue" (is it though?)
├── Evidence that doesn't fit is labeled as noise without verification
└── The explanation requires you to ignore some of the data

Intervention: Make a list of EVERYTHING you've dismissed. Revisit each item. If your theory requires ignoring more than one data point, it's probably incomplete.

12. The XY Problem

The trap: Debugging your attempted solution instead of the original problem.

DETECTION SIGNALS:
├── You can no longer articulate the original symptom
├── The investigation has shifted from "why does X fail?"
│   to "why doesn't my fix for X work?"
├── You're several abstraction layers away from the user-visible issue
└── "If I can just get this regex right..." (the problem isn't regex-shaped)

Intervention: Stop. State the original problem in one sentence. If you can't, you've drifted. Return to the symptom. Start fresh from there.

The Guard Process

CONTINUOUS MONITORING:
├── Track how long each hypothesis has been active
├── Count evidence for vs. evidence against current theory
├── Monitor investigation breadth (narrowing too fast = bias)
├── Flag when investigation depth exceeds evidence depth
└── Check for trap signatures at every reasoning step

INTERVENTION TRIGGERS:
├── Hypothesis active > 30 min with no new supporting evidence
├── Evidence-against count > 0 with no theory adjustment
├── Investigation breadth < 2 alternatives at any point
├── Theory complexity growing faster than evidence base
└── Any trap signature detected with confidence > 70%

INTERVENTION FORMAT:
├── Name the trap
├── Show the evidence that triggered detection
├── Suggest a specific counter-action
└── Offer to restart from a different entry point

Output Format

╔══════════════════════════════════════════════════════════════╗
║              ⚠ APOPHENIA GUARD: INTERVENTION ⚠              ║
╠══════════════════════════════════════════════════════════════╣
║                                                              ║
║  TRAP DETECTED: Confirmation Bias + Sunk Cost               ║
║                                                              ║
║  EVIDENCE:                                                   ║
║  ├── Current hypothesis active for 47 minutes                ║
║  ├── 3 observations supporting theory                        ║
║  ├── 2 observations contradicting theory (dismissed as noise)║
║  ├── Investigation has narrowed to 1 file (started at 12)    ║
║  └── Theory complexity has increased twice without new data  ║
║                                                              ║
║  RECOMMENDED ACTION:                                         ║
║  ├── PAUSE: State what you've actually proven (not assumed)  ║
║  ├── INVERT: Spend 5 min trying to disprove your theory     ║
║  ├── COMPARE: Find a working case and diff against failure   ║
║  └── RESTART: If inversion finds counter-evidence, pivot     ║
║                                                              ║
║  REMINDER: The average bug is simpler than the average       ║
║  debugging theory. Complexity is usually in the              ║
║  investigator, not the code.                                 ║
╚══════════════════════════════════════════════════════════════╝

When to Invoke

  • At the start of any debugging session (set the guard before bias sets in)
  • When you catch yourself saying "I'm sure it's..."
  • When debugging has exceeded 30 minutes without resolution
  • When the explanation is getting *more* complex instead of *more* clear
  • When you feel frustrated (frustration amplifies every cognitive bias)

Why It Matters

The hardest bugs aren't hard because the code is complex. They're hard because the debugging is biased. A developer with perfect reasoning and a simple set of tools will outperform a developer with every debugging tool and a biased mind.

Apophenia Guard doesn't help you find bugs. It helps you stop finding bugs that aren't there.

Zero external dependencies. Zero API calls. Pure cognitive bias detection.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.49%
按下载量换算2,920

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills