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

analyze分析

Agent Skill

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

总安装

1,322

周安装

54

GitHub Stars

26,767

下载量

428
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yeachan-heo/oh-my-codex --skill analyze

简介

用于查找、检索和筛选相关信息。analyze 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意是否会触发联网、命令执行或文件读写。

SKILL.md

Analyze — Read-Only Deep Analysis

Use this skill to answer the user’s question through read-only repository analysis. The goal is to explain what the codebase most likely says about the question, not to drift into implementation, debugging theater, or generic fix planning.

Use $analyze when

  • the user wants a grounded explanation, not code changes
  • the answer requires reading multiple files or tracing behavior across boundaries
  • there are several plausible explanations and they need to be ranked
  • confidence should reflect the strength of the available evidence
  • the user wants to understand architecture, behavior, causality, impact, or tradeoffs before changing anything

Examples:

  • why a workflow behaves a certain way
  • how a feature is wired across modules
  • what likely explains a failure, regression, or mismatch
  • what would be impacted by changing a dependency or contract
  • which interpretation of the current codebase is best supported

Do not use $analyze when

  • the user explicitly wants code edits, a fix, or execution — use the appropriate implementation lane instead
  • the user wants a new product plan or acceptance criteria — use $plan / $ralplan
  • the request is a simple one-file fact lookup — read the file and answer directly
  • the request is purely about running the OMX tmux team runtime — use $team only when OMX runtime is active

Non-negotiable contract

Analyze is read-only by contract.

  • Do not edit files.
  • Do not turn the answer into an implementation plan.
  • Do not recommend fixes as the primary output.
  • Do not silently switch into execution work.
  • Do not overclaim certainty.
  • Do not invent facts that are not supported by repository evidence.
  • Do not use judgmental, normative, or speculative language that outruns the evidence.

If a next step is helpful, keep it to a discriminating read-only probe that would reduce uncertainty.

Question-aligned synthesis

Answer the user’s actual question first.

  • Start from the asked question, not a generic debugger template.
  • Keep the synthesis scoped to what the user needs to know.
  • Scale the depth to the request: for simple or obvious questions, reduce swarm intensity and answer directly after enough reading.
  • For broader questions, expand the search surface but keep the final answer tightly synthesized.

Evidence rules

Maintain an explicit evidence-vs-inference distinction. Every material claim must be labeled as one of:

  1. Evidence — directly supported by concrete repository artifacts
  2. Inference — a reasoned conclusion drawn from evidence
  3. Unknown — a question the current repository evidence does not resolve

Never present an inference as if it were direct evidence. Never present a guess as if it were an inference. Call out uncertainty explicitly when the codebase does not settle the question.

Acceptable evidence

Prefer stronger evidence over weaker evidence:

  1. direct code paths, contracts, tests, generated artifacts, configs, or docs with concrete file references
  2. multiple independent files pointing to the same conclusion
  3. localized behavioral inference from well-supported code structure
  4. weaker contextual clues that remain explicitly marked as tentative

Unsupported speculation is not evidence.

Parallel exploration policy

Parallel exploration is allowed when it improves quality, but it must stay runtime-safe.

  • Default to direct read-only analysis when the answer is simple.
  • When parallelism helps, prefer native subagents by default or equivalent in-session parallel exploration when available.
  • Keep parallel lanes bounded: each lane should answer a concrete sub-question or inspect a specific subsystem.
  • Use $team only when OMX runtime is active and durable tmux-based coordination is actually needed.
  • Do not imply that $team is available in plain Codex/App sessions.

A good default split for complex analysis is:

  • one lane for primary code path / contracts
  • one lane for config / orchestration / generated surfaces
  • one lane for tests / docs / secondary corroboration

Execution policy

  • Default to concise, evidence-dense progress and completion reporting unless the user or risk level requires more detail.
  • Treat newer user task updates as local overrides for the active workflow branch while preserving earlier non-conflicting constraints.
  • If the user says continue, keep working from the current analysis state instead of restarting discovery.

Working method

  1. Restate the question in one sentence.
  2. Identify the smallest set of files most likely to answer it.
  3. Read for direct evidence first.
  4. If needed, open bounded parallel exploration lanes.
  5. Compare competing explanations.
  6. Rank the explanations by support.
  7. Return a synthesis that clearly separates evidence from inference.

Output contract

Structure the answer so the user can see what is known, what is inferred, and how confident the synthesis is.

Question

[Restate the user’s question briefly]

Ranked synthesis

RankExplanationConfidenceBasis
1...High / Medium / Lowstrongest supporting evidence
2...High / Medium / Lowwhy it trails
3...High / Medium / Lowwhy it remains possible

Evidence

  • path/to/file:line-line — what this artifact directly shows
  • path/to/file:line-line — corroborating evidence

Inference

  • What the evidence most strongly implies
  • Why weaker alternatives were down-ranked

Unknowns / limits

  • What the repository evidence does not establish
  • What would need to be checked next to reduce uncertainty

Quality bar

A good analyze response is:

  • read-only and question-aligned
  • ranked rather than flat
  • explicit about confidence
  • concrete about file references
  • careful about evidence vs inference
  • free of unsupported speculation
  • free of normative drift or judgmental filler
  • explicit about the evidence-vs-inference distinction
  • concise for simple cases, broader only when the question truly needs it

Task: {{ARGUMENTS}}

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.38%
按下载量换算156

Claude

31.93%
按下载量换算137

Cursor

17.32%
按下载量换算74

Gemini CLI

8.89%
按下载量换算38

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills