Files
cleveragents-core/docs/showcase/examples.json
T
HAL9000 0f0efe02e3
CI / helm (pull_request) Successful in 34s
CI / build (pull_request) Successful in 50s
CI / lint (pull_request) Successful in 57s
CI / push-validation (pull_request) Successful in 28s
CI / quality (pull_request) Successful in 1m23s
CI / typecheck (pull_request) Successful in 1m28s
CI / benchmark-publish (pull_request) Has been skipped
CI / security (pull_request) Successful in 1m37s
CI / e2e_tests (pull_request) Successful in 3m46s
CI / integration_tests (pull_request) Successful in 4m32s
CI / unit_tests (pull_request) Successful in 5m50s
CI / docker (pull_request) Successful in 1m22s
CI / coverage (pull_request) Successful in 13m4s
CI / status-check (push) Blocked by required conditions
CI / benchmark-publish (push) Failing after 39s
CI / push-validation (push) Successful in 22s
CI / helm (push) Successful in 35s
CI / status-check (pull_request) Successful in 5s
CI / build (push) Successful in 50s
CI / lint (push) Successful in 1m17s
CI / quality (push) Successful in 1m34s
CI / typecheck (push) Successful in 1m36s
CI / security (push) Successful in 1m38s
CI / coverage (push) Has started running
CI / e2e_tests (push) Successful in 3m51s
CI / integration_tests (push) Successful in 4m19s
CI / unit_tests (push) Successful in 5m20s
CI / docker (push) Successful in 2m4s
docs: update examples.json index with actor management workflow entry
ISSUES CLOSED: #7539
2026-04-26 16:52:36 +00:00

97 lines
3.6 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 -f json actor list",
"agents -f yaml actor list",
"agents -f plain actor list"
],
"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 add local/my-haiku-actor --config my-haiku-actor.yaml --format json",
"agents actor set-default local/my-haiku-actor",
"agents actor set-default anthropic/claude-sonnet-4-20250514",
"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"
}
],
"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"
}