god-code 0.1.2__tar.gz → 0.1.4__tar.gz

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 (82) hide show
  1. {god_code-0.1.2 → god_code-0.1.4}/PKG-INFO +2 -1
  2. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/prompts/build_discipline.py +2 -0
  3. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/prompts/godot_playbook.py +1 -0
  4. {god_code-0.1.2 → god_code-0.1.4}/pyproject.toml +2 -1
  5. {god_code-0.1.2 → god_code-0.1.4}/.github/workflows/publish.yml +0 -0
  6. {god_code-0.1.2 → god_code-0.1.4}/.gitignore +0 -0
  7. {god_code-0.1.2 → god_code-0.1.4}/CHANGELOG.md +0 -0
  8. {god_code-0.1.2 → god_code-0.1.4}/CLAUDE.md +0 -0
  9. {god_code-0.1.2 → god_code-0.1.4}/CONTRIBUTING.md +0 -0
  10. {god_code-0.1.2 → god_code-0.1.4}/LICENSE +0 -0
  11. {god_code-0.1.2 → god_code-0.1.4}/README.md +0 -0
  12. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/__init__.py +0 -0
  13. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/cli.py +0 -0
  14. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/__init__.py +0 -0
  15. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/collision_planner.py +0 -0
  16. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/consistency_checker.py +0 -0
  17. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/dependency_graph.py +0 -0
  18. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/gdscript_linter.py +0 -0
  19. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/pattern_advisor.py +0 -0
  20. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/project.py +0 -0
  21. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/resource_validator.py +0 -0
  22. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/scene_parser.py +0 -0
  23. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/scene_writer.py +0 -0
  24. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/godot/tscn_validator.py +0 -0
  25. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/llm/__init__.py +0 -0
  26. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/llm/client.py +0 -0
  27. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/llm/streaming.py +0 -0
  28. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/llm/vision.py +0 -0
  29. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/prompts/__init__.py +0 -0
  30. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/prompts/knowledge_selector.py +0 -0
  31. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/prompts/system.py +0 -0
  32. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/py.typed +0 -0
  33. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/runtime/__init__.py +0 -0
  34. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/runtime/auth.py +0 -0
  35. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/runtime/config.py +0 -0
  36. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/runtime/context_manager.py +0 -0
  37. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/runtime/engine.py +0 -0
  38. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/runtime/error_loop.py +0 -0
  39. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/runtime/oauth.py +0 -0
  40. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/runtime/session.py +0 -0
  41. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/__init__.py +0 -0
  42. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/base.py +0 -0
  43. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/file_ops.py +0 -0
  44. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/git.py +0 -0
  45. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/godot_cli.py +0 -0
  46. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/list_dir.py +0 -0
  47. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/registry.py +0 -0
  48. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/screenshot.py +0 -0
  49. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/search.py +0 -0
  50. {god_code-0.1.2 → god_code-0.1.4}/godot_agent/tools/shell.py +0 -0
  51. {god_code-0.1.2 → god_code-0.1.4}/tests/__init__.py +0 -0
  52. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/__init__.py +0 -0
  53. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_collision_planner.py +0 -0
  54. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_consistency.py +0 -0
  55. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_dependency_graph.py +0 -0
  56. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_linter.py +0 -0
  57. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_pattern_advisor.py +0 -0
  58. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_project.py +0 -0
  59. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_resource_validator.py +0 -0
  60. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_scene_parser.py +0 -0
  61. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_scene_writer.py +0 -0
  62. {god_code-0.1.2 → god_code-0.1.4}/tests/godot/test_tscn_validator.py +0 -0
  63. {god_code-0.1.2 → god_code-0.1.4}/tests/llm/__init__.py +0 -0
  64. {god_code-0.1.2 → god_code-0.1.4}/tests/llm/test_client.py +0 -0
  65. {god_code-0.1.2 → god_code-0.1.4}/tests/llm/test_vision.py +0 -0
  66. {god_code-0.1.2 → god_code-0.1.4}/tests/prompts/__init__.py +0 -0
  67. {god_code-0.1.2 → god_code-0.1.4}/tests/prompts/test_knowledge_selector.py +0 -0
  68. {god_code-0.1.2 → god_code-0.1.4}/tests/prompts/test_system_prompt.py +0 -0
  69. {god_code-0.1.2 → god_code-0.1.4}/tests/runtime/__init__.py +0 -0
  70. {god_code-0.1.2 → god_code-0.1.4}/tests/runtime/test_config.py +0 -0
  71. {god_code-0.1.2 → god_code-0.1.4}/tests/runtime/test_context_manager.py +0 -0
  72. {god_code-0.1.2 → god_code-0.1.4}/tests/runtime/test_engine.py +0 -0
  73. {god_code-0.1.2 → god_code-0.1.4}/tests/runtime/test_error_loop.py +0 -0
  74. {god_code-0.1.2 → god_code-0.1.4}/tests/test_e2e.py +0 -0
  75. {god_code-0.1.2 → god_code-0.1.4}/tests/tools/__init__.py +0 -0
  76. {god_code-0.1.2 → god_code-0.1.4}/tests/tools/test_file_ops.py +0 -0
  77. {god_code-0.1.2 → god_code-0.1.4}/tests/tools/test_git.py +0 -0
  78. {god_code-0.1.2 → god_code-0.1.4}/tests/tools/test_godot_cli.py +0 -0
  79. {god_code-0.1.2 → god_code-0.1.4}/tests/tools/test_list_dir.py +0 -0
  80. {god_code-0.1.2 → god_code-0.1.4}/tests/tools/test_registry.py +0 -0
  81. {god_code-0.1.2 → god_code-0.1.4}/tests/tools/test_search.py +0 -0
  82. {god_code-0.1.2 → god_code-0.1.4}/tests/tools/test_shell.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: god-code
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: AI coding agent specialized for Godot game development
5
5
  Project-URL: Homepage, https://github.com/chuisiufai/god-code
6
6
  Project-URL: Repository, https://github.com/chuisiufai/god-code
@@ -9,6 +9,7 @@ License: GPL-3.0-or-later
9
9
  License-File: LICENSE
10
10
  Requires-Python: >=3.9
11
11
  Requires-Dist: click>=8.1
12
+ Requires-Dist: eval-type-backport>=0.2.0; python_version < '3.10'
12
13
  Requires-Dist: httpx>=0.27
13
14
  Requires-Dist: pillow>=10.3
14
15
  Requires-Dist: pydantic>=2.7
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  """Build discipline rules injected into system prompt.
2
4
 
3
5
  Enforces incremental build-and-verify workflow to prevent
@@ -3,6 +3,7 @@
3
3
  Each section is a tuple of (title, keywords, content) for selective injection
4
4
  into the system prompt based on task context.
5
5
  """
6
+ from __future__ import annotations
6
7
 
7
8
  SECTIONS: list[tuple[str, list[str], str]] = [
8
9
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "god-code"
3
- version = "0.1.2"
3
+ version = "0.1.4"
4
4
  description = "AI coding agent specialized for Godot game development"
5
5
  requires-python = ">=3.9"
6
6
  license = {text = "GPL-3.0-or-later"}
@@ -10,6 +10,7 @@ dependencies = [
10
10
  "httpx>=0.27",
11
11
  "pydantic>=2.7",
12
12
  "Pillow>=10.3",
13
+ "eval_type_backport>=0.2.0; python_version < '3.10'",
13
14
  ]
14
15
 
15
16
  [project.optional-dependencies]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes