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

agent-lifecycle-managementAgent 生命周期管理

Agent Skill

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

总安装

374

周安装

15

GitHub Stars

61

下载量

121
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill agent-lifecycle-management

简介

Agent Lifecycle Management Skill 用于管理代理舰队的全生命周期操作,包括创建、命令执行、监控和删除。

  • 适用于设置代理生命周期模式、实现代理管理工具、设计清理和资源管理以及构建代理状态跟踪的场景。
  • 通过 CRUD 操作接口实现代理舰队的统一调度,支持资源清理和状态持久化。
  • 安装需确认权限范围和维护状态,可能涉及联网、命令执行或文件读写操作。
  • agent-lifecycle-management 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Agent Lifecycle Management Skill

Manage agent fleets through Create, Command, Monitor, and Delete operations.

Purpose

Guide the implementation of CRUD operations for agent fleets, ensuring proper lifecycle management and resource cleanup.

When to Use

  • Setting up agent lifecycle patterns
  • Implementing agent management tools
  • Designing cleanup and resource management
  • Building agent state tracking

Prerequisites

  • Understanding of orchestrator architecture (@single-interface-pattern.md)
  • Familiarity with the Three Pillars (@three-pillars-orchestration.md)
  • Access to Claude Agent SDK documentation

SDK Requirement

Implementation Note: Full lifecycle management requires Claude Agent SDK with custom MCP tools. This skill provides design patterns for SDK implementation.

Lifecycle Pattern

Create --> Command --> Monitor --> Aggregate --> Delete
|  |  |  |  |
   v          v           v            v           v
Template   Prompt      Status      Results     Cleanup

CRUD Operations

Create Operation

Spin up a new specialized agent.

Parameters:

  • template: Pre-defined configuration to use
  • name: Unique identifier for this agent
  • system_prompt: Custom prompt (alternative to template)
  • model: haiku, sonnet, or opus
  • allowed_tools: Tools this agent can use

Example:

create_agent(
    name="scout_1",
    template="scout-fast",
    # OR
    system_prompt="...",
    model="haiku",
    allowed_tools=["Read", "Glob", "Grep"]
)

Best Practices:

  • Use templates for consistency
  • Give descriptive names
  • Select appropriate model
  • Minimize tool access

Command Operation

Send prompts to an agent.

Parameters:

  • agent_id: Which agent to command
  • prompt: The detailed instruction

Example:

command_agent(
    agent_id="scout_1",
    prompt="""
    Analyze the authentication module in src/auth/.
    Focus on:
    1. Current implementation patterns
    2. Security considerations
    3. Potential improvements

    Report findings in structured format.
    """
)

Best Practices:

  • Detailed, specific prompts
  • Clear expected output format
  • Include all relevant context
  • One task per command

Monitor Operation (Read)

Check agent status and progress.

Operations:

# Check status
check_agent_status(
    agent_id="scout_1",
    verbose_logs=True
)

# List all agents
list_agents()

# Read agent logs
read_agent_logs(
    agent_id="scout_1",
    offset=0,
    limit=50
)

Status Values:

StatusMeaning
idleReady for commands
executingProcessing prompt
waitingWaiting for input
blockedPermission needed
completeFinished

Delete Operation

Clean up agents when work is complete.

Example:

delete_agent(agent_id="scout_1")

Key Principle:

"Treat agents as deletable temporary resources that serve a single purpose."

Lifecycle Patterns

Scout-Build Pattern

1. Create scout agent
2. Command: Analyze codebase
3. Monitor until complete
4. Aggregate scout findings
5. Delete scout

6. Create builder agent
7. Command: Implement based on findings
8. Monitor until complete
9. Aggregate build results
10. Delete builder

Scout-Build-Review Pattern

Phase 1: Scout
- Create scouts (parallel)
- Command each with specific area
- Aggregate findings

Phase 2: Build
- Create builder
- Command with scout reports
- Monitor implementation

Phase 3: Review
- Create reviewer
- Command to verify implementation
- Generate final report

Cleanup: Delete all agents

Parallel Execution

Create: scout_1, scout_2, scout_3 (parallel)
Command each with different area
Monitor all until complete
Aggregate all findings
Delete all scouts

Create: builder_1, builder_2 (parallel)
Command each with different files
Monitor all until complete
Aggregate all changes
Delete all builders

Agent Templates

Fast Scout Template

---
name: scout-fast
description: Quick codebase reconnaissance
tools: [Read, Glob, Grep]
model: haiku
---

# Scout Agent

Analyze codebase efficiently. Focus on:
- File structure
- Key patterns
- Relevant code sections

Report findings concisely.

Builder Template

---
name: builder
description: Code implementation specialist
tools: [Read, Write, Edit, Bash]
model: sonnet
---

# Builder Agent

Implement changes based on specifications.
Follow existing patterns.
Test your changes.
Report what was modified.

Reviewer Template

---
name: reviewer
description: Code review and verification
tools: [Read, Grep, Glob, Bash]
model: sonnet
---

# Reviewer Agent

Verify implementation against requirements.
Check for issues and risks.
Report findings by severity.

State Tracking

Track agent state for observability:

{
  "agent_id": "scout_1",
  "template": "scout-fast",
  "status": "executing",
  "created_at": "2024-01-15T10:30:00Z",
  "last_activity": "2024-01-15T10:32:15Z",
  "context_tokens": 12500,
  "cost": 0.05,
  "tool_calls": 15
}

Resource Cleanup

Cleanup Triggers

TriggerAction
Work completeDelete immediately
Error stateDelete and report
TimeoutDelete and warn
User abortDelete all

Cleanup Checklist

  • All agents have termination logic
  • Dead agents are detected
  • Resources are released
  • Final results are captured
  • Cleanup is logged

Output Format

When implementing lifecycle management, provide:

## Lifecycle Implementation

### Agent Templates

[List of templates with configurations]

### CRUD Tools

| Tool | Implementation | Parameters |
| --- | --- | --- |
| create_agent | ... | ... |
| command_agent | ... | ... |
| check_agent_status | ... | ... |
| list_agents | ... | ... |
| delete_agent | ... | ... |

### State Schema

[JSON schema for agent state]

### Cleanup Logic

[When and how agents are deleted]

Anti-Patterns

Anti-PatternProblemSolution
Keeping dead agentsResource wasteDelete when done
Long-lived agentsContext accumulationFresh agents per task
Generic agentsUnfocused workSpecialized templates
Missing cleanupDead agents accumulateAlways delete
Reusing agentsContext contaminationCreate fresh

Key Quotes

"The rate at which you create and command your agents becomes the constraint of your engineering output." "One agent, one prompt, one purpose - then delete."

Cross-References

  • @agent-lifecycle-crud.md - Lifecycle patterns
  • @three-pillars-orchestration.md - CRUD pillar
  • @single-interface-pattern.md - Orchestrator architecture
  • @orchestrator-design skill - System design

Version History

  • v1.0.0 (2025-12-26): Initial release

Last Updated

Date: 2025-12-26 Model: claude-opus-4-5-20251101

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Antigravity

28.55%
按下载量换算35

trae

20.82%
按下载量换算25

windsurf

18.46%
按下载量换算22

Claude Code

12.89%
按下载量换算16

Codex

7.59%
按下载量换算9

Gemini CLI

3.36%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills