원클릭으로
agents-make
Design production-ready agent systems with Anthropic-style definitions, tool contracts, and orchestration rules.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Design production-ready agent systems with Anthropic-style definitions, tool contracts, and orchestration rules.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Conversion-focused marketing and copy system — headlines, CTAs, PAS/AIDA frameworks, full audit rubric.
Premium UI/UX design system — color psychology, typography, GSAP motion, conversion-first layouts. Full agency-grade output for any project.
| name | agents-make |
| description | Design production-ready agent systems with Anthropic-style definitions, tool contracts, and orchestration rules. |
Build agents as reusable systems, not vague prompts.
This skill governs the design and execution of AI agent systems: single agents, pipelines, and director trees. It is intentionally aligned with the Anthropic Managed Agents model so a user can define a serious agent system, not just describe one loosely.
When this skill creates or specifies an agent, it should use this shape as the baseline:
{
"name": "Research Director",
"model": "claude-sonnet-4-6",
"description": "Coordinates research and synthesis for a specific domain.",
"system": "You are a focused research director. Plan, delegate, verify, and summarize.",
"tools": [
{ "type": "agent_toolset_20260401" }
],
"mcp_servers": [],
"skills": [],
"callable_agents": [],
"metadata": {
"owner": "team-name",
"domain": "research"
}
}
Treat this as the contract to fill in. If the target platform is not Anthropic Managed Agents, still preserve the same structure conceptually and adapt the syntax to that runtime.
Before building any agent, answer:
If any of these are undefined, the agent design is incomplete.
Always work in this order:
User → @agent → Output
Use when: one focused task, stable toolset, no delegated specialists needed.
User → @agent-a → @agent-b → @agent-c → Output
Use when: task has sequential stages with explicit handoffs and each stage can validate the previous output.
User → @director → spawns → [@sub-a, @sub-b, @sub-c] → merges → Output
Use when: task requires parallel specialization, centralized planning, and an integration step.
Every agent must have a defined contract:
## Agent: [name]
**Responsibility:** [one sentence]
**Model:** [model id and why it fits]
**Description:** [human-readable summary]
**System:** [behavioral rules and constraints]
**Input:** [what it receives]
**Output:** [what it produces]
**Tools:** [built-in tools or custom tools]
**MCP Servers:** [remote tool systems, if any]
**Skills:** [reusable knowledge packs, if any]
**Callable Agents:** [agents it can delegate to]
**Failure modes:** [what can go wrong]
**Escalation rule:** [when it should stop and ask for help]
For Anthropic-style runtimes, define the live execution contract separately:
## Session
**Agent:** [agent id or local equivalent]
**Environment:** [container/network assumptions]
**Initial user message:** [first task payload]
**Expected events:** [status, tool activity, output, errors]
**Artifacts:** [files, reports, patches, API calls]
**Stop conditions:** [done, blocked, waiting on approval]
When the user is targeting Anthropic Managed Agents, also specify:
If the environment is underspecified, the design is incomplete even if the system prompt looks good.
| Platform | How to deploy agents |
|---|---|
| Claude Managed Agents | Define agent config, environment, session flow, and optional MCP/skills |
| Claude Code | Use agents/ docs as role definitions and adapt the same contract locally |
| Cursor | Adapt the contract into project rules and role-specific prompt files |
| GitHub Copilot | Use repo instructions plus slash-command workflow docs |
| Custom API | Use the same schema and map it into your own agent registry/runtime |
See skills/agents-make/resources/AGENT_TREE.md for the full agent role library.
See docs/integrations/anthropic/define_your_agent.md for the canonical Anthropic agent shape.
See docs/integrations/anthropic/managed_agents_overview.md for the runtime model.
See docs/integrations/anthropic/skills.md for skill attachment patterns.
Every agent system must pass before delivery: