Files
cleveragents-core/features/cli.feature
T

33 lines
1.1 KiB
Gherkin

Feature: CleverAgents CLI metadata
Scenario: Display help
When I run the CleverAgents CLI with "--help"
Then the output should contain "CleverAgents"
Scenario: Display version
When I run the CleverAgents CLI with "--version"
Then the output should contain "1.0.0"
Scenario: Display diagnostics
When I run the CleverAgents CLI with "diagnostics"
Then the output should contain "CleverAgents Diagnostics"
And the output should contain "Version:"
And the output should contain "Python:"
And the output should contain "Platform:"
Scenario: Display info
When I run the CleverAgents CLI with "info"
Then the output should contain "CleverAgents Information"
And the output should contain "Version: 1.0.0"
Scenario Outline: Display help for command groups
When I run the CleverAgents CLI with "<command> --help"
Then the exit code should be 0
And the output should contain "<expected>"
Examples:
| command | expected |
| project | Project management |
| context | Context management |
| plan | Plan operations |