god-code 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. god_code-0.1.0.dist-info/METADATA +18 -0
  2. god_code-0.1.0.dist-info/RECORD +46 -0
  3. god_code-0.1.0.dist-info/WHEEL +4 -0
  4. god_code-0.1.0.dist-info/entry_points.txt +2 -0
  5. god_code-0.1.0.dist-info/licenses/LICENSE +674 -0
  6. godot_agent/__init__.py +0 -0
  7. godot_agent/cli.py +352 -0
  8. godot_agent/godot/__init__.py +0 -0
  9. godot_agent/godot/collision_planner.py +166 -0
  10. godot_agent/godot/consistency_checker.py +168 -0
  11. godot_agent/godot/dependency_graph.py +153 -0
  12. godot_agent/godot/gdscript_linter.py +189 -0
  13. godot_agent/godot/pattern_advisor.py +161 -0
  14. godot_agent/godot/project.py +58 -0
  15. godot_agent/godot/resource_validator.py +27 -0
  16. godot_agent/godot/scene_parser.py +114 -0
  17. godot_agent/godot/scene_writer.py +77 -0
  18. godot_agent/godot/tscn_validator.py +185 -0
  19. godot_agent/llm/__init__.py +0 -0
  20. godot_agent/llm/client.py +148 -0
  21. godot_agent/llm/streaming.py +26 -0
  22. godot_agent/llm/vision.py +11 -0
  23. godot_agent/prompts/__init__.py +0 -0
  24. godot_agent/prompts/build_discipline.py +57 -0
  25. godot_agent/prompts/godot_playbook.py +267 -0
  26. godot_agent/prompts/knowledge_selector.py +112 -0
  27. godot_agent/prompts/system.py +89 -0
  28. godot_agent/py.typed +0 -0
  29. godot_agent/runtime/__init__.py +0 -0
  30. godot_agent/runtime/auth.py +22 -0
  31. godot_agent/runtime/config.py +53 -0
  32. godot_agent/runtime/context_manager.py +135 -0
  33. godot_agent/runtime/engine.py +104 -0
  34. godot_agent/runtime/error_loop.py +175 -0
  35. godot_agent/runtime/oauth.py +128 -0
  36. godot_agent/runtime/session.py +37 -0
  37. godot_agent/tools/__init__.py +0 -0
  38. godot_agent/tools/base.py +30 -0
  39. godot_agent/tools/file_ops.py +112 -0
  40. godot_agent/tools/git.py +49 -0
  41. godot_agent/tools/godot_cli.py +152 -0
  42. godot_agent/tools/list_dir.py +45 -0
  43. godot_agent/tools/registry.py +29 -0
  44. godot_agent/tools/screenshot.py +72 -0
  45. godot_agent/tools/search.py +72 -0
  46. godot_agent/tools/shell.py +79 -0
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: god-code
3
+ Version: 0.1.0
4
+ Summary: AI coding agent specialized for Godot game development
5
+ Project-URL: Homepage, https://github.com/chuisiufai/god-code
6
+ Project-URL: Repository, https://github.com/chuisiufai/god-code
7
+ Author: chuisiufai
8
+ License: GPL-3.0-or-later
9
+ License-File: LICENSE
10
+ Requires-Python: >=3.12
11
+ Requires-Dist: click>=8.1
12
+ Requires-Dist: httpx>=0.27
13
+ Requires-Dist: pillow>=10.3
14
+ Requires-Dist: pydantic>=2.7
15
+ Provides-Extra: dev
16
+ Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
17
+ Requires-Dist: pytest-mock>=3.14; extra == 'dev'
18
+ Requires-Dist: pytest>=8.2; extra == 'dev'
@@ -0,0 +1,46 @@
1
+ godot_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ godot_agent/cli.py,sha256=OjJwe_QtrSHSD9kyLVHsSve7VlvckQ1fP_Yq4ebIVfM,12295
3
+ godot_agent/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ godot_agent/godot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ godot_agent/godot/collision_planner.py,sha256=TwJaVuve_P28Dpbl2d7ECXFYaNd6huYBasjjzCi-hFY,5507
6
+ godot_agent/godot/consistency_checker.py,sha256=74VcBpo3cC98PaqdRU-ExqW_uKrQ5snJHMdiEVpB5FQ,6688
7
+ godot_agent/godot/dependency_graph.py,sha256=NmdsadFLyJKCW6vE-tUQYbrtzI_Rj2_QoZzoPP3ynew,5391
8
+ godot_agent/godot/gdscript_linter.py,sha256=mhUUs14VZMWQ1IagWb8R4Y0q21HNd1Alc5eO1T4iqmA,7740
9
+ godot_agent/godot/pattern_advisor.py,sha256=BNF97-pY1BWYaNqu6RkoK3bb4gcJjcwbuPMS7Nph0rc,6091
10
+ godot_agent/godot/project.py,sha256=7hZ7KgUfDETJJKmSgHdqVBCIGDcMEE85k8cXda-XGN0,2018
11
+ godot_agent/godot/resource_validator.py,sha256=DrTOL5jy6YMRVGhNtrViGTpv5e5kl0m3L2mdMgv7BLQ,945
12
+ godot_agent/godot/scene_parser.py,sha256=ydFLfl3X96MRJkQY2ipt_gyQvAvICyraDEWwrpASNk4,3450
13
+ godot_agent/godot/scene_writer.py,sha256=4V8rmqssKiEJ7VfcTYWTFJpKru_NKLc_0NgMGdO61wY,2554
14
+ godot_agent/godot/tscn_validator.py,sha256=MW3t-fls3NSDdVHsEmgAEsUITueL7JDBenab-MkgsxI,7127
15
+ godot_agent/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ godot_agent/llm/client.py,sha256=4Thedt1zyXIAyDbh9EQzdFzb7dT4uUL398ghS-TaMuY,5109
17
+ godot_agent/llm/streaming.py,sha256=rNoKBb_uwCcxmC3oTWDATwui6pgJl7Bx02x5njECRvA,798
18
+ godot_agent/llm/vision.py,sha256=mORMqknGq_JHPAHK354soE2TyCjNqjnXnNMBjA6WvmU,291
19
+ godot_agent/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ godot_agent/prompts/build_discipline.py,sha256=yw69DxoJ-o7KsZEEzLjBf3Otzaf8SVh2EUXRlZkslpI,1841
21
+ godot_agent/prompts/godot_playbook.py,sha256=uJBGOwCMF46HxXMOhkbDYK6fqKpxgH3bLeUIyTKXUvc,11496
22
+ godot_agent/prompts/knowledge_selector.py,sha256=2yikVZFQxS-hg4ZSq5g9SRh-UTu4cRbyayQtMWATtPU,4056
23
+ godot_agent/prompts/system.py,sha256=TrJz-x6eSqrDqLebyRTdUtOMDTu8N3Lu4RB-YvaLBHc,3752
24
+ godot_agent/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ godot_agent/runtime/auth.py,sha256=ypL3AJfjXb4OU2k_pEUxKzKjG7mfk3lRo06_ss9HkXI,547
26
+ godot_agent/runtime/config.py,sha256=qCLvtx-vHO2BzjB9EUVIeu3aHtSBruQqmea4oKRcKXw,1620
27
+ godot_agent/runtime/context_manager.py,sha256=r9OIw1hreU42qc0iTErk6M8yjDzV0MKvttQmCJYRXpI,3897
28
+ godot_agent/runtime/engine.py,sha256=hNWd1TtjS7CSomVAkICuRSzOdG6v72ESv0bWSKpiNCM,4167
29
+ godot_agent/runtime/error_loop.py,sha256=4Za_E_RpvlT-QaSvklQebo8dr5eugLtS_c_9fUqlts4,6132
30
+ godot_agent/runtime/oauth.py,sha256=uoNyA-WmR9EFFPjav9zJ8C0JkDNZr-EjdY_lS8iaC3s,4310
31
+ godot_agent/runtime/session.py,sha256=rHM5PxZtBNaLG-3roDQBu5Rvz6fXf816Z5T7oXQcIvs,1095
32
+ godot_agent/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ godot_agent/tools/base.py,sha256=MqjH4QzPWfiJAdF4Qsi4Aq6Swnfk2ilDkI712xnv-vY,702
34
+ godot_agent/tools/file_ops.py,sha256=Kl2amed-GAAcpntIanf65Fam8UH9MJFvceGQxCT-q8Y,4287
35
+ godot_agent/tools/git.py,sha256=S9se0PFcjn7QJ5M1CtRzg_JHMZNuDwpP3eFfISrivUY,1517
36
+ godot_agent/tools/godot_cli.py,sha256=B5UKyCaFMTj5IzusGYS6J3kZ07otgHe1aihuT9CdM0s,4881
37
+ godot_agent/tools/list_dir.py,sha256=geMaZd4GTqNeLaLma_IjT3SaPE9h7Y1X2sIYHcBeNKk,1618
38
+ godot_agent/tools/registry.py,sha256=xTZzxL6TuXZpLnDmFyHhD_dO-rBx74jtRllT36tVm3g,956
39
+ godot_agent/tools/screenshot.py,sha256=wuguFTKy4wRgIOPgmGVPyUg_WCrSh11V_ir4AtqHUcU,2493
40
+ godot_agent/tools/search.py,sha256=JAHXN7Y4GstL8ALf8cc13hLUjOZe07zbA53t6of4NMk,2393
41
+ godot_agent/tools/shell.py,sha256=YAuqZ_RhOoP-0dwED1YG6VajAFSeFmHUkL9ZRaG36Iw,2664
42
+ god_code-0.1.0.dist-info/METADATA,sha256=9zWmcWDlyGWEmIAAbos_vxEOJRduKH_SP2Zu-9i7p6I,607
43
+ god_code-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
44
+ god_code-0.1.0.dist-info/entry_points.txt,sha256=K8-vn4sPQe3hjJvfK0ussMCeZhftculTtEkG78Ugt2I,50
45
+ god_code-0.1.0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
46
+ god_code-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ god-code = godot_agent.cli:main