Add hello module with src/hello.py and tests
Add a hello module to freematters/testbed. Create src/hello.py with a function hello(name: str) -> str that returns 'Hello, !' and add tests/test_hello.py with basic tests.
Status
Plan
Summary
Design
A single-module architecture: src/hello.py provides a hello(name: str) -> str function that returns a greeting string. No external dependencies, no error handling — the function passes through all inputs using Python f-string formatting. Tested by tests/test_hello.py with basic unit tests.
E2E Testing
E2E testing was not included in this spec — the feature is too simple to warrant agent-level testing. Unit tests provide sufficient coverage.
Add hello module with src/hello.py and tests
Add a hello module to freematters/testbed. Create src/hello.py with a function hello(name: str) -> str that returns 'Hello, !' and add tests/test_hello.py with basic tests.
Status
gathering requirements
research
design
plan
spec-ready
Plan
Summary
Design
A single-module architecture:
src/hello.pyprovides ahello(name: str) -> strfunction that returns a greeting string. No external dependencies, no error handling — the function passes through all inputs using Python f-string formatting. Tested bytests/test_hello.pywith basic unit tests.E2E Testing
E2E testing was not included in this spec — the feature is too simple to warrant agent-level testing. Unit tests provide sufficient coverage.