chore: seed sandbox project

This commit is contained in:
typosaurus 2026-07-25 16:58:41 +02:00
parent ba015bf790
commit 380ac7f40f
3 changed files with 24 additions and 0 deletions

14
CLAUDE.md Normal file
View 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
View File

@ -0,0 +1,2 @@
verify:
@python3 -m compileall -q src && echo "verification passed"

8
src/calculator.py Normal file
View 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