chore: seed sandbox project
This commit is contained in:
parent
ba015bf790
commit
380ac7f40f
14
CLAUDE.md
Normal file
14
CLAUDE.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# typosaurus-sandbox
|
||||||
|
|
||||||
|
A minimal Python calculator used to verify the Typosaurus agent system.
|
||||||
|
|
||||||
|
## Conventions
|
||||||
|
- Every source file starts with the `# retoor <retoor@molodetz.nl>` header.
|
||||||
|
- Full type annotations on every function signature.
|
||||||
|
- No comments or docstrings in source files.
|
||||||
|
|
||||||
|
## Verification
|
||||||
|
|
||||||
|
```
|
||||||
|
make verify
|
||||||
|
```
|
||||||
2
Makefile
Normal file
2
Makefile
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
verify:
|
||||||
|
@python3 -m compileall -q src && echo "verification passed"
|
||||||
8
src/calculator.py
Normal file
8
src/calculator.py
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# retoor <retoor@molodetz.nl>
|
||||||
|
|
||||||
|
def add(left: int, right: int) -> int:
|
||||||
|
return left + right
|
||||||
|
|
||||||
|
|
||||||
|
def subtract(left: int, right: int) -> int:
|
||||||
|
return left - right
|
||||||
Loading…
Reference in New Issue
Block a user