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

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

Agent Skill

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

总安装

546

周安装

23

GitHub Stars

4

下载量

191
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适合在关键词、任务场景或来源线索下快速定位候选结果。
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或命令执行。
  • 当前归类为研究检索,名称与类别一致,功能描述合理。

SKILL.md

Exhaustive Systems Analysis

Systematic audit methodology for rooting out latent issues in codebases, particularly agent-written code that needs verification before production use.

Core Principles

  1. Subsystem isolation — Analyze each subsystem separately to prevent context pollution
  2. Evidence-based findings — Every issue must cite specific code locations
  3. Severity-driven prioritization — Critical issues first, cosmetic issues last
  4. Assume all issues will be fixed — Don't hedge; be direct about what's wrong

Workflow

Phase 1: System Decomposition

Before analysis, map the system's subsystems. Auto-discover by:

  1. Read project structure — Identify major modules, packages, or directories
  2. Trace data flow — Follow how data enters, transforms, and exits
  3. Identify side effects — File I/O, network, database, IPC, state mutations
  4. Map dependencies — Which subsystems depend on which

Output a subsystem table:

| # | Subsystem | Files | Side Effects | Priority |
|---|-----------|-------|--------------|----------|
| 1 | Lock System | lock.rs | FS: mkdir, rm | High |
| 2 | API Layer | api/*.rs | Network, DB | High |
| 3 | Config Parser | config.rs | FS: read | Medium |

Priority heuristics:

  • High: Side effects, state management, security, concurrency
  • Medium: Business logic, data transformation, validation
  • Low: Pure utilities, formatting, logging

Phase 2: Sequential Analysis

Analyze subsystems in priority order. For large codebases (>5 subsystems or >3000 LOC per subsystem), prefer clearing context between subsystems to prevent analysis drift.

For each subsystem, apply the appropriate checklist based on subsystem type.

Phase 3: Consolidation

After all subsystems analyzed:

  1. Deduplicate cross-cutting findings
  2. Rank all issues by severity
  3. Produce final report with recommended action order

Analysis Checklists

Select checklist based on subsystem characteristics. Apply multiple if applicable.

Stateful Systems (files, databases, caches, locks)

CheckQuestion
CorrectnessDoes code do what documentation claims?
AtomicityCan partial writes corrupt state?
Race conditionsCan concurrent access cause inconsistency?
CleanupAre resources released on all exit paths (success, error, panic)?
Error recoveryDo failures leave the system in a valid state?
Stale documentationDo comments match actual behavior?
Dead codeAre there unused code paths that could confuse maintainers?

APIs & Network (HTTP, gRPC, WebSocket, IPC)

CheckQuestion
Input validationAre all inputs validated before use?
Error responsesDo errors leak internal details?
Timeout handlingAre network operations bounded?
Retry safetyAre operations idempotent or properly guarded?
AuthenticationAre auth checks applied consistently?
Rate limitingCan the API be abused?
SerializationCan malformed payloads cause panics?

Concurrency (threads, async, channels, locks)

CheckQuestion
Deadlock potentialCan lock acquisition order cause deadlock?
Data racesIs shared mutable state properly synchronized?
StarvationCan any task be indefinitely blocked?
CancellationAre cancellation/shutdown paths clean?
Resource leaksAre spawned tasks/threads joined or detached properly?
Panic propagationDo panics in tasks crash the whole system?

UI & Presentation (views, components, templates)

CheckQuestion
State consistencyCan UI show stale or inconsistent state?
Error statesAre all error conditions rendered appropriately?
Loading statesAre async operations properly indicated?
AccessibilityAre interactions keyboard/screen-reader accessible?
Memory leaksAre subscriptions/observers cleaned up?
Re-render efficiencyAre unnecessary re-renders avoided?

Data Processing (parsers, transformers, validators)

CheckQuestion
Edge casesAre empty, null, and boundary values handled?
Type coercionAre implicit conversions safe?
Overflow/underflowAre numeric operations bounded?
EncodingIs text encoding handled consistently (UTF-8)?
InjectionCan untrusted input escape its context?
InvariantsAre data invariants enforced and documented?

Configuration & Setup (config files, environment, initialization)

CheckQuestion
DefaultsAre defaults safe and documented?
ValidationAre invalid configs rejected early with clear errors?
SecretsAre secrets handled securely (not logged, not in VCS)?
Hot reloadIf supported, is reload atomic and safe?
CompatibilityAre breaking changes versioned or migrated?

Severity Classification

Classify every finding. Assume user will fix all issues soon.

SeverityCriteriaExamples
CriticalData loss, security vulnerability, crash in productionUnhandled panic, SQL injection, file corruption
HighIncorrect behavior users will noticeWrong calculation, race causing wrong UI state, timeout too short
MediumTechnical debt that causes confusion or future bugsStale docs, misleading names, redundant code paths
LowCosmetic or minor improvementsUnused parameter, suboptimal algorithm (works correctly)

Finding Format

Every finding must follow this structure:

### [SUBSYSTEM] Finding N: Brief Title

**Severity:** Critical | High | Medium | Low
**Type:** Bug | Race condition | Security | Stale docs | Dead code | Design flaw
**Location:** `file.rs:line_range` or `file.rs:function_name`

**Problem:**
What's wrong and why it matters. Be specific.

**Evidence:**
Code snippet or reasoning demonstrating the issue.

**Recommendation:**
Specific fix. Include code if helpful.

Output Structure

Adapt output to project organization. Common patterns:

Pattern A: Audit Directory (recommended for 5+ subsystems)

.claude/docs/audit/
├── 00-analysis-plan.md      # Subsystem table, priorities, methodology
├── 01-subsystem-name.md     # Individual analysis
├── 02-another-subsystem.md
└── SUMMARY.md               # Consolidated findings, action items

Pattern B: Single Document (for smaller systems)

.claude/docs/audit/system-name-audit.md
# Contains: plan, all findings, summary

Pattern C: Inline with Existing Docs

If project has existing docs/ or similar, place audit artifacts there.

Always create a summary with:

  • Total findings by severity
  • Top 5 most critical issues
  • Recommended fix order

Session Management

For thorough analysis:

  • Small systems (<1000 LOC, <3 subsystems): Single session acceptable
  • Medium systems (1000-5000 LOC, 3-7 subsystems): Clear context between phases
  • Large systems (>5000 LOC, >7 subsystems): Separate sessions per subsystem

When clearing context, document progress in the analysis plan file so the next session can continue.


Pre-Analysis: Known Issues Sweep

Before deep analysis, scan for documented issues:

  1. Check CLAUDE.md / README for "gotchas" or "known issues"
  2. Search for TODO/FIXME/HACK comments
  3. Review recent commits for bug fixes (may indicate fragile areas)
  4. Check issue tracker if accessible

Add these as starting hypotheses—verify or refute during analysis.


Anti-Patterns to Avoid

Anti-PatternWhy It's BadInstead
Skimming codeMisses subtle bugsRead every line in scope
Assuming correctnessAgent code often has edge case bugsVerify each code path
Vague findings"This looks wrong" isn't actionableCite specific lines, explain why
Over-scopingAnalysis paralysisStrict subsystem boundaries
Ignoring testsTests reveal assumptionsRead tests to understand intent

Completion Criteria

Analysis is complete when:

  1. ✅ All high-priority subsystems analyzed
  2. ✅ Every finding has severity, location, and recommendation
  3. ✅ Summary document exists with prioritized action items
  4. ✅ No "TBD" or "needs investigation" items remain
  5. ✅ Cross-references between related findings added

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.89%
按下载量换算74

Claude

27.7%
按下载量换算53

Cursor

20.21%
按下载量换算39

Gemini CLI

10.02%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills