docs(showcase): add audit log and security commands example to registry
CI / lint (push) Successful in 1m14s
CI / quality (push) Successful in 1m13s
CI / typecheck (push) Successful in 1m24s
CI / security (push) Successful in 1m41s
CI / push-validation (push) Successful in 30s
CI / helm (push) Successful in 39s
CI / benchmark-publish (push) Failing after 44s
CI / build (push) Successful in 50s
CI / e2e_tests (push) Successful in 3m48s
CI / integration_tests (push) Successful in 7m20s
CI / unit_tests (push) Successful in 9m1s
CI / docker (push) Successful in 1m47s
CI / coverage (push) Successful in 12m50s
CI / status-check (push) Successful in 3s
CI / benchmark-publish (pull_request) Has been skipped
CI / coverage (pull_request) Successful in 10m46s
CI / typecheck (pull_request) Successful in 1m46s
CI / unit_tests (pull_request) Successful in 5m23s
CI / docker (pull_request) Successful in 1m30s
CI / push-validation (pull_request) Successful in 29s
CI / lint (pull_request) Successful in 1m15s
CI / build (pull_request) Successful in 1m4s
CI / helm (pull_request) Successful in 30s
CI / quality (pull_request) Successful in 1m36s
CI / security (pull_request) Successful in 1m56s
CI / integration_tests (pull_request) Successful in 3m53s
CI / e2e_tests (pull_request) Successful in 4m10s
CI / status-check (pull_request) Successful in 3s
CI / lint (push) Successful in 1m14s
CI / quality (push) Successful in 1m13s
CI / typecheck (push) Successful in 1m24s
CI / security (push) Successful in 1m41s
CI / push-validation (push) Successful in 30s
CI / helm (push) Successful in 39s
CI / benchmark-publish (push) Failing after 44s
CI / build (push) Successful in 50s
CI / e2e_tests (push) Successful in 3m48s
CI / integration_tests (push) Successful in 7m20s
CI / unit_tests (push) Successful in 9m1s
CI / docker (push) Successful in 1m47s
CI / coverage (push) Successful in 12m50s
CI / status-check (push) Successful in 3s
CI / benchmark-publish (pull_request) Has been skipped
CI / coverage (pull_request) Successful in 10m46s
CI / typecheck (pull_request) Successful in 1m46s
CI / unit_tests (pull_request) Successful in 5m23s
CI / docker (pull_request) Successful in 1m30s
CI / push-validation (pull_request) Successful in 29s
CI / lint (pull_request) Successful in 1m15s
CI / build (pull_request) Successful in 1m4s
CI / helm (pull_request) Successful in 30s
CI / quality (pull_request) Successful in 1m36s
CI / security (pull_request) Successful in 1m56s
CI / integration_tests (pull_request) Successful in 3m53s
CI / e2e_tests (pull_request) Successful in 4m10s
CI / status-check (pull_request) Successful in 3s
Register the existing audit-log-and-security.md example in the showcase registry (examples.json) so it appears alongside other CLI tool examples. Includes 17 audit commands covering list, show, count, and prune operations with all filter options. Closes #10824
This commit was merged in pull request #10875.
This commit is contained in:
@@ -68,29 +68,85 @@
|
||||
"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 management and security tracking",
|
||||
"commands": [
|
||||
"agents audit list",
|
||||
"agents audit list --plan plan-abc123",
|
||||
"agents audit list --type plan_applied",
|
||||
"agents audit list --project data-pipeline",
|
||||
"agents audit list --limit 3",
|
||||
"agents audit list --since 2026-03-31T14:43:41",
|
||||
"agents audit show 1",
|
||||
"agents audit show 2",
|
||||
"agents audit show 99999",
|
||||
"agents audit count",
|
||||
"agents audit prune --days 30 --yes",
|
||||
"agents audit prune --days 30",
|
||||
"agents audit prune --days 0",
|
||||
"agents audit --help",
|
||||
"agents audit list --help",
|
||||
"agents audit show --help",
|
||||
"agents audit prune --help"
|
||||
],
|
||||
"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"]
|
||||
"keywords": [
|
||||
"CLI",
|
||||
"command-line",
|
||||
"terminal",
|
||||
"console",
|
||||
"tool"
|
||||
]
|
||||
},
|
||||
"api-clients": {
|
||||
"name": "API Clients",
|
||||
"name": "API Clients",
|
||||
"description": "Command-line clients for web APIs",
|
||||
"keywords": ["API", "REST", "client", "HTTP", "web", "request"]
|
||||
"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"]
|
||||
"keywords": [
|
||||
"data",
|
||||
"CSV",
|
||||
"JSON",
|
||||
"parser",
|
||||
"analyzer",
|
||||
"transform"
|
||||
]
|
||||
},
|
||||
"testing-tools": {
|
||||
"name": "Testing Tools",
|
||||
"description": "Testing utilities and automation",
|
||||
"keywords": ["test", "pytest", "behave", "unittest", "automation", "QA"]
|
||||
"keywords": [
|
||||
"test",
|
||||
"pytest",
|
||||
"behave",
|
||||
"unittest",
|
||||
"automation",
|
||||
"QA"
|
||||
]
|
||||
}
|
||||
},
|
||||
"last_updated": "2026-04-07"
|
||||
"last_updated": "2026-04-27"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user