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

agent-creatorAgent 创建者

Agent Skill

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

总安装

1,518

周安装

62

GitHub Stars

25

下载量

491
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oimiragieo/agent-studio --skill agent-creator

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • agent-creator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Mode: Script-First - Use scripts/main.cjs as the canonical path for generation and validation, then use this guide for research, skill assignment, and integration follow-through.

Agent Creator Skill

Creates specialized AI agents on-demand for capabilities that do not already have a good owner.

When This Skill Is Triggered

  1. The router finds no suitable existing agent.
  2. The user explicitly asks for a new agent.
  3. A capability gap requires a persistent specialist rather than a one-off task.

Reference Docs

  • Occupational alignment details - preserved router notes, trigger guidance, companion checks, domain research, and occupational-alignment fetch details.
  • Research and skills-gap details - preserved keyword research, skill discovery, configuration notes, and the full template contract reference.
  • Integration reference - preserved validation, routing-table, registry, memory, README, and ecosystem-integration guidance.
  • Examples and evaluation - preserved workflow integration notes, ecosystem alignment contract, examples, assertions, and optional eval add-ons.

Quick Reference

| Operation | Primary command or tool | | ----------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | ------ | ----------- | --------------- | | Check for existing agents | Glob:.claude/agents/**/*.md | | Generate the managed template | node.claude/skills/agent-creator/scripts/main.cjs --action generate --name <agent-name> --description "<summary>" --category <core | domain | specialized | orchestrators> | | Validate the managed template | node.claude/skills/agent-creator/scripts/main.cjs --action validate --file.claude/agents/<category>/<agent-name>.md | | Research the role | Follow occupational alignment details and research and skills-gap details | | Final integration | Follow integration reference |

Core Creation Workflow

Step 0: Existence Check and Updater Delegation

Before creating any agent file, check whether the target already exists.

test -f .claude/agents/<category>/<agent-name>.md && echo "EXISTS" || echo "NEW"
  • If the agent exists, stop and route the request to artifact-updater.
  • If the agent is new, continue to Step 0.1.
  • Do not create a new agent markdown file freehand when the managed template path applies.

Step 0.1: Smart Duplicate Detection

Run the duplicate detector before creating a new artifact:

const { checkDuplicate } = require('.claude/lib/creation/duplicate-detector.cjs');
const result = checkDuplicate({
  artifactType: 'agent',
  name: proposedName,
  description: proposedDescription,
  keywords: proposedKeywords || [],
});

Handle the outcomes exactly as before:

  • EXACT_MATCH -> stop and route to agent-updater
  • REGISTRY_MATCH -> inspect registry drift before creating
  • SIMILAR_FOUND -> review the candidates and decide whether to create or update
  • NO_MATCH -> continue to Step 0.5

Step 0.5: Companion Check

Run checkCompanions("agent", "{agent-name}") from .claude/lib/creators/companion-check.cjs before you continue. Record missing companion artifacts and carry them into post-creation follow-ups.

Step 1: Verify No Existing Agent Fits the Need

Search .claude/agents/**/*.md and the surrounding directories before proceeding. If an existing core, specialized, domain, or orchestrator agent already fits, use it instead of creating a duplicate specialist.

Step 2: Research the Domain

Complete the preserved research flow before finalizing the agent contract:

Step 3: Find Relevant Skills to Assign

Every new agent still needs a deliberate skill set.

  1. Scan the existing skill catalog.
  2. Identify primary, supporting, and on-demand skills.
  3. Record reusable skill gaps as Follow-Up items for the appropriate creator/updater instead of invoking another creator inline from this workflow.
  4. Include the assigned skills in frontmatter and in the workflow Step 0 load sequence.
  5. Keep search-oriented and task-management skills aligned with existing conventions.

Step 4: Determine Agent Configuration

Decide the agent archetype, category, and model before generation.

Agent TypeUse whenModel
WorkerExecutes tasks directlysonnet
AnalystResearch, review, or evaluation focusedsonnet
SpecialistDeep domain expertiseopus
AdvisorStrategic guidance or consultingopus

Choose the output directory that matches the role: core, specialized, domain, or orchestrators.

Step 5: Generate Agent Definition

Use the contract-first generator and validate the output before any manual refinement:

node .claude/skills/agent-creator/scripts/main.cjs --action generate --name <agent-name> --description "<summary>" --category <core|domain|specialized|orchestrators>
node .claude/skills/agent-creator/scripts/main.cjs --action validate --file .claude/agents/<category>/<agent-name>.md

The preserved template details in research and skills-gap details still define the required skills: array, Step 0 skill loading, lazy-load path usage, hook/workflow tables, response approach, behavioral traits, and examples.

Template Reference

Keep this minimum frontmatter and workflow contract:

---
name: agent-name
description: What the agent does and when to use it
tools: [Read, Write, Edit, Grep, Glob, Bash, WebSearch, WebFetch, TaskUpdate, TaskList, TaskCreate, TaskGet, Skill]
model: sonnet
context_strategy: lazy_load
skills:
  - task-management-protocol
  - code-semantic-search
context_files:
  - @.claude/context/memory/learnings.md
---

And keep the generated body aligned with these sections:

  • ## Enforcement Hooks
  • ## Related Workflows
  • ## Core Persona
  • ## Workflow with ### Step 0: Load Skills (FIRST)
  • ## Response Approach
  • ## Behavioral Traits
  • ## Example Interactions
  • ## Task Progress Protocol and ## Memory Protocol

Post-Creation Checklist

  • The existence and duplicate checks were completed.
  • Occupational alignment, keyword research, and skills-gap review were documented.
  • The agent was generated with scripts/main.cjs and validated with --action validate.
  • Required frontmatter fields, skills, and lazy-load references are present.
  • @AGENT_ROUTING_TABLE.md and any required routing keywords were updated.
  • node.claude/tools/cli/validate-integration.cjs.claude/agents/<category>/<agent-name>.md passes.
  • node.claude/tools/cli/generate-agent-registry.cjs was run when the agent is new or materially changed.
  • .claude/config/agent-config.json was updated when tool defaults are required.
  • npm run gen:all-registries was run for new or re-registered agents.
  • README footprint updates, memory notes, and integration follow-ups were captured.

Ecosystem Alignment Contract (MANDATORY)

This creator skill must keep new or updated agents aligned with the rest of the creator ecosystem:

  • skill-creator for reusable capabilities and assignments
  • tool-creator for executable automation surfaces
  • hook-creator for guardrails and enforcement
  • template-creator for scaffold reuse
  • workflow-creator for orchestration and phase gating
  • command-creator for operator-facing entry points

Cross-Creator Handshake (Required)

Before handoff, verify the related ecosystem updates:

  1. The route is discoverable in routing docs and registries.
  2. Companion skills, tools, hooks, templates, or workflows were created or explicitly waived.
  3. validate-integration.cjs passes for the affected agent artifact.
  4. Registries and indexes were regenerated when metadata changed.
  5. Follow-up gaps were recorded instead of silently deferred.

Research Gate (Exa + arXiv — BOTH MANDATORY)

For new agent patterns, role designs, orchestration models, or evaluation flows:

  1. Use Exa to review current implementation patterns and ecosystem conventions.
  2. Search arXiv for relevant research when the topic touches AI agents, evaluation, orchestration, memory/RAG, or security.
  3. Record the decisions, constraints, and non-goals that shaped the final agent contract.
  4. Prefer minimal, validated changes over speculative expansion.

Regression-Safe Delivery

  • Follow RED -> GREEN -> REFACTOR for behavior changes.
  • Run targeted tests for the touched agent and creator surfaces.
  • Run required format and validation commands before handoff.
  • Keep changes scoped to the failing contract instead of bundling unrelated cleanup.

Notes

  • Use integration reference for the preserved verbose Step 6-14 guidance.
  • If the agent uncovers reusable skill work, capture it as a Follow-Up for the next creator workflow rather than chaining to skill-creator inline.
  • Use examples and evaluation for the preserved examples, orchestrator sync notes, and optional evaluation material.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.62%
按下载量换算190

Claude

31.28%
按下载量换算154

Cursor

18.62%
按下载量换算91

Gemini CLI

9.15%
按下载量换算45

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills