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

exhaustive-systems-analysis详尽的系统分析

Agent Skill

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

总安装

724

周安装

29

GitHub Stars

35

下载量

234
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/petekp/claude-code-setup --skill exhaustive-systems-analysis

简介

详尽的系统分析用于全面映射系统架构,识别高风险行为并验证具体失败假设。

  • 适用于需要端到端行为审计、跨子系统一致性检查和真实风险发现的场景。
  • 通过结构化报告输出结论,供后续工程师直接执行而无需重读全部代码。
  • 使用前需确认代码库范围、检查权限边界,避免触发不必要的文件读写或命令执行。
  • exhaustive-systems-analysis 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Exhaustive Systems Analysis

Use this skill for full-system correctness work. The job is to map the system, identify the highest-risk behaviors, prove or refute concrete failure hypotheses, and leave behind a report another engineer can act on without re-reading the whole codebase.

Failure Modes To Prevent

  1. Surface-level audits that scan files without following behavior end-to-end
  2. False certainty: reporting suspicions as bugs without enough evidence
  3. Context drift across large audits with many subsystems
  4. Cosmetic reviews that miss the real correctness and ship-readiness risks

Operating Mode

  • Default to chat-first output. Return findings inline unless the user asks for docs or the audit clearly needs multi-session artifacts.
  • Switch to artifact mode for large or resumable audits. Use docs/audit/ or .claude/docs/audit/, matching the repo's existing conventions.
  • Do not start fixing code while auditing unless the user explicitly asks for fixes. This skill is for diagnosis, proof, and prioritization.

Workflow

0. Calibrate The Audit

Before reading deeply, write a one-screen scope brief using the template in references/templates.md.

Capture:

  • system or area under review
  • user-visible workflows or contracts that matter most
  • likely high-risk surfaces: state, side effects, concurrency, auth, persistence, external integrations
  • out-of-scope areas
  • output mode: chat-first or artifact mode

If the request is broad, narrow it to the modules that can actually change user outcomes or ship readiness.

1. Load Intent Before Code

Read only the materials that establish intended behavior:

  • README, CLAUDE.md, architecture docs, ADRs
  • tests that describe user-visible or contract behavior
  • recent commits touching the target area
  • TODO, FIXME, HACK, and "known issues"
  • incident notes, bug reports, or issue tracker items if available

Extract:

  • critical workflows
  • external surfaces
  • hotspots and recent churn
  • manual-only surfaces that cannot be fully verified from code alone

2. Build The Coverage Ledger

Map the system into subsystems before deep analysis. Use the coverage ledger template in references/templates.md.

For each subsystem record:

  • name
  • entrypoints
  • files or directories in scope
  • invariants or promised behaviors
  • side effects
  • risk level
  • status: planned | in_progress | done | follow_up

Prioritize by user impact first, then by side effects, concurrency, privilege, and recent churn. Folder structure alone is not a priority system.

3. Generate Hypotheses Before The Deep Pass

For each high- or medium-risk subsystem, write 2-3 concrete hypotheses before diving in. Good hypotheses are falsifiable and tied to a behavior boundary.

Examples:

  • "A failure between write A and write B can leave persisted state inconsistent."
  • "The retry path duplicates a side effect because idempotence is not enforced."
  • "The docs promise behavior X, but the implementation falls through to Y on invalid input."

Update or discard hypotheses as evidence comes in. This step prevents aimless scanning.

4. Audit One Subsystem At A Time

Read the subsystem end-to-end:

  • start at entrypoints and trace the happy path
  • trace error paths, cleanup paths, cancellation or shutdown, and retries
  • compare implementation to tests, docs, types, and public contracts
  • run targeted searches, commands, or tests when they strengthen the evidence
  • record exact commands, searches, and scopes when they support a finding

Select only the relevant checklist sections from references/checklists.md. Do not load every checklist if the subsystem only needs one or two.

When subagents are available, assign one bounded subsystem per subagent with disjoint files and ask for:

  • hypotheses checked
  • findings with exact citations
  • coverage gaps
  • suggested next verification step

5. Classify Findings With Evidence, Status, And Confidence

Every finding must separate observation from inference.

Required fields:

  • Severity: Critical | High | Medium | Low
  • Status: Confirmed | Likely | Needs follow-up
  • Confidence: High | Medium | Low
  • Type: Bug | Race condition | Security | Stale docs | Dead code | Design flaw | Reliability
  • Location: exact file path and line or function
  • Impacted behavior: the user-visible workflow, invariant, or contract at risk
  • Observed evidence: code citation, command output, test result, log, or search result
  • Inference: why that evidence implies the reported problem
  • What I checked: searches, tests, docs, commits, or alternate explanations ruled out
  • Recommendation: the smallest credible next action
  • Next verification step: required when status is Needs follow-up

Use Confirmed only when the bug is directly demonstrated by code, a failing test, a repro path, or a hard contradiction. Use Likely when the reasoning is strong but not directly reproduced. Use Needs follow-up when something is suspicious but the evidence is incomplete.

6. Run A Convergence Pass

After subsystem reviews:

  • deduplicate cross-cutting findings
  • re-rank by severity and user impact
  • run a final residue sweep for stale docs, deprecated names, orphaned helpers, temp flags, TODO or FIXME clusters, and risky APIs
  • record exact residue queries and counts if they matter to the conclusion
  • list coverage gaps explicitly instead of pretending the audit was complete where it was not

Evidence Standard

Prefer stronger evidence over more words. From strongest to weakest:

  1. failing or targeted test
  2. reproducible path with exact steps
  3. direct code contradiction with exact citations
  4. logs, telemetry, or command output
  5. scoped search results with counts
  6. static reasoning

Static reasoning alone can still be valuable, but it should usually produce Likely, not Confirmed.

For dead code or stale docs, always show what you searched and why you believe the code or documentation is obsolete. A dead-code claim without a consumer search is incomplete.

Reporting Rules

  • Lead with findings, not the methodology recap.
  • Prefer user-impacting correctness issues over stylistic cleanup.
  • Keep related findings separate unless they share the same root cause.
  • If nothing serious is wrong, say so directly and still report residual risk and unverified surfaces.
  • Do not write "looks wrong" or "might be an issue" without saying what you checked and what would prove or disprove it.

Use the templates in references/templates.md for:

  • scope brief
  • coverage ledger
  • finding format
  • chat-first summary
  • artifact-mode audit directory

Session Management

Use single-session mode for small audits. For large audits or when context is tight, create a lightweight control plane:

  • 00-plan.md for the scope brief and coverage ledger
  • one file per subsystem only if the audit is large enough to justify it
  • SUMMARY.md for consolidated findings and fix order
  • HANDOFF.md if work will continue later

A good handoff includes:

  • what was covered
  • what is now believed to be true
  • what remains unverified
  • current blockers
  • exact next steps

Anti-Patterns

  • scanning directories without identifying entrypoints or invariants
  • reporting every code smell as a finding
  • calling something dead code without a consumer search
  • calling something a bug without showing the broken behavior or violated contract
  • collapsing multiple subsystems into one giant writeup
  • hiding uncertainty instead of marking Needs follow-up

Completion Criteria

The audit is complete when:

  1. high-risk subsystems have a ledger entry and a final status
  2. every reported finding has evidence, confidence, and a concrete location
  3. the final report includes fix order plus unverified surfaces
  4. cross-cutting and residue findings have been consolidated
  5. the report is honest about what was not proven

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.06%
按下载量换算77

Claude

28.78%
按下载量换算67

Cursor

19.39%
按下载量换算45

Gemini CLI

9.93%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills