Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Cao Cli

ASecurity

Amazon Q Developer CLI (formerly CAO - Claude Agent Orchestrator) is an AI assistant CLI from AWS Labs. Note: Repository is no longer actively maintained - moved to closed-source Kiro CLI.

22 stars
0 votes
0 copies
0 views
Added 9/20/2026
ai-agentsrustgobashsqlawsgitdatabasebackend

Works with

terminalclimcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add lev-os/agents --skill cao-cli --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Cao Cli?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Cao Cli
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/lev-os-cao-cli/badge)](https://www.skillsdirectory.com/skills/lev-os-cao-cli)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
skill.md
# Amazon Q Developer CLI (CAO) Skill

## Overview

Amazon Q Developer CLI (formerly CAO - Claude Agent Orchestrator) is an AI assistant CLI from AWS Labs. Note: Repository is no longer actively maintained - moved to closed-source Kiro CLI.

## When to Use

- Running Q Developer CLI as an agent backend
- Understanding agent configuration patterns
- MCP (Model Context Protocol) integration
- Hook-based tool execution

## CLI Command Reference

### Root Commands

```bash
q                              # Start interactive chat
q chat                         # AI assistant in terminal
q agent                        # Manage agents
q login                        # Log in to Amazon Q
q logout                       # Log out
q whoami                       # Current session info
q profile                      # Show profile
q settings                     # Customize appearance
q diagnostic                   # Run diagnostic tests
q mcp                          # Model Context Protocol
q version                      # Version info
```

### Chat Options

```bash
q                              # Interactive mode (default)
q --resume                     # Resume previous session
q --agent <name>               # Select agent profile
q --model <model>              # Override model selection
q --trust-all-tools            # Auto-approve all tools
q --trust-tools <tools>        # Selectively approve tools
q --no-interactive             # Non-interactive mode
q --wrap <mode>                # Text wrapping (never/auto/always)
q "message"                    # Direct message input
```

### Agent Management

```bash
q agent --list                 # List all agents
q agent --create               # Create new agent
```

## Agent Configuration Schema

```json
{
  "$schema": "https://raw.githubusercontent.com/aws/amazon-q-developer-cli/refs/heads/main/schemas/agent-v1.json",
  "name": "agent_name",
  "description": "Agent description",
  "prompt": "System prompt",
  "mcpServers": {
    "server_name": { "command": "cmd", "args": [] }
  },
  "tools": ["*", "@git", "@fetch"],
  "toolAliases": { "@gits/some_tool": "aliased_name" },
  "allowedTools": ["fs_read", "use_aws"],
  "toolsSettings": {
    "fs_write": { "allowedPaths": ["~/**"] }
  },
  "resources": ["file://~/path/to/file.md"],
  "hooks": {
    "agentSpawn": [{ "command": "setup.sh" }],
    "preToolUse": [{ "matcher": "fs_write", "command": "validate.sh" }],
    "postToolUse": [{ "command": "process.sh" }]
  },
  "model": "claude-sonnet-4"
}
```

## Hook System

### Hook Triggers

| Trigger | When |
|---------|------|
| `agentSpawn` | During agent spawn |
| `userPromptSubmit` | Before sending user prompt |
| `preToolUse` | Before tool execution |
| `postToolUse` | After tool execution |

### Hook Configuration

```json
{
  "trigger": "preToolUse",
  "command": "validate.sh",
  "matcher": "fs_write",
  "timeout_ms": 5000,
  "max_output_size": 10240,
  "cache_ttl_seconds": 60
}
```

## MCP Integration

### Tool Reference Patterns

- `"@builtin"` - All built-in tools
- `"@mcp_server_name/tool_name"` - Specific MCP tool
- `"@mcp_server_name"` - All tools from server (wildcard)
- `"*"` - All available tools

### MCP Server Config

```json
{
  "mcpServers": {
    "git": {
      "command": "uvx",
      "args": ["mcp-server-git", "--repository", "."]
    },
    "fetch": {
      "command": "npx",
      "args": ["-y", "@anthropic/mcp-fetch"]
    }
  }
}
```

## Built-in Tools

| Tool | Purpose |
|------|---------|
| `fs_read` | File system read access |
| `fs_write` | File system write access |
| `execute` | Command execution |
| `gh_issue` | GitHub integration |
| `delegate` | Subagent spawning |
| `todo` | Task tracking |
| `use_aws` | AWS CLI integration |
| `knowledge` | Knowledge base queries |
| `thinking` | Thought process display |

## Session Management

### Persistence

- File-based `ConversationState`
- SQLite database for settings
- Checkpoint system for resume
- Auto-compaction for context window

### Resume Session

```bash
q --resume                     # Resume last session
```

## Permission System

| Result | Behavior |
|--------|----------|
| `Allow` | Tool runs without confirmation |
| `Ask` | Requires user approval |
| `Deny` | Blocked with reasons |

## Architecture Patterns

### Agent Lifecycle

1. `Agent::new()` creates agent instance
2. `spawn()` creates background tokio task
3. `TaskExecutor` runs tools in parallel
4. `ConversationState` tracks history
5. `CheckpointManager` persists state

### State Machine

- `Idle` - Waiting for input
- `ExecutingRequest` - Processing request
- `WaitingForApproval` - Tool approval needed
- `ExecutingTools` - Running tools
- `ExecutingHooks` - Running hooks
- `Errored` - Error state

## Key Differences from Other CLIs

- No tmux session isolation (single-process)
- In-memory state with file persistence
- Native MCP integration
- Hook-based extensibility
- Subagent spawning via delegate tool

## Source

Repository: https://github.com/aws/amazon-q-developer-cli
Note: Moved to closed-source Kiro CLI (https://kiro.dev/cli/)

Attribution

lev-oslev-os
View sourceMore from lev-os →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Caveman

Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.

1023331 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3331 votes

catchup

Recovers prior coding-agent session context by running `catchup <agent> --since-compact`, which extracts a clean summary of a previous Codex, Claude Code, Antigravity, OpenCode, or Pi Agent session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", or asks to recover/summarize a previous session before continuing. Do NOT use for the current conversation, git history, or any non-agent log.

611 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →