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

agents-analyzeAgent 分析

Agent Skill

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

总安装

1,247

周安装

53

GitHub Stars

28

下载量

437
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill agents-analyze

简介

agents-analyze 分析插件集合,识别可拆分为子代理的优化机会以提升工作流效率。

  • 适用于审计现有技能库,发现输出冗余、模型选择或约束缺失等问题。
  • 通过命令行调用,支持批量检查模型和输出模式,适合代码审查场景。
  • 包含系统命令执行,需谨慎评估安全风险后再部署使用。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/agents:analyze

Analyze the plugin collection to identify where sub-agents would improve workflows by isolating verbose output, enforcing constraints, or specializing behavior.

When to Use

ScenarioUse this skillAlternative
Audit plugin collection for sub-agent opportunities/agents:analyze-
Identify skills with verbose output needing isolation/agents:analyze-
Review model selection (haiku vs opus) across agents/agents:analyze-
Check for tool over-permissions in existing agents/agents:analyze-
Focus analysis on a single plugin/agents:analyze --focus <plugin>-
Create a new agent from scratchManually create agent .md fileUse agent-development rule for patterns
Configure agent hooks or permissions/update-configUse update-config for settings.json changes

Agentic Optimizations

ContextCommand
List all pluginsfind. -maxdepth 1 -type d -name '*-plugin'
Count skills per plugin`find <plugin>/skills -name 'SKILL.md' -o -name 'skill.md' \wc -l`
List existing agentsfind agents-plugin/agents -maxdepth 1 -name '*.md'
Check agent model fieldgrep -r '^model:' agents-plugin/agents/
Check agent allowed-toolsgrep -r '^allowed-tools:' agents-plugin/agents/
Skill tool permissionsgrep -r '^allowed-tools:' */skills/*/SKILL.md

Context

  • Plugin directories:!find. -maxdepth 1 -type d -name '*-plugin'
  • Existing agents:!find agents-plugin/agents -maxdepth 1 -name '*.md'
  • Skills:!find. -path '*/skills/*/skill.md'
  • Skills (user-invocable):!find. -path '*/skills/*/SKILL.md' -not -path './agents-plugin/*'

Parameters

  • $1: Optional --focus <plugin-name> to analyze a single plugin in depth

Your Task

Perform a systematic analysis of the plugin collection to identify sub-agent opportunities.

Step 1: Inventory Current State

Scan the repository to build an inventory:

  1. List all plugins with their skill/command counts
  2. Read existing agents in agents-plugin/agents/ to understand current coverage
  3. If --focus is provided, restrict analysis to that plugin only

Step 2: Identify Sub-Agent Opportunities

For each plugin (or focused plugin), evaluate skills and commands against these criteria:

Context Isolation (Primary Value)

Operations that produce verbose output benefiting from isolation:

IndicatorExamples
Build toolsdocker build, cargo build, webpack, tsc
Infrastructure opsterraform plan/apply, kubectl describe
Test runnersFull test suite output, coverage reports
Profiling toolsFlame graphs, benchmark results
Security scannersVulnerability reports, audit output
Log analysisApplication logs, system logs
Package managersDependency trees, audit results

Constraint Enforcement

Operations that should be limited to specific tools:

ConstraintRationale
Read-only analysisSecurity audit, code review - no writes
No networkPure code analysis tasks
Limited bashTasks that shouldn't execute arbitrary commands

Model Selection Opportunities

Assign opus when...Assign haiku when...
Complex reasoning requiredStructured/mechanical task
Security analysisStatus checks
Architecture decisionsOutput formatting
Debugging methodologyConfiguration generation
Performance analysisFile operations

Step 3: Gap Analysis

Compare identified opportunities against existing agents:

  1. Missing agents: Skills that have no corresponding agent
  2. Model mismatches: Agents using wrong model for their task complexity
  3. Tool over-permissions: Agents with tools they don't need
  4. Consolidation opportunities: Multiple agents that could be merged
  5. Delegation mapping: Check if /delegate references agents that don't exist

Step 4: Produce Recommendations

For each recommended new agent, specify:

### Proposed: <agent-name>

- **Model**: opus | haiku
- **Covers plugins**: <list>
- **Context value**: <what verbose output it isolates>
- **Tools**: <minimal set>
- **Constraint**: <read-only, no-network, etc.>
- **Priority**: HIGH | MEDIUM | LOW
- **Rationale**: <why this is better than inline execution>

For model/tool corrections to existing agents:

### Fix: <agent-name>

- **Current model**: X → **Recommended**: Y
- **Reason**: <why the change improves things>

Step 5: Implementation Check

If new agents are recommended, check:

  • Agent name doesn't conflict with existing
  • Agent fills a gap referenced by /delegate command
  • Model selection follows haiku-for-mechanical, opus-for-reasoning
  • Tool set is minimal (principle of least privilege)
  • Agent has clear "does / does NOT do" boundaries

Output Format

## Sub-Agent Analysis Report

**Scope**: [All plugins | focused plugin name]
**Date**: [today]
**Plugins analyzed**: N
**Existing agents**: N
**Skills without agent coverage**: N

### Current Coverage Map

| Domain | Agent | Skills Covered | Gaps |
|--------|-------|----------------|------|
| ... | ... | ... | ... |

### Recommended New Agents

[Proposals from Step 4]

### Recommended Fixes

[Model/tool corrections from Step 4]

### Delegation Mapping Updates

[Any updates needed for /delegate command's agent reference table]

### Priority Summary

| Priority | Count | Top Recommendation |
|----------|-------|-------------------|
| HIGH | N | ... |
| MEDIUM | N | ... |
| LOW | N | ... |

Post-Actions

After presenting the analysis:

  1. Ask the user if they want to implement any of the recommendations
  2. If yes, create the agent files following the existing patterns in agents-plugin/agents/
  3. Update agents-plugin/README.md with new agents
  4. Update /delegate command's agent reference table if needed

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.71%
按下载量换算147

Claude

30.57%
按下载量换算134

Cursor

21.03%
按下载量换算92

Gemini CLI

10.03%
按下载量换算44

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill agents-analyze 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills