返回技能列表

evolve-agent

pjt222
更新于 2 days ago
7 次查看
17
2
17
在 GitHub 上查看
aidesigndata

关于

The `evolve-agent` skill updates an existing agent's definition by refining its persona or creating an advanced variant. It handles assessing the agent, applying changes to its skills and tools, and updating metadata and registry references. Use it when an agent's capabilities are outdated, feedback reveals gaps, or its scope needs sharpening after real-world use.

快速安装

Claude Code

推荐
主要方式
npx skills add pjt222/agent-almanac -a claude-code
插件命令备选方式
/plugin add https://github.com/pjt222/agent-almanac
Git 克隆备选方式
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/evolve-agent

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

Evolve an Existing Agent

Improve, extend, or create an advanced variant of an agent that was originally authored with create-agent. This procedure covers the maintenance side of the agent lifecycle: assessing gaps against best practices, applying targeted improvements to the persona definition, bumping versions, and keeping the registry and cross-references in sync.

When to Use

  • An agent's skills list is outdated after new skills were added to the library
  • User feedback reveals missing capabilities, unclear purpose, or weak examples
  • Tool requirements have changed (new MCP server, tool removed, privilege reduction needed)
  • An agent's scope needs sharpening — it overlaps with another agent or is too broad
  • An advanced variant is needed alongside the original (e.g., r-developer and r-developer-advanced)
  • Related agents or teams were added and cross-references in See Also are stale

Inputs

  • Required: Path to the existing agent file to evolve (e.g., agents/r-developer.md)
  • Required: Evolution trigger (feedback, new skills, tool change, scope overlap, team integration, discovered limitations)
  • Optional: Target version bump magnitude (patch, minor, major)
  • Optional: Whether to create an advanced variant instead of refining in-place (default: refine in-place)

Procedure

Step 1: Assess the Current Agent

Read the existing agent file and evaluate each section against the quality checklist from guides/agent-best-practices.md:

SectionWhat to CheckCommon Issues
FrontmatterAll required fields present (name, description, tools, model, version, author)Missing tags, stale version, wrong priority
PurposeSpecific problem statement, not generic "helps with X"Vague or overlapping with another agent
CapabilitiesConcrete, verifiable capabilities with bold lead-insGeneric ("handles development"), no grouping
Available SkillsMatches frontmatter skills list, all IDs exist in registryStale IDs, missing new skills, lists default skills unnecessarily
Usage Scenarios2-3 realistic scenarios with invocation patternsPlaceholder text, unrealistic examples
ExamplesShows user request and agent behaviorMissing or trivial examples
Limitations3-5 honest constraintsToo few, too vague, or missing entirely
See AlsoValid cross-references to agents, guides, teamsStale links to renamed or removed files
# Read the agent file
cat agents/<agent-name>.md

# Check frontmatter parses
head -20 agents/<agent-name>.md

# Verify skills in frontmatter exist in registry
grep "skills:" -A 20 agents/<agent-name>.md

# Check if agent is referenced by any team
grep -r "<agent-name>" teams/*.md

Got: A list of specific gaps, weaknesses, or improvement opportunities organized by section.

If fail: If the agent file does not exist or has no frontmatter, this skill does not apply — use create-agent instead to author it from scratch.

Step 2: Gather Evolution Requirements

Identify and categorize what triggered the evolution:

TriggerExampleTypical Scope
User feedback"Agent missed XSS in review"Add skill or capability
New skills availableLibrary gained analyze-api-securityUpdate skills list
Tool changeNew MCP server availableAdd to tools/mcp_servers
Scope overlapTwo agents both claim "code review"Sharpen purpose and limitations
Team integrationAgent added to a new teamUpdate See Also, verify capabilities
Model upgradeTask requires deeper reasoningChange model field
Privilege reductionAgent has Bash but only reads filesRemove unnecessary tools

Document the specific changes needed before editing. List each change with its target section:

- Frontmatter: add `new-skill-id` to skills list
- Capabilities: add "API Security Analysis" capability
- Available Skills: add `new-skill-id` with description
- Limitations: remove outdated limitation about missing skill
- See Also: add link to new team that includes this agent

Got: A concrete list of changes, each mapped to a specific section of the agent file.

If fail: If the changes are unclear, consult the user for clarification before proceeding. Vague evolution goals produce vague improvements.

Step 3: Choose Evolution Scope

Use this decision matrix to determine whether to refine in-place or create a variant:

CriteriaRefinement (in-place)Advanced Variant (new agent)
Agent IDUnchangedNew ID: <agent>-advanced or <agent>-<specialty>
File pathSame .md fileNew file in agents/
Version bumpPatch or minorStarts at 1.0.0
ModelMay changeOften higher (e.g., sonnet → opus)
RegistryUpdate existing entryNew entry added
Original agentModified directlyLeft intact, gains See Also cross-reference

Refinement: Choose when updating skills, fixing documentation, sharpening scope, or adjusting tools. The agent keeps its identity.

Variant: Choose when the evolved version would serve a substantially different audience, require a different model, or add capabilities that would make the original too broad. The original stays as-is for simpler use cases.

Got: A clear decision — refinement or variant — with rationale.

If fail: If unsure, default to refinement. You can always extract a variant later; it is harder to merge one back.

Step 4: Apply Changes to the Agent File

For Refinements

Edit the existing agent file directly:

  • Frontmatter: Update skills, tools, tags, model, priority, mcp_servers as needed
  • Purpose/Capabilities: Revise to reflect new scope or added functionality
  • Available Skills: Add new skills with descriptions, remove deprecated ones
  • Usage Scenarios: Add or revise scenarios to demonstrate new capabilities
  • Limitations: Remove constraints that no longer apply, add new honest ones
  • See Also: Update cross-references to reflect current agent/team/guide landscape

Follow these editing rules:

  • Preserve all existing sections — add content, do not remove sections
  • Keep the Available Skills section in sync with the frontmatter skills list
  • Do not add default skills (meditate, heal) to frontmatter unless they are core to the agent's methodology
  • Verify each skill ID exists: grep "id: skill-name" skills/_registry.yml

For Variants

# Copy the original as a starting point
cp agents/<agent-name>.md agents/<agent-name>-advanced.md

# Edit the variant:
# - Change `name` to `<agent-name>-advanced`
# - Update `description` to reflect the advanced scope
# - Raise `model` if needed (e.g., sonnet → opus)
# - Reset `version` to "1.0.0"
# - Expand skills, capabilities, and examples for the advanced use case
# - Reference the original in See Also as a simpler alternative

Got: The agent file (refined or new variant) passes the assessment checklist from Step 1.

If fail: If an edit breaks the document structure, use git diff to review changes and revert partial edits with git checkout -- <file>.

Step 4.5: Sync Translated Variants

Required when translations exist. This step applies to both human authors and AI agents following this procedure. Do not skip — stale source_commit values cause npm run validate:translations to report false staleness warnings across all locales.

Check whether translations exist for the evolved agent and update them to reflect the new source state:

# Check for existing translations
ls i18n/*/agents/<agent-name>.md 2>/dev/null

If translations exist

  1. Get the current source commit hash:
SOURCE_COMMIT=$(git rev-parse HEAD)
  1. Update source_commit in each translated file's frontmatter:
for locale_file in i18n/*/agents/<agent-name>.md; do
  sed -i "s/^source_commit: .*/source_commit: $SOURCE_COMMIT/" "$locale_file"
done
  1. Flag files for re-translation by including affected locales in the commit message:
evolve(<agent-name>): <description of changes>

Translations flagged for re-sync: de, zh-CN, ja, es
Changed sections: <list sections that changed>
  1. Regenerate translation status files:
npm run translation:status

If no translations exist

No action needed. Proceed to Step 5.

For variants

Defer translation of new variants until the variant stabilizes (1-2 versions). Add translations after the variant has been refined at least once.

Got: All translated files have source_commit updated to the current commit. npm run translation:status exits 0.

If fail: If sed fails to match the frontmatter field, open the translated file manually and verify it has source_commit in its YAML frontmatter. If the field is missing, re-scaffold with npm run translate:scaffold -- agents <agent-name> <locale>.

Step 5: Update Version and Metadata

Bump the version field in frontmatter following semantic versioning:

Change TypeVersion BumpExample
Typo fix, wording clarificationPatch: 1.0.0 → 1.0.1Fixed unclear limitation
New skills added, capability expandedMinor: 1.0.0 → 1.1.0Added 3 new skills from library
Restructured purpose, changed modelMajor: 1.0.0 → 2.0.0Narrowed scope, upgraded to opus

Also update:

  • updated date to the current date
  • tags if the agent's domain coverage changed
  • description if the purpose is materially different
  • priority if the agent's importance relative to others changed

Got: Frontmatter version and updated reflect the magnitude and date of changes. New variants start at "1.0.0".

If fail: If you forget to bump the version, the next evolution will have no way to distinguish the current state from the previous one. Always bump before committing.

Step 6: Update Registry and Cross-References

For Refinements

Update the existing entry in agents/_registry.yml to match the revised frontmatter:

# Find the agent's registry entry
grep -A 10 "id: <agent-name>" agents/_registry.yml

Update description, tags, tools, and skills fields to match the agent file. No count change is needed.

Update cross-references in other files if the agent's capabilities or name changed:

# Check if any team references this agent
grep -r "<agent-name>" teams/*.md

# Check if any guide references this agent
grep -r "<agent-name>" guides/*.md

For Variants

Add the new agent to agents/_registry.yml in alphabetical position:

  - id: <agent-name>-advanced
    path: agents/<agent-name>-advanced.md
    description: One-line description of the advanced variant
    tags: [domain, specialty, advanced]
    priority: normal
    tools: [Read, Write, Edit, Bash, Grep, Glob]
    skills:
      - skill-id-one
      - skill-id-two

Then:

  1. Increment total_agents at the top of the registry
  2. Add See Also cross-reference in the original agent pointing to the variant
  3. Add See Also cross-reference in the variant pointing to the original
  4. The .claude/agents/ symlink to agents/ means the variant is automatically discoverable

Got: Registry entry matches the agent file frontmatter. For variants, total_agents equals the actual number of agent entries.

If fail: Count entries with grep -c "^ - id:" agents/_registry.yml and verify it matches total_agents.

Step 7: Validate the Evolved Agent

Run the full validation checklist:

  • Agent file exists at the expected path
  • YAML frontmatter parses without errors
  • version was bumped (refinement) or set to "1.0.0" (variant)
  • updated date reflects today
  • All required sections present: Purpose, Capabilities, Available Skills, Usage Scenarios, Examples, Limitations, See Also
  • Skills in frontmatter match the Available Skills section
  • All skill IDs exist in skills/_registry.yml
  • Default skills (meditate, heal) are not listed unless core to methodology
  • Tools list follows least-privilege principle
  • Registry entry exists and matches frontmatter
  • For variants: total_agents count matches actual count on disk
  • Cross-references are bidirectional (original ↔ variant)
  • git diff shows no accidental deletions from the original content
# Verify frontmatter
head -20 agents/<agent-name>.md

# Check skills exist
for skill in skill-a skill-b; do
  grep "id: $skill" skills/_registry.yml
done

# Count agents on disk vs registry
ls agents/*.md | grep -v template | wc -l
grep total_agents agents/_registry.yml

# Review all changes
git diff

Got: All checklist items pass. The evolved agent is ready to commit.

If fail: Address each failing item individually. The most common post-evolution issues are stale skill IDs in the Available Skills section and a forgotten updated date.

Validation

  • Agent file exists and has valid YAML frontmatter
  • version field reflects the changes made
  • updated date is current
  • All sections present and internally consistent
  • Frontmatter skills array matches the Available Skills section
  • All skill IDs exist in skills/_registry.yml
  • Default skills not listed unnecessarily
  • Registry entry matches the agent file
  • For variants: new entry in agents/_registry.yml with correct path
  • For variants: total_agents count updated
  • Cross-references are valid (no broken links in See Also)
  • For refinements with translations: source_commit updated in all locale files
  • git diff confirms no accidental content removal

Pitfalls

  • Forgetting to bump version: Without version bumps, there is no way to track what changed or when. Always update version and updated in frontmatter before committing.
  • Stale translations after evolution: With 1,288+ translation files in the repo, every agent evolution triggers staleness in up to 4 locale files. Always check for existing translations with ls i18n/*/agents/<agent-name>.md and update source_commit in each, or flag them for re-translation in the commit message.
  • Skills list drift: The frontmatter skills array and the ## Available Skills section must stay in sync. Updating one without the other creates confusion for both humans and tooling.
  • Listing default skills unnecessarily: Adding meditate or heal to the frontmatter when they are already inherited from the registry. Only list them if they are core to the agent's methodology (e.g., mystic, alchemist).
  • Tool over-provisioning during evolution: Adding Bash or WebFetch during an evolution "just in case." Every tool addition should be justified by a specific new capability.
  • Stale See Also after variant creation: When creating a variant, both the original and the variant need to reference each other. One-directional references leave the graph incomplete.
  • Registry entry not updated: After changing an agent's skills, tools, or description, the agents/_registry.yml entry must be updated to match. Stale registry entries cause discovery and tooling failures.

Related Skills

  • create-agent — foundation for authoring new agents; evolve-agent assumes this was followed originally
  • evolve-skill — the parallel procedure for evolving SKILL.md files
  • commit-changes — commit the evolved agent with a descriptive message

GitHub 仓库

pjt222/agent-almanac
路径: i18n/caveman-lite/skills/evolve-agent
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

相关推荐技能

content-collections

Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。

查看技能

polymarket

这个Claude Skill为开发者提供完整的Polymarket预测市场开发支持,涵盖API调用、交易执行和市场数据分析。关键特性包括实时WebSocket数据流,可监控实时交易、订单和市场动态。开发者可用它构建预测市场应用、实施交易策略并集成实时市场预测功能。

查看技能

creating-opencode-plugins

该Skill帮助开发者创建OpenCode插件,用于接入命令、文件、LSP等25+种事件。它提供了插件结构、事件API规范和JavaScript/TypeScript实现模式,适合需要拦截操作、扩展功能或自定义事件处理的场景。开发者可通过它快速构建响应式模块来增强OpenCode AI助手的能力。

查看技能

sglang

SGLang是一个专为LLM设计的高性能推理框架,特别适用于需要结构化输出的场景。它通过RadixAttention前缀缓存技术,在处理JSON、正则表达式、工具调用等具有重复前缀的复杂工作流时,能实现极速生成。如果你正在构建智能体或多轮对话系统,并追求远超vLLM的推理性能,SGLang是理想选择。

查看技能