Renamed from Boilerplate to CleverClaude

This commit is contained in:
Your Name
2025-08-10 00:20:59 +00:00
parent bae6665d94
commit 20d6c2549d
24 changed files with 219 additions and 194 deletions
+5 -5
View File
@@ -1,5 +1,5 @@
Feature: Command-line greeting interface
As a user of the boilerplate CLI
As a user of the CleverClaude CLI
I want to be greeted properly
So that I can verify the application works
@@ -7,22 +7,22 @@ Feature: Command-line greeting interface
Given the CLI is available
Scenario: Default greeting
When I run "python -m boilerplate"
When I run "python -m cleverclaude"
Then the exit code should be 0
And the output should contain "Hello, World!"
Scenario: Custom name greeting
When I run "python -m boilerplate --name Alice"
When I run "python -m cleverclaude --name Alice"
Then the exit code should be 0
And the output should contain "Hello, Alice!"
Scenario: Multiple greetings
When I run "python -m boilerplate --count 3"
When I run "python -m cleverclaude --count 3"
Then the exit code should be 0
And the output should contain "Hello, World!" 3 times
Scenario Outline: Greeting various names
When I run "python -m boilerplate --name <name>"
When I run "python -m cleverclaude --name <name>"
Then the exit code should be 0
And the output should contain "Hello, <name>!"