Create and manage custom AI agents and teams
Scanned 9/2/2026
Install to Claude Code
npx -y skills add Smart-AI-Memory/attune-ai --skill agent --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Agent?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/smart-ai-memory-agent-attune-ai)More formats (shields.io, HTML) on the badges page.
---
name: agent
description: Create and manage custom AI agents and teams
category: primary
aliases: [ag]
tags: [agents, teams, sdk, orchestration]
version: "1.0.0"
question:
header: "Agent"
question: "What agent operation do you need?"
multiSelect: false
options:
- label: "Create an agent"
description: "Define a new custom agent"
- label: "Create a team"
description: "Define a multi-agent team"
- label: "Run an agent"
description: "Execute an existing agent"
- label: "List agents"
description: "Show available agents"
---
# agent
Create and manage custom AI agents and teams using
the Attune Agent SDK.
## Routes
| 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 |
## Usage
```bash
/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
```
## Behavior
### create
Use `AskUserQuestion` to understand:
- What should the agent do?
- What tier? (cheap, capable, premium)
- What tools does it need?
Then guide the user through agent definition using
the SDK:
```python
from attune.agents.sdk import SDKAgent
agent = SDKAgent(
agent_id="my-agent",
role="analyst",
tier="capable",
)
```
### create-team
Use `AskUserQuestion` to understand:
- What's the team's goal?
- How many agents?
- What roles?
Then guide through team creation:
```python
from attune.agents.sdk import SDKAgentTeam
team = SDKAgentTeam(
team_id="my-team",
agents=[agent1, agent2],
)
```
### run
Use `AskUserQuestion`:
- Which agent or team to run?
- What input?
Then execute the agent.
### list
Show available agents and teams from the registry.
### release-prep
Run the release preparation agent team:
```bash
uv run attune workflow run release-prep
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!