agent
Create and manage custom AI agents and teams
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create and manage custom AI agents and teams
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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