d98666651f
CI / lint (pull_request) Successful in 15s
CI / typecheck (pull_request) Successful in 27s
CI / security (pull_request) Successful in 22s
CI / quality (pull_request) Successful in 15s
CI / integration_tests (pull_request) Successful in 4m24s
CI / build (pull_request) Successful in 16s
CI / unit_tests (pull_request) Successful in 9m27s
CI / lint (push) Waiting to run
CI / typecheck (push) Waiting to run
CI / security (push) Waiting to run
CI / quality (push) Waiting to run
CI / unit_tests (push) Waiting to run
CI / integration_tests (push) Waiting to run
CI / coverage (push) Blocked by required conditions
CI / build (push) Waiting to run
CI / docker (push) Blocked by required conditions
CI / coverage (pull_request) Successful in 6m55s
CI / docker (pull_request) Successful in 39s
- Enforce config-only 'action create --config <file>' (remove legacy inline flags: --name, --strategy-actor, --execution-actor, --definition-of-done, --arg) - Load config via ActionConfigSchema.from_yaml_file() then Action.from_config() with clear validation error surfacing - Remove 'action available' subcommand (no draft state; actions are available by default) - Add REGEX positional arg to 'action list' for name filtering - Add Short Name and Definition of Done summary to all CLI outputs - Add 'action list --namespace/-n' and '--state/-s' filters - Update existing tests to match new config-only create flow - Add features/action_cli_spec_alignment.feature (19 scenarios) - Add robot/action_cli_spec.robot smoke tests - Add benchmarks/action_cli_bench.py ASV benchmarks - Add docs/reference/action_cli.md
63 lines
1.4 KiB
YAML
63 lines
1.4 KiB
YAML
# yaml-language-server: $schema=https://json.schemastore.org/mkdocs-1.6.json
|
|
# yaml-language-server: customTags:
|
|
# - !ENV scalar
|
|
# - !ENV sequence
|
|
site_name: CleverAgents Core Docs
|
|
site_description: Documentation for the CleverAgents Python migration.
|
|
site_author: CleverThis Engineering
|
|
site_url: https://docs.cleverthis.com/cleveragents
|
|
site_dir: build/site
|
|
|
|
nav:
|
|
- Specification: specification.md
|
|
- Work Remaining: work-remaining.md
|
|
- FAQ: faq.md
|
|
- Reference:
|
|
- Plan Model: reference/plan_model.md
|
|
- Action CLI: reference/action_cli.md
|
|
- Development:
|
|
- CI/CD Pipeline: development/ci-cd.md
|
|
- Quality Automation: development/quality-automation.md
|
|
|
|
theme:
|
|
name: material
|
|
features:
|
|
- toc.integrate
|
|
- toc.follow
|
|
palette:
|
|
- scheme: default
|
|
primary: blue
|
|
accent: cyan
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
- scheme: slate
|
|
primary: blue
|
|
accent: cyan
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
|
|
extra_css:
|
|
- stylesheets/extra.css
|
|
|
|
extra_javascript:
|
|
- javascripts/toc-collapse.js
|
|
- javascripts/diagram-lightbox.js
|
|
|
|
plugins:
|
|
- search
|
|
- kroki:
|
|
#server_url: https://kroki.qoto.org
|
|
server_url: https://kroki.io
|
|
enable_mermaid: true
|
|
fence_prefix: kroki-
|
|
#http_method: POST
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- codehilite
|
|
- toc:
|
|
permalink: true
|
|
toc_depth: 1-6
|