🎉 Initial commit: project scaffold, agent modes, and gnarly_csv example

- Add .roomodes with four custom Roo agents:
    • excalidraw-to-python  – diagram → typed Python skeleton
    • python-coder          – skeleton → production implementation (design patterns)
    • tester                – pytest suite writer & runner
    • orchestrator          – coordinates the full excalidraw→code→test→execute pipeline
- Add src/csv_grok.py and tests/test_csv_grok.py (CSV diff utility)
- Add examples/gnarly_csv/ with gnarly_csv_delta.py and sample data (rev_a/rev_b)
- Add drawings/ with design.excalidraw and gnarly_csv_files.excalidraw
- Add docs/excalidraw-to-python-agent.md
- Add requirements.txt and .gitignore
This commit is contained in:
2026-04-11 15:54:42 -07:00
commit 18a3b464f2
14 changed files with 2367 additions and 0 deletions

6
data/file2.csv Normal file
View File

@ -0,0 +1,6 @@
name,age,score,salary
Frank,40,70.1,95000
Grace,22,88.9,58000
Hank,45,65.4,110000
Iris,29,79.8,68000
Jack,38,82.3,88000
1 name age score salary
2 Frank 40 70.1 95000
3 Grace 22 88.9 58000
4 Hank 45 65.4 110000
5 Iris 29 79.8 68000
6 Jack 38 82.3 88000