forked from cleveragents/cleveragents-core
20 lines
664 B
Gherkin
20 lines
664 B
Gherkin
Feature: Interactive Commands
|
|
As a user of CleverAgents
|
|
I want to use commands during interactive sessions
|
|
So that I can control the session behavior
|
|
|
|
Scenario: Parse and execute help command
|
|
Given an interactive session is active
|
|
When I enter the "/help" command
|
|
Then I should see the help information
|
|
|
|
Scenario: Parse and execute history command
|
|
Given an interactive session with some history
|
|
When I enter the "/history" command
|
|
Then I should see the conversation history
|
|
|
|
Scenario: Parse and execute exit command
|
|
Given an interactive session is active
|
|
When I enter the "/exit" command
|
|
Then the session should end
|