agent
Create and manage custom AI agents and teams
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create and manage custom AI agents and teams
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Outcome-first fix with a guided intake form — pick scope and probes from derived candidates, preview the contract, run with a verified receipt. Triggers on: attune fix, scoped fix, fix with receipt, outcome fix, fix intake.
Outcome-first fix with a guided intake form — pick scope and probes from derived candidates, preview the contract, run with a verified receipt. Triggers on: attune fix, scoped fix, fix with receipt, outcome fix, fix intake.
Spec-driven development — brainstorm, plan, review, and execute with quality gates. Triggers on: spec, brainstorm and build, plan and execute, idea to code, build from scratch.
Spec-driven development — brainstorm, plan, review, and execute with quality gates. Triggers on: spec, brainstorm and build, plan and execute, idea to code, build from scratch.
Developer workflow hub — routes to the right skill based on what you need. Triggers on: attune, what can attune do, what can you do, capabilities, where do I start, get started.
Outcome-first fix with a guided intake form — pick scope and probes from derived candidates, preview the contract, run with a verified receipt. Triggers on: attune fix, scoped fix, fix with receipt, outcome fix, fix intake.
| name | agent |
| description | Create and manage custom AI agents and teams |
Create and manage custom AI agents and teams using the Attune Agent SDK.
| Subcommand | Action |
|---|---|
create | Create a new agent |
create-team | Create a multi-agent team |
run | Run an existing agent |
list | List available agents |
release-prep | Run release prep agent team |
/agent # Ask what to do
/agent create # Create an agent
/agent create-team # Create a team
/agent run # Run an agent
/agent list # List agents
/agent release-prep # Run release prep team
Use AskUserQuestion to understand:
Then guide the user through agent definition using the SDK:
from attune.agents.sdk import SDKAgent
agent = SDKAgent(
agent_id="my-agent",
role="analyst",
tier="capable",
)
Use AskUserQuestion to understand:
Then guide through team creation:
from attune.agents.sdk import SDKAgentTeam
team = SDKAgentTeam(
team_id="my-team",
agents=[agent1, agent2],
)
Use AskUserQuestion:
Then execute the agent.
Show available agents and teams from the registry.
Run the release preparation agent team:
uv run attune workflow run release-prep