Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

agentic-layer-assessmentAgent 层评估

Agent Skill

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

总安装

315

周安装

13

GitHub Stars

61

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill agentic-layer-assessment

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 提供基于 TAC Lesson 14 的 12 级分类体系评估 Agentic 层成熟度。
  • 安装命令:npx skills add https://github.com/melodic-software/claude-code-plugins --skill agentic-layer-assessment。
  • 注意权限范围、维护状态,避免触发联网、命令执行或文件读写。

SKILL.md

Agentic Layer Assessment

Assess agentic layer maturity using the complete 12-grade classification system from TAC Lesson 14.

When to Use

  • Evaluating current agentic layer maturity
  • Identifying the next grade to achieve
  • Tracking progress toward Codebase Singularity
  • Onboarding new team members to agentic patterns
  • Planning agentic infrastructure investments

Prerequisites

  • Access to the codebase's .claude/ directory
  • Understanding of @adw-framework.md classification system

The Classification System

Three classes with 12 total grades:

Class 1: Foundation (In-Loop Agentic Coding)

GradeComponentIndicator
1Memory FilesCLAUDE.md exists with guidance
2Sub-AgentsTask agents used for parallelization
3Skills/MCPsCustom skills or MCP integrations
4Closed-LoopsSelf-validating prompts
5TemplatesBug/feature/chore classification
6Prompt ChainsMulti-step composite workflows
7Agent ExpertsExpertise files with self-improve

Class 2: External Integration (Out-Loop Agentic Coding)

GradeComponentIndicator
1WebhooksExternal triggers (PITER framework)
2ADWsAI Developer Workflows running

Class 3: Production Orchestration (Orchestrated Agentic Coding)

GradeComponentIndicator
1OrchestratorMeta-agent managing fleet
2Orchestrator WorkflowsHuman-orchestrator interaction
3ADWs + OrchestratorFull autonomous execution

Assessment Process

Step 1: Scan Codebase

Check for indicators of each grade:

# Grade 1: Memory files
ls .claude/ CLAUDE.md

# Grade 2: Sub-agents
ls .claude/agents/

# Grade 3: Skills
ls .claude/skills/ || ls -d */skills/ 2>/dev/null

# Grade 4: Closed-loop patterns
grep -r "validation" .claude/commands/
grep -r "retry" .claude/commands/

# Grade 5: Templates
ls .claude/commands/ | grep -E "(chore|bug|feature)"

# Grade 6: Prompt chains
grep -r "Step 1" .claude/commands/
grep -r "Then execute" .claude/commands/

# Grade 7: Agent experts
ls .claude/commands/experts/ 2>/dev/null
find . -name "expertise.yaml"

# Grade 8 (Class 2 G1): Webhooks
find . -name "*webhook*" -o -name "*trigger*"

# Grade 9 (Class 2 G2): ADWs
ls adws/ 2>/dev/null

# Grade 10-12 (Class 3): Orchestrator
find . -name "*orchestrator*"

Step 2: Score Each Grade

For each grade, determine status:

StatusMeaning
✅ CompleteFully implemented and used
🔶 PartialSome elements present
❌ MissingNot implemented

Step 3: Calculate Current Level

Your level = highest consecutive completed grade

Example:

  • Grades 1-4: ✅
  • Grade 5: 🔶
  • Grades 6-7: ❌

Result: Class 1 Grade 4 (solid), targeting Grade 5

Step 4: Identify Next Step

Recommend specific actions for next grade:

CurrentNext Step
Grade 1Add Task agents for parallelization
Grade 2Create custom skills or MCP
Grade 3Add validation loops to prompts
Grade 4Implement issue classification templates
Grade 5Chain prompts into workflows
Grade 6Build first agent expert
Grade 7Set up external triggers
C2G1Implement AI Developer Workflows
C2G2Build orchestrator agent
C3G1Add human-orchestrator workflows
C3G2Connect orchestrator to ADWs

Output Format

## Agentic Layer Assessment Report

**Codebase:** [project name]
**Date:** [assessment date]
**Assessed by:** [model]

### Classification Summary

**Current Level:** Class [1/2/3] Grade [1-7/1-2/1-3]
**Maturity Score:** [X]/12 grades achieved

### Grade-by-Grade Assessment

| Grade | Component | Status | Evidence |
| --- | --- | --- | --- |
| C1G1 | Memory Files | ✅/🔶/❌ | [what was found] |
| C1G2 | Sub-Agents | ✅/🔶/❌ | [what was found] |
...

### Strengths

- [What's working well]

### Gaps

- [What's missing or weak]

### Recommended Next Steps

1. **Priority 1:** [Most impactful improvement]
2. **Priority 2:** [Second priority]
3. **Priority 3:** [Third priority]

### Path to Class 3

[Roadmap of remaining grades to achieve]

Assessment Checklist

  • Scanned .claude/ directory structure
  • Checked for memory files (CLAUDE.md)
  • Searched for agent/skill definitions
  • Analyzed prompt patterns (loops, chains)
  • Looked for templates and classification
  • Checked for expertise files
  • Searched for external triggers
  • Identified ADW presence
  • Assessed orchestrator implementation
  • Calculated maturity score
  • Identified highest consecutive grade
  • Recommended next steps

Key Insight

"Your agentic layer should be specialized to fit and wrap your codebase. Don't focus on reuse, focus on making these prompts great for that one codebase."

Each grade builds on the previous. Skip a grade and the foundation becomes unstable.

Anti-Patterns

Anti-PatternProblemSolution
Skipping gradesMissing foundationBuild progressively
Over-engineering earlyComplexity before valueStart with Grade 1-2
Generic layersDon't fit codebaseSpecialize for your project
Assessment without actionNo improvementPrioritize next step

Cross-References

  • @adw-framework.md - Classification system details
  • @agentic-layer-structure.md - Directory structure
  • @zte-progression.md - Zero-touch engineering path
  • @minimum-viable-agentic skill - Starting point

Version History

  • v1.0.0 (2026-01-01): Initial release (Lesson 14)

Last Updated

Date: 2026-01-01 Model: claude-opus-4-5-20251101

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Antigravity

29.73%
按下载量换算31

trae

23.91%
按下载量换算25

windsurf

18.19%
按下载量换算19

Claude Code

14.76%
按下载量换算15

Codex

7.95%
按下载量换算8

Gemini CLI

3.74%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills