Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

council-oraclecouncil Oracle 搜索

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

4

下载量

102
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/trancong12102/agentskills --skill council-oracle

简介

council-oracle 并行运行 Codex 和 Claude 子代理进行交叉验证,最终由 Claude 合成统一分析报告。

  • 适合架构分析、调试难题或性能瓶颈排查等复杂任务。
  • 若仅有一个 CLI 可用,仍可提供基础分析并发出警告。
  • 需提前安装 Codex CLI 并完成身份验证才能正常使用。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Council Oracle

Run Codex and a Claude subagent in parallel for deep analysis, then cross-validate and synthesize into one unified report — like a panel of two senior architects independently analyzing a problem, with Claude as lead synthesizer delivering the final assessment.

Prerequisites

  • Codex CLI: Install with npm i -g @openai/codex, authenticate with codex login

If only one CLI is installed, fall back to the available oracle with a warning — the analysis still has value with fewer perspectives, so don't fail entirely.

When to Use

  • Architecture analysis and design decisions
  • Debugging elusive or complex bugs
  • Impact assessment of proposed changes
  • Security reasoning and threat modeling
  • Refactoring strategy evaluation
  • Trade-off analysis between approaches
  • Complex "why" or "how" questions about a codebase

When NOT to Use

  • Simple factual questions (just answer directly)
  • Code generation tasks (just write the code)
  • Code review (use council-review instead)
  • Tasks that require file modifications (oracle is read-only analysis)

Workflow

DO NOT read script source code. Run scripts directly and use --help for usage.

Step 1: Gather Context

Before launching the oracles, Claude must gather relevant context because Codex CLI only sees what's explicitly passed to it.

  1. Understand the user's question and identify what parts of the codebase are relevant.
  2. Use Read, Grep, and Glob tools to read relevant files and code snippets.
  3. Research official sources before deciding — Don't rely solely on training knowledge. Proactively:

- Use the context7 skill to fetch up-to-date official documentation for any libraries, frameworks, or tools involved in the question. - Use WebSearch to find official blog posts, best practices guides, RFCs, or authoritative references that inform the analysis. - Include the findings as additional context files so both oracles benefit from accurate, current information.

  1. Write the gathered context to temporary files that can be passed to the scripts via --context-file.
  2. Formulate a clear, specific question that captures the user's intent.

Step 2: Run Both Oracles in Parallel

Both oracles analyze the same question independently — neither depends on the other's output. Launch them both at once in a single message to eliminate sequential wait time.

Scripts are in scripts/ relative to this skill's directory and enforce the correct model and read-only mode internally. Run <script> --help for full usage.

Codex — scripts/codex-oracle.py (background Bash task)

Launch as a background Bash task (run_in_background: true). Codex CLI thinks deeply and may take up to 30 minutes — do not treat a long wait as a failure. You will be notified automatically when it completes.

python3 scripts/codex-oracle.py --question "..." --context-file path1 --context-file path2 [--focus text] [--dry-run]

Claude — Agent tool (foreground)

While Codex runs in the background, launch a Claude subagent using the Agent tool with subagent_type="general-purpose". The subagent should:

  • Receive the same question and context
  • Be instructed to use only read-only tools (Read, Grep, Glob, WebSearch, WebFetch)
  • Analyze the question deeply from a senior software architect perspective
  • Return structured analysis with: summary, key findings (with confidence and category), recommendations (with priority), and risks

Step 3: Cross-Validate

Once both oracle responses have returned, cross-validate:

  1. Validate external findings — For each finding from Codex:

- Confirm — Claude independently agrees the finding is valid and accurate. - Dispute — Claude believes the finding is incorrect or irrelevant. Note the reasoning. - Enhance — The finding is valid but the explanation or recommendation can be improved. Provide the improved version.

  1. Add Claude's unique insights — Include any findings from the Claude subagent that Codex didn't identify.

Step 4: Synthesize into Unified Report

After cross-validation is complete, merge, deduplicate, and rewrite all findings into one coherent report as if written by a single analyst. Do not copy-paste or concatenate raw outputs.

Load references/output-format.md for the report template. Load references/synthesis-rules.md for how to reconcile findings across oracles.

Rules

  • Run both oracles in parallel — Codex and the Claude subagent are independent analyses of the same question. Running them concurrently saves significant time.
  • Use the same question and context for both oracles — comparing analyses of different questions would make synthesis meaningless.
  • Wait for both oracles before synthesizing — Claude's cross-validation is what turns two outputs into one trustworthy report. Both must complete before synthesis begins.
  • Write one unified analysis — the report should read as a single analyst's assessment. Never structure findings by oracle source (no "Codex found..." sections).
  • Organize findings by theme — group related insights together, not by source or severity alone. Structure adapts to question type (architecture -> components/trade-offs, bug -> root cause hypotheses, security -> threat model, etc.).
  • Research before reasoning — Always check official documentation (via context7) and search for best practices, official blogs, and authoritative references (via WebSearch) before forming conclusions. Decisions grounded in current, official sources are far more trustworthy than those based on training knowledge alone.
  • Always use the wrapper script for Codex — never call codex CLI directly, because the script sets the correct model and read-only mode.
  • If Codex CLI is missing, run the Claude subagent alone and synthesize normally.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.21%
按下载量换算38

Claude

28.27%
按下载量换算29

Cursor

17.91%
按下载量换算18

Gemini CLI

8.98%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills