228 lines
7.7 KiB
JSON
228 lines
7.7 KiB
JSON
{
|
|
"examples": [
|
|
{
|
|
"title": "Mastering Output Format Flags in CleverAgents CLI",
|
|
"category": "cli-tools",
|
|
"path": "cli-tools/output-format-flags.md",
|
|
"feature": "Output formats JSON YAML plain",
|
|
"commands": [
|
|
"agents --format json version",
|
|
"agents --format yaml version",
|
|
"agents --format plain version",
|
|
"agents -f json version",
|
|
"agents --format json info",
|
|
"agents --format json diagnostics",
|
|
"agents actor list --format json",
|
|
"agents actor list --format yaml",
|
|
"agents actor list --format plain"
|
|
],
|
|
"complexity": "intermediate",
|
|
"educational_value": "high",
|
|
"generated_by": "uat-tester",
|
|
"generated_at": "2026-04-07"
|
|
},
|
|
{
|
|
"title": "Managing AI Actors with the CleverAgents CLI",
|
|
"category": "cli-tools",
|
|
"path": "cli-tools/actor-management-workflow.md",
|
|
"feature": "Actor management workflows",
|
|
"commands": [
|
|
"agents actor --help",
|
|
"agents actor list",
|
|
"agents actor list --format json",
|
|
"agents actor list --format yaml",
|
|
"agents actor show openai/gpt-4o",
|
|
"agents actor show anthropic/claude-sonnet-4-20250514",
|
|
"agents actor show openai/gpt-4o --format json",
|
|
"agents actor add local/my-haiku-actor --config my-haiku-actor.yaml",
|
|
"agents actor set-default local/my-haiku-actor",
|
|
"agents actor update local/my-haiku-actor --option temperature=0.7",
|
|
"agents actor set-default openai/gpt-4o",
|
|
"agents actor remove local/my-haiku-actor"
|
|
],
|
|
"complexity": "intermediate",
|
|
"educational_value": "high",
|
|
"generated_by": "uat-tester",
|
|
"generated_at": "2026-04-07"
|
|
},
|
|
{
|
|
"title": "Server Connection and A2A Protocol Integration",
|
|
"category": "cli-tools",
|
|
"path": "cli-tools/server-and-a2a-integration.md",
|
|
"feature": "Server and A2A integration",
|
|
"commands": [
|
|
"agents server --help",
|
|
"agents server status",
|
|
"agents server status --format json",
|
|
"agents server connect https://agents.example.com",
|
|
"agents server connect https://agents.example.com --format json",
|
|
"agents server connect https://agents.example.com --namespace my-team --format json",
|
|
"agents server connect http://localhost:8080 --no-tls-verify --format json",
|
|
"agents server status --format yaml",
|
|
"agents server status --format plain",
|
|
"agents server serve --help"
|
|
],
|
|
"complexity": "advanced",
|
|
"educational_value": "high",
|
|
"generated_by": "uat-tester",
|
|
"generated_at": "2026-04-07"
|
|
},
|
|
{
|
|
"title": "Database Migration Management with agents db",
|
|
"category": "cli-tools",
|
|
"path": "cli-tools/database-migration-management.md",
|
|
"feature": "Database migration management",
|
|
"commands": [
|
|
"agents db --help",
|
|
"agents db current",
|
|
"agents db history",
|
|
"agents db history --format json",
|
|
"agents db upgrade",
|
|
"agents db current --format json",
|
|
"agents db downgrade -- -1",
|
|
"agents db upgrade head"
|
|
],
|
|
"complexity": "intermediate",
|
|
"educational_value": "high",
|
|
"generated_by": "uat-tester",
|
|
"generated_at": "2026-04-07"
|
|
},
|
|
{
|
|
"title": "Managing Conversation Sessions with the CleverAgents CLI",
|
|
"category": "cli-tools",
|
|
"path": "cli-tools/session-management-workflows.md",
|
|
"feature": "Session management workflows",
|
|
"commands": [
|
|
"agents session --help",
|
|
"agents session create",
|
|
"agents session create --actor openai/gpt-4o",
|
|
"agents session create --actor openai/gpt-4o --format json",
|
|
"agents session list",
|
|
"agents session list --format json",
|
|
"agents session tell --session <ID> \"prompt\"",
|
|
"agents session show <ID>",
|
|
"agents session show <ID> --format json",
|
|
"agents session export --output file.json <ID>",
|
|
"agents session export --format md --output file.md <ID>",
|
|
"agents session import --input file.json",
|
|
"agents session delete --yes <ID>"
|
|
],
|
|
"complexity": "intermediate",
|
|
"educational_value": "high",
|
|
"generated_by": "uat-tester",
|
|
"generated_at": "2026-04-07"
|
|
},
|
|
{
|
|
"title": "Audit Log & Security: Tracking Every Security-Relevant Operation",
|
|
"category": "cli-tools",
|
|
"path": "cli-tools/audit-log-and-security.md",
|
|
"feature": "Audit log and security commands",
|
|
"commands": [
|
|
"agents audit list",
|
|
"agents audit list --plan plan-abc123",
|
|
"agents audit list --type plan_applied",
|
|
"agents audit list --project my-webapp",
|
|
"agents audit list --limit 3",
|
|
"agents audit list --since 2026-03-31T14:43:41",
|
|
"agents audit show 1",
|
|
"agents audit count",
|
|
"agents audit prune --days 30 --yes",
|
|
"agents audit prune --days 30",
|
|
"agents audit prune --days 0"
|
|
],
|
|
"complexity": "intermediate",
|
|
"educational_value": "high",
|
|
"generated_by": "uat-tester",
|
|
"generated_at": "2026-04-07"
|
|
},
|
|
{
|
|
"title": "REPL and Actor Run: Interactive AI Sessions from the Terminal",
|
|
"category": "cli-tools",
|
|
"path": "cli-tools/repl-and-actor-run.md",
|
|
"feature": "REPL and interactive session",
|
|
"commands": [
|
|
"agents repl",
|
|
"agents repl --no-history",
|
|
"agents actor run openai/gpt-4o \"Say hello\"",
|
|
"agents actor run local/demo-assistant \"prompt\" --config my-assistant.yaml",
|
|
"agents actor run local/demo-assistant \"prompt\" --output answer.txt",
|
|
"agents actor run local/demo-assistant \"prompt\" --temperature 0.9",
|
|
"agents actor run local/demo-assistant \"prompt\" --context my-session --context-dir /tmp/chats"
|
|
],
|
|
"complexity": "intermediate",
|
|
"educational_value": "high",
|
|
"generated_by": "uat-tester",
|
|
"generated_at": "2026-04-07"
|
|
},
|
|
{
|
|
"title": "Repository Indexing Workflows with CleverAgents",
|
|
"category": "cli-tools",
|
|
"path": "cli-tools/repo-indexing-workflows.md",
|
|
"feature": "Repo indexing workflows",
|
|
"commands": [
|
|
"agents repo --help",
|
|
"agents repo index local/src-only",
|
|
"agents repo index local/src-only --full",
|
|
"agents repo index local/my-repo --format json",
|
|
"agents repo index local/my-repo --timeout-seconds 60",
|
|
"agents repo status local/src-only",
|
|
"agents repo status local/my-repo --format json"
|
|
],
|
|
"complexity": "intermediate",
|
|
"educational_value": "high",
|
|
"generated_by": "uat-tester",
|
|
"generated_at": "2026-04-07"
|
|
}
|
|
],
|
|
"categories": {
|
|
"cli-tools": {
|
|
"name": "CLI Tools",
|
|
"description": "Text-based command-line applications",
|
|
"keywords": [
|
|
"CLI",
|
|
"command-line",
|
|
"terminal",
|
|
"console",
|
|
"tool"
|
|
]
|
|
},
|
|
"api-clients": {
|
|
"name": "API Clients",
|
|
"description": "Command-line clients for web APIs",
|
|
"keywords": [
|
|
"API",
|
|
"REST",
|
|
"client",
|
|
"HTTP",
|
|
"web",
|
|
"request"
|
|
]
|
|
},
|
|
"data-processing": {
|
|
"name": "Data Processing",
|
|
"description": "Tools for data analysis and transformation",
|
|
"keywords": [
|
|
"data",
|
|
"CSV",
|
|
"JSON",
|
|
"parser",
|
|
"analyzer",
|
|
"transform"
|
|
]
|
|
},
|
|
"testing-tools": {
|
|
"name": "Testing Tools",
|
|
"description": "Testing utilities and automation",
|
|
"keywords": [
|
|
"test",
|
|
"pytest",
|
|
"behave",
|
|
"unittest",
|
|
"automation",
|
|
"QA"
|
|
]
|
|
}
|
|
},
|
|
"last_updated": "2026-04-07"
|
|
}
|