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
+3 -3
View File
@@ -8,7 +8,7 @@ All features are documented as Gherkin scenarios that serve as both tests and do
```gherkin
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!"
```
@@ -17,7 +17,7 @@ Scenario: Default greeting
```gherkin
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!"
```
@@ -26,7 +26,7 @@ Scenario: Custom name greeting
```gherkin
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
```