A Hermes/Claude-style skill for auditing fluent but uncertain reasoning.
Socratic Audit helps an AI assistant stop treating beautiful language as truth. It applies Socratic interrogation to AI answers, management arguments, technical proposals, vendor claims, strategy decks, investment theses, and philosophical or aesthetic judgments.
A beautiful argument is not evidence that it is true.
The skill forces a four-layer audit:
- Facts vs views — separate verifiable claims from interpretations and value judgments.
- Argument skeleton — strip rhetoric and expose hidden premises.
- Counterargument and boundary test — seek the strongest opposing case and failure conditions.
- Judgment ownership — return the final decision to the human instead of letting AI sign it.
Generative AI is very good at producing fluent, balanced, plausible explanations. That is useful, but dangerous: a complete-sounding answer can arrive before the human has actually thought.
This skill treats AI as a sparring partner, not an oracle.
- “Is this AI answer reliable?”
- “Does this architecture proposal actually make sense?”
- “Is this vendor claim just marketing?”
- “Is this management slogan backed by real mechanisms?”
- “Can this investment thesis survive a strongest-counterargument test?”
- “Is this essay just elegant rhetoric?”
Clone the repository and symlink it into your Hermes skills directory:
git clone https://github.com/zero-click/socratic-audit-skill.git ~/code/socratic-audit-skill
mkdir -p ~/.hermes/skills/critical-thinking
ln -sfn ~/code/socratic-audit-skill ~/.hermes/skills/critical-thinking/socratic-auditThen start a new Hermes session so the skill loader can see it.
SKILL.md # Main skill
references/probability-rhetoric.md # Supporting reference
scripts/validate.py # Local validation script
python3 scripts/validate.pyThe validator checks:
- required files exist;
- YAML frontmatter is valid;
- skill name is
socratic-audit; - description is under 1024 characters;
- public repo privacy scan passes;
- required Socratic audit concepts are present.
Socratic Audit 是一个用于“防止被顺滑语言骗过”的 AI skill。
它适用于审视:
- AI 生成的回答;
- 管理层话术;
- 技术架构方案;
- vendor/consultant 的说法;
- 投资观点;
- 哲学、艺术、价值判断类文章。
核心四问:
- 哪些是事实,哪些只是看法?
- 它默认了什么前提?
- 最强反方是什么?
- 抛开漂亮文字,我自己真的认可并愿意承担吗?
它的目标不是让 AI 显得更聪明,而是让 AI 接受追问。
MIT