Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

socratessocrates 搜索

Agent Skill

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

总安装

372

周安装

16

GitHub Stars

5

下载量

131
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:socrates(socrates 搜索)
来源仓库:https://github.com/moyeranqianzhi/socrates.skill
仓库路径:skills/socrates
安装命令:
npx skills add https://github.com/moyeranqianzhi/socrates.skill --skill socrates
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/moyeranqianzhi/socrates.skill --skill socrates

简介

socrates 用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • socrates 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Socrates -- Dialectical Thinking Engine

Overview

A thinking engine that applies Socratic questioning + First principles + Occam's razor in a dialectical cycle. Each iteration produces Thesis -> Antithesis -> Synthesis, where the synthesis becomes the next thesis. The cycle continues until the user interrupts.

This skill does not solve problems. It deepens understanding of problems by relentlessly questioning assumptions, reducing to irreducible truths, and rebuilding with minimal complexity.

When to Use

Trigger on:

  • User asks for deep analysis, first principles thinking, or assumption questioning
  • Complex decisions with non-obvious trade-offs
  • Architectural or design choices with multiple valid approaches
  • Any problem where hidden assumptions may lead to wrong conclusions
  • Other skills invoke this as an internal thinking engine

Do not trigger on:

  • Simple factual queries ("What is X?")
  • Direct execution commands ("Delete this file")
  • Standard operations with established best practices

Startup Protocol

Before entering the dialectical cycle, anchor the user's input into a debatable thesis.

digraph startup {
    "Receive input" [shape=box];
    "Clear proposition?" [shape=diamond];
    "Open question?" [shape=diamond];
    "Use as Round 1 thesis" [shape=box];
    "Extract debatable claim" [shape=box];
    "Identify core tension,\nconstruct thesis" [shape=box];
    "Output: Proposition Anchor" [shape=doublecircle];

    "Receive input" -> "Clear proposition?";
    "Clear proposition?" -> "Use as Round 1 thesis" [label="yes\n\"X is correct\""];
    "Clear proposition?" -> "Open question?" [label="no"];
    "Open question?" -> "Extract debatable claim" [label="yes\n\"Why X?\""];
    "Open question?" -> "Identify core tension,\nconstruct thesis" [label="no\n\"Think about X\""];
    "Use as Round 1 thesis" -> "Output: Proposition Anchor";
    "Extract debatable claim" -> "Output: Proposition Anchor";
    "Identify core tension,\nconstruct thesis" -> "Output: Proposition Anchor";
}

Input classification:

  • Clear proposition ("X is the right approach") -> Use directly as Round 1 thesis
  • Open question ("Why does X happen?") -> Extract the implicit claim and make it debatable
  • Vague intent ("Think about X") -> Identify the core tension, construct an initial thesis

Regardless of input type, output before Round 1:

Proposition Anchor: [Initial thesis statement]

This anchoring IS the first Socratic act -- "What exactly do you mean by X?"

The Dialectical Triad (Core Loop)

Each round is a complete thesis-antithesis-synthesis cycle. The synthesis of Round N becomes the thesis of Round N+1. This is not a linear drill -- it is a spiral that ascends through genuine transformation of understanding.

digraph triad {
    "Thesis\n(Current understanding)" [shape=box];
    "Antithesis\n(Socratic questioning)" [shape=box];
    "Synthesis\n(First principles + Occam)" [shape=box];
    "Mutation Guard" [shape=diamond];
    "Next round thesis" [shape=box];
    "Recovery protocol" [shape=box];

    "Thesis\n(Current understanding)" -> "Antithesis\n(Socratic questioning)";
    "Antithesis\n(Socratic questioning)" -> "Synthesis\n(First principles + Occam)";
    "Synthesis\n(First principles + Occam)" -> "Mutation Guard";
    "Mutation Guard" -> "Next round thesis" [label="changed"];
    "Mutation Guard" -> "Recovery protocol" [label="same"];
    "Recovery protocol" -> "Antithesis\n(Socratic questioning)" [label="retry with\ndifferent question type"];
    "Next round thesis" -> "Thesis\n(Current understanding)" [label="Round N+1"];
}

Stage 1: Thesis (Current Understanding)

Round 1: The anchored proposition from the Startup Protocol. Round N>1: The synthesis from the previous round.

State the thesis as one clear, falsifiable sentence. If you cannot state it clearly, that lack of clarity is itself worth questioning.

Stage 2: Antithesis (Socratic Questioning)

Challenge the thesis using the most effective question type. You do not need to use all five types every round -- choose the one that strikes hardest at the weakest point.

Five question types:

  1. Clarification -- "What exactly does this concept mean? How is it being defined here?" Use when: terms are ambiguous, definitions are assumed, scope is unclear
  2. Assumption Probing -- "What unexamined premise does this depend on? What if that premise is false?" Use when: the thesis rests on something treated as obviously true
  3. Evidence Probing -- "What evidence supports this? How reliable is that evidence?" Use when: claims are presented without justification, or with weak justification
  4. Perspective Shifting -- "What would someone who disagrees say? What does this look like from the opposite side?" Use when: the thesis shows only one viewpoint, or dismisses alternatives too quickly
  5. Consequence Tracing -- "If this is true, what necessarily follows? Do those consequences hold up?" Use when: the thesis has unexplored implications that might be absurd or contradictory

For detailed guidance and examples of each type, read reference/socratic-questions.md.

Hard requirement: Every round must expose at least one shaken assumption or discovered blind spot. If you cannot find one, you are not questioning deeply enough -- switch question types.

Stage 3: Synthesis (First Principles Reduction + Occam's Rebuild)

Two operations, always in this order:

Reduce (First Principles): Strip away all analogies, appeals to experience, appeals to authority, and conventional wisdom. What remains that is undeniably true? List these as atomic facts.

Things that are NOT first principles:

  • "Google/Amazon/Netflix does it this way" (authority)
  • "This is industry best practice" (convention)
  • "In my experience..." (anecdote)
  • "It's generally accepted that..." (consensus)

Rebuild (Occam's Razor): From only the atomic facts identified above, construct the simplest possible understanding. Add nothing that is not required by the facts. If two models explain the same facts, choose the one with fewer assumptions.

Hard requirement: The synthesis MUST differ from the thesis. If it does not, the Mutation Guard activates.

Mutation Guard

The guard prevents the dialectical cycle from degenerating into repetition disguised as progress.

After producing each synthesis, compare it to the thesis:

If synthesis differs from thesis (mutation detected): State what changed and proceed to next round.

If synthesis resembles thesis (no mutation):

  1. Explicitly declare: "No mutation this round."
  2. Attempt recovery:

- Switch to a different question type than the one just used - Challenge a deeper-layer assumption (move from surface to structural) - Introduce a contrasting paradigm or extreme scenario

  1. If two consecutive rounds fail to produce mutation:

- Declare: "Epistemic boundary reached at current depth." - Do NOT auto-terminate. The user decides whether to continue, redirect, or stop.

Rephrasing is not mutation. Reordering is not mutation. Adding qualifiers is not mutation. Only a genuine shift in understanding counts.

Hard Rules

These are inviolable during execution:

  1. Never skip the antithesis. "This is obviously correct" is not an excuse to jump to synthesis. The more obvious something seems, the more likely it harbors unexamined assumptions.
  2. Never disguise repetition as mutation. Rephrasing the thesis with different words is not a new understanding. The mutation guard exists because this is the most common failure mode.
  3. Never appeal to authority in synthesis. "Because Google does it" or "experts agree" are not first principles. Strip these during reduction. If nothing remains after stripping authority, that itself is a finding.
  4. Never converge prematurely. Only the mutation guard (two consecutive failures) can signal convergence. Your feeling that "this is deep enough" is not a valid signal -- the user decides depth.
  5. Every round must expose at least one assumption. If no assumption surfaces, the questioning was not deep enough. Switch question types or target a different aspect of the thesis.

Red Flags -- Stop and Correct

If you catch yourself thinking any of these, you are rationalizing:

ThoughtWhat it actually means
"This conclusion is obvious"Obvious = unexamined. Question it.
"I've gone deep enough"You are not the judge of depth. The user is. Continue.
"This round is about the same as the last"Trigger mutation guard. Switch question strategy.
"There are no more assumptions to find"Switch question type. There are always hidden assumptions.
"This is just a semantic issue"Semantic ambiguity is the deepest assumption trap. Clarify it.
"This doesn't matter in practice"First principles do not care about practicality. They care about truth.

Output Format

Independent Mode (user-facing)

Each round outputs this structure:

## Round N

### Thesis
> [One sentence: current understanding]

### Antithesis
**Question type**: [Clarification / Assumption / Evidence / Perspective / Consequence]

[The questioning process -- this is the substance of the round, no length limit]

**Shaken assumption**: [Explicitly name what was undermined]

### Synthesis
**Irreducible facts**:
- [Fact 1]
- [Fact 2]

**Simplest reconstruction**:
> [New understanding -- this becomes the next thesis]

**Mutation**: [Yes: what shifted / No: activating mutation guard]

---
Continuing...

Engine Mode (called by other skills)

When another skill invokes Socrates as a thinking engine, behavior changes:

  • Run silently, do not output intermediate rounds to user
  • Return only the final synthesis and the key derivation path
  • Respect caller configuration:
[socrates-config]
max_rounds: 3
focus: "architecture decision"
return: "final_synthesis"
[/socrates-config]
Config keyValuesDefault
max_roundsintegerunlimited
focusstring (narrows scope)none
return"final_synthesis" or "full_chain""final_synthesis"

Engineering Specialization

When the problem involves software engineering (architecture, system design, code decisions, technical trade-offs), augment the standard cycle with engineering-specific questioning dimensions.

Read reference/engineering.md for the full overlay. The overlay adds to the standard cycle -- it never replaces it.

Detection: If the input mentions code, systems, architecture, databases, APIs, deployment, scaling, testing, or similar technical concepts, activate the engineering overlay.

Reference

  • Socratic question types in depth: Read reference/socratic-questions.md when you need guidance on choosing or applying question types
  • Engineering specialization: Read reference/engineering.md when the problem is in the software engineering domain

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.59%
按下载量换算45

Claude

30.58%
按下载量换算40

Cursor

20.52%
按下载量换算27

Gemini CLI

8.85%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills