geny-executor 2.1.0__tar.gz → 2.1.2__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 (624) hide show
  1. geny_executor-2.1.2/PKG-INFO +491 -0
  2. geny_executor-2.1.2/README.md +447 -0
  3. geny_executor-2.1.2/README_ko.md +447 -0
  4. {geny_executor-2.1.0 → geny_executor-2.1.2}/pyproject.toml +1 -1
  5. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/__init__.py +1 -1
  6. geny_executor-2.1.2/src/geny_executor/llm_client/anthropic.py +449 -0
  7. geny_executor-2.1.2/tests/llm_client/unit/test_anthropic_build_kwargs.py +321 -0
  8. geny_executor-2.1.0/PKG-INFO +0 -599
  9. geny_executor-2.1.0/README.md +0 -555
  10. geny_executor-2.1.0/README_ko.md +0 -555
  11. geny_executor-2.1.0/src/geny_executor/llm_client/anthropic.py +0 -232
  12. {geny_executor-2.1.0 → geny_executor-2.1.2}/.gitignore +0 -0
  13. {geny_executor-2.1.0 → geny_executor-2.1.2}/LICENSE +0 -0
  14. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/channels/__init__.py +0 -0
  15. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/channels/send_message_channel.py +0 -0
  16. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/channels/user_file_channel.py +0 -0
  17. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/__init__.py +0 -0
  18. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/artifact.py +0 -0
  19. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/builder.py +0 -0
  20. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/config.py +0 -0
  21. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/diff.py +0 -0
  22. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/environment.py +0 -0
  23. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/errors.py +0 -0
  24. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/introspection.py +0 -0
  25. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/mutation.py +0 -0
  26. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/pipeline.py +0 -0
  27. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/presets.py +0 -0
  28. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/result.py +0 -0
  29. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/schema.py +0 -0
  30. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/shared_keys.py +0 -0
  31. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/slot.py +0 -0
  32. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/snapshot.py +0 -0
  33. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/stage.py +0 -0
  34. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/state.py +0 -0
  35. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/__init__.py +0 -0
  36. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/runner.py +0 -0
  37. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/store_abc.py +0 -0
  38. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/store_impl/__init__.py +0 -0
  39. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/store_impl/file_backed.py +0 -0
  40. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/store_impl/in_memory.py +0 -0
  41. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/types.py +0 -0
  42. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/events/__init__.py +0 -0
  43. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/events/bus.py +0 -0
  44. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/events/types.py +0 -0
  45. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/__init__.py +0 -0
  46. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/ab_test.py +0 -0
  47. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/cost.py +0 -0
  48. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/models.py +0 -0
  49. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/monitor.py +0 -0
  50. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/replay.py +0 -0
  51. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/service.py +0 -0
  52. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/hooks/__init__.py +0 -0
  53. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/hooks/config.py +0 -0
  54. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/hooks/events.py +0 -0
  55. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/hooks/runner.py +0 -0
  56. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/__init__.py +0 -0
  57. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/_cli_runtime.py +0 -0
  58. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/base.py +0 -0
  59. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/claude_code.py +0 -0
  60. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/credentials.py +0 -0
  61. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/google.py +0 -0
  62. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/openai.py +0 -0
  63. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/registry.py +0 -0
  64. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/__init__.py +0 -0
  65. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/_canonical.py +0 -0
  66. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/_cli.py +0 -0
  67. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/types.py +0 -0
  68. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/vllm.py +0 -0
  69. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/__init__.py +0 -0
  70. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/_locks.py +0 -0
  71. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/_progressive.py +0 -0
  72. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/__init__.py +0 -0
  73. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/handles.py +0 -0
  74. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/provider.py +0 -0
  75. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/routing.py +0 -0
  76. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/snapshot.py +0 -0
  77. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/__init__.py +0 -0
  78. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/client.py +0 -0
  79. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/google.py +0 -0
  80. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/local.py +0 -0
  81. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/openai.py +0 -0
  82. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/registry.py +0 -0
  83. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/voyage.py +0 -0
  84. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/factory.py +0 -0
  85. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/presets.py +0 -0
  86. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/provider.py +0 -0
  87. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/__init__.py +0 -0
  88. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/ephemeral.py +0 -0
  89. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/__init__.py +0 -0
  90. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/config.py +0 -0
  91. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/frontmatter.py +0 -0
  92. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/index_store.py +0 -0
  93. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/layout.py +0 -0
  94. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/ltm_store.py +0 -0
  95. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/notes_store.py +0 -0
  96. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/provider.py +0 -0
  97. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/snapshot.py +0 -0
  98. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/stm_store.py +0 -0
  99. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/timezone.py +0 -0
  100. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/vector_store.py +0 -0
  101. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/__init__.py +0 -0
  102. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/config.py +0 -0
  103. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/connection.py +0 -0
  104. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/index_store.py +0 -0
  105. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/ltm_store.py +0 -0
  106. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/notes_store.py +0 -0
  107. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/provider.py +0 -0
  108. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/schema.py +0 -0
  109. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/snapshot.py +0 -0
  110. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/stm_store.py +0 -0
  111. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/vector_store.py +0 -0
  112. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/retriever.py +0 -0
  113. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/strategy.py +0 -0
  114. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/notifications/__init__.py +0 -0
  115. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/notifications/registry.py +0 -0
  116. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/permission/__init__.py +0 -0
  117. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/permission/loader.py +0 -0
  118. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/permission/matrix.py +0 -0
  119. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/permission/types.py +0 -0
  120. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/py.typed +0 -0
  121. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/runtime/__init__.py +0 -0
  122. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/runtime/task_executors.py +0 -0
  123. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/runtime/task_runner.py +0 -0
  124. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/security/__init__.py +0 -0
  125. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/security/import_validator.py +0 -0
  126. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/security/script_sandbox.py +0 -0
  127. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/__init__.py +0 -0
  128. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/freshness.py +0 -0
  129. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/manager.py +0 -0
  130. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/persistence.py +0 -0
  131. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/session.py +0 -0
  132. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/settings/__init__.py +0 -0
  133. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/settings/loader.py +0 -0
  134. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/settings/section_registry.py +0 -0
  135. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/__init__.py +0 -0
  136. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/batch/SKILL.md +0 -0
  137. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/debug/SKILL.md +0 -0
  138. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/loop/SKILL.md +0 -0
  139. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/lorem-ipsum/SKILL.md +0 -0
  140. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/simplify/SKILL.md +0 -0
  141. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/skillify/SKILL.md +0 -0
  142. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/stuck/SKILL.md +0 -0
  143. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/verify/SKILL.md +0 -0
  144. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled_skills.py +0 -0
  145. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/fork.py +0 -0
  146. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/frontmatter.py +0 -0
  147. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/loader.py +0 -0
  148. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/mcp_bridge.py +0 -0
  149. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/path_match.py +0 -0
  150. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/registry.py +0 -0
  151. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/shell_blocks.py +0 -0
  152. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/skill_tool.py +0 -0
  153. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/types.py +0 -0
  154. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/watcher.py +0 -0
  155. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/__init__.py +0 -0
  156. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/__init__.py +0 -0
  157. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/_helpers.py +0 -0
  158. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/cancel.py +0 -0
  159. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/clear.py +0 -0
  160. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/compact.py +0 -0
  161. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/config.py +0 -0
  162. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/context.py +0 -0
  163. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/cost.py +0 -0
  164. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/help.py +0 -0
  165. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/memory.py +0 -0
  166. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/model.py +0 -0
  167. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/preset_info.py +0 -0
  168. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/status.py +0 -0
  169. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/tasks.py +0 -0
  170. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/md_template.py +0 -0
  171. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/parser.py +0 -0
  172. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/registry.py +0 -0
  173. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/types.py +0 -0
  174. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/__init__.py +0 -0
  175. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/__init__.py +0 -0
  176. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/__init__.py +0 -0
  177. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/__init__.py +0 -0
  178. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/normalizers.py +0 -0
  179. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/stage.py +0 -0
  180. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/validators.py +0 -0
  181. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/interface.py +0 -0
  182. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/normalizers.py +0 -0
  183. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/stage.py +0 -0
  184. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/types.py +0 -0
  185. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/validators.py +0 -0
  186. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/__init__.py +0 -0
  187. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/__init__.py +0 -0
  188. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/__init__.py +0 -0
  189. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/compactors.py +0 -0
  190. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/retrievers.py +0 -0
  191. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/stage.py +0 -0
  192. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/strategies.py +0 -0
  193. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/compactors.py +0 -0
  194. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/interface.py +0 -0
  195. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/retrievers.py +0 -0
  196. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/stage.py +0 -0
  197. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/strategies.py +0 -0
  198. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/types.py +0 -0
  199. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/__init__.py +0 -0
  200. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/__init__.py +0 -0
  201. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/default/__init__.py +0 -0
  202. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/default/builders.py +0 -0
  203. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/default/stage.py +0 -0
  204. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/builders.py +0 -0
  205. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/interface.py +0 -0
  206. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/persona/__init__.py +0 -0
  207. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/persona/builder.py +0 -0
  208. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/persona/provider.py +0 -0
  209. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/stage.py +0 -0
  210. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/__init__.py +0 -0
  211. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/__init__.py +0 -0
  212. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/default/__init__.py +0 -0
  213. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/default/guards.py +0 -0
  214. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/default/stage.py +0 -0
  215. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/guards.py +0 -0
  216. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/interface.py +0 -0
  217. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/stage.py +0 -0
  218. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/types.py +0 -0
  219. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/__init__.py +0 -0
  220. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/__init__.py +0 -0
  221. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/default/__init__.py +0 -0
  222. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/default/stage.py +0 -0
  223. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/default/strategies.py +0 -0
  224. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/interface.py +0 -0
  225. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/stage.py +0 -0
  226. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/strategies.py +0 -0
  227. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/__init__.py +0 -0
  228. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/_translate.py +0 -0
  229. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/__init__.py +0 -0
  230. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/__init__.py +0 -0
  231. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/providers.py +0 -0
  232. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/retry.py +0 -0
  233. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/router.py +0 -0
  234. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/stage.py +0 -0
  235. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/google/__init__.py +0 -0
  236. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/google/providers.py +0 -0
  237. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/openai/__init__.py +0 -0
  238. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/openai/providers.py +0 -0
  239. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/interface.py +0 -0
  240. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/providers.py +0 -0
  241. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/retry.py +0 -0
  242. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/stage.py +0 -0
  243. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/types.py +0 -0
  244. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/__init__.py +0 -0
  245. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/__init__.py +0 -0
  246. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/__init__.py +0 -0
  247. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/pricing.py +0 -0
  248. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/stage.py +0 -0
  249. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/trackers.py +0 -0
  250. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/interface.py +0 -0
  251. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/pricing.py +0 -0
  252. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/stage.py +0 -0
  253. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/trackers.py +0 -0
  254. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/__init__.py +0 -0
  255. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/__init__.py +0 -0
  256. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/budget.py +0 -0
  257. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/processors.py +0 -0
  258. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/stage.py +0 -0
  259. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/interface.py +0 -0
  260. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/processors.py +0 -0
  261. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/stage.py +0 -0
  262. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/types.py +0 -0
  263. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/__init__.py +0 -0
  264. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/__init__.py +0 -0
  265. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/parsers.py +0 -0
  266. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/signals.py +0 -0
  267. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/stage.py +0 -0
  268. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/interface.py +0 -0
  269. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/parsers.py +0 -0
  270. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/signals.py +0 -0
  271. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/stage.py +0 -0
  272. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/types.py +0 -0
  273. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/__init__.py +0 -0
  274. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/__init__.py +0 -0
  275. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/__init__.py +0 -0
  276. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/executors.py +0 -0
  277. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/routers.py +0 -0
  278. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/stage.py +0 -0
  279. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/executors.py +0 -0
  280. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/interface.py +0 -0
  281. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/persistence.py +0 -0
  282. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/routers.py +0 -0
  283. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/stage.py +0 -0
  284. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/state_mutation.py +0 -0
  285. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/streaming.py +0 -0
  286. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/__init__.py +0 -0
  287. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/__init__.py +0 -0
  288. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/default/__init__.py +0 -0
  289. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/default/reviewers.py +0 -0
  290. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/default/stage.py +0 -0
  291. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/interface.py +0 -0
  292. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/__init__.py +0 -0
  293. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/__init__.py +0 -0
  294. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/default/__init__.py +0 -0
  295. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/default/orchestrators.py +0 -0
  296. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/default/stage.py +0 -0
  297. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/interface.py +0 -0
  298. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/orchestrators.py +0 -0
  299. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/stage.py +0 -0
  300. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/subagent_type.py +0 -0
  301. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/types.py +0 -0
  302. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/__init__.py +0 -0
  303. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/__init__.py +0 -0
  304. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/__init__.py +0 -0
  305. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/file_backed_registry.py +0 -0
  306. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/policies.py +0 -0
  307. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/registry.py +0 -0
  308. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/stage.py +0 -0
  309. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/interface.py +0 -0
  310. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/types.py +0 -0
  311. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/__init__.py +0 -0
  312. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/__init__.py +0 -0
  313. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/__init__.py +0 -0
  314. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/strategy.py +0 -0
  315. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/default/__init__.py +0 -0
  316. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/default/stage.py +0 -0
  317. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/default/strategies.py +0 -0
  318. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/interface.py +0 -0
  319. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/stage.py +0 -0
  320. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/strategies.py +0 -0
  321. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/types.py +0 -0
  322. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/__init__.py +0 -0
  323. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/__init__.py +0 -0
  324. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/__init__.py +0 -0
  325. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/requesters.py +0 -0
  326. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/stage.py +0 -0
  327. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/timeouts.py +0 -0
  328. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/interface.py +0 -0
  329. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/types.py +0 -0
  330. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/__init__.py +0 -0
  331. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/__init__.py +0 -0
  332. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/default/__init__.py +0 -0
  333. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +0 -0
  334. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/default/stage.py +0 -0
  335. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/controllers.py +0 -0
  336. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/interface.py +0 -0
  337. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/stage.py +0 -0
  338. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/__init__.py +0 -0
  339. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/__init__.py +0 -0
  340. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/default/__init__.py +0 -0
  341. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/default/emitters.py +0 -0
  342. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/default/stage.py +0 -0
  343. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/emitters.py +0 -0
  344. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/interface.py +0 -0
  345. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/stage.py +0 -0
  346. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/types.py +0 -0
  347. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/__init__.py +0 -0
  348. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/_dehydrate.py +0 -0
  349. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/__init__.py +0 -0
  350. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/__init__.py +0 -0
  351. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/persistence.py +0 -0
  352. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/stage.py +0 -0
  353. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/strategies.py +0 -0
  354. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/insight.py +0 -0
  355. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/interface.py +0 -0
  356. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/persistence.py +0 -0
  357. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/stage.py +0 -0
  358. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/strategies.py +0 -0
  359. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/__init__.py +0 -0
  360. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/__init__.py +0 -0
  361. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/__init__.py +0 -0
  362. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/importance.py +0 -0
  363. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/stage.py +0 -0
  364. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/summarizers.py +0 -0
  365. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/frequency_policy.py +0 -0
  366. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/interface.py +0 -0
  367. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/types.py +0 -0
  368. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/__init__.py +0 -0
  369. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/__init__.py +0 -0
  370. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/__init__.py +0 -0
  371. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/frequencies.py +0 -0
  372. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/persisters.py +0 -0
  373. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/stage.py +0 -0
  374. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/interface.py +0 -0
  375. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/restore.py +0 -0
  376. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/types.py +0 -0
  377. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/__init__.py +0 -0
  378. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/__init__.py +0 -0
  379. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/__init__.py +0 -0
  380. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/formatters.py +0 -0
  381. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/multi_format.py +0 -0
  382. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/stage.py +0 -0
  383. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/formatters.py +0 -0
  384. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/interface.py +0 -0
  385. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/stage.py +0 -0
  386. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/__init__.py +0 -0
  387. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/adhoc.py +0 -0
  388. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/base.py +0 -0
  389. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/__init__.py +0 -0
  390. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/_path_guard.py +0 -0
  391. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/agent_tool.py +0 -0
  392. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/ask_user_question_tool.py +0 -0
  393. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/bash_tool.py +0 -0
  394. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/cron_tools.py +0 -0
  395. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/dev_tools.py +0 -0
  396. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/edit_tool.py +0 -0
  397. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/glob_tool.py +0 -0
  398. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/grep_tool.py +0 -0
  399. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/mcp_wrapper_tools.py +0 -0
  400. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/notebook_edit_tool.py +0 -0
  401. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/operator_tools.py +0 -0
  402. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/plan_mode_tools.py +0 -0
  403. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/push_notification_tool.py +0 -0
  404. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/read_tool.py +0 -0
  405. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/send_message_tool.py +0 -0
  406. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/task_tools.py +0 -0
  407. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/todo_write_tool.py +0 -0
  408. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/tool_search_tool.py +0 -0
  409. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/web_fetch_tool.py +0 -0
  410. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/web_search_tool.py +0 -0
  411. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/worktree_tools.py +0 -0
  412. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/write_tool.py +0 -0
  413. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/composer.py +0 -0
  414. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/errors.py +0 -0
  415. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/__init__.py +0 -0
  416. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/adapter.py +0 -0
  417. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/credentials.py +0 -0
  418. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/errors.py +0 -0
  419. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/manager.py +0 -0
  420. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/oauth.py +0 -0
  421. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/state.py +0 -0
  422. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/uri.py +0 -0
  423. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/provider.py +0 -0
  424. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/providers.py +0 -0
  425. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/registry.py +0 -0
  426. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/sandbox.py +0 -0
  427. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/scope.py +0 -0
  428. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/stage_binding.py +0 -0
  429. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/workspace/__init__.py +0 -0
  430. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/workspace/stack.py +0 -0
  431. {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/workspace/types.py +0 -0
  432. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/__init__.py +0 -0
  433. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/_fixtures/__init__.py +0 -0
  434. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/_fixtures/fake_claude.py +0 -0
  435. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/_fixtures/fake_echo_cli.py +0 -0
  436. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/__init__.py +0 -0
  437. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/conftest.py +0 -0
  438. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/fixtures/__init__.py +0 -0
  439. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/fixtures/adapter/__init__.py +0 -0
  440. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/fixtures/adapter/adapter.py +0 -0
  441. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c1_six_layer_retrieval.py +0 -0
  442. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c2_execution_recording.py +0 -0
  443. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c3_reflection_and_promotion.py +0 -0
  444. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c4_rest_coverage.py +0 -0
  445. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c5_embedding_migration.py +0 -0
  446. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c6_session_resume.py +0 -0
  447. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c7_adapter_parity.py +0 -0
  448. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_spec_loads.py +0 -0
  449. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/__init__.py +0 -0
  450. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/memory_provider_contract.py +0 -0
  451. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_embedding_clients.py +0 -0
  452. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_error_codes_stability.py +0 -0
  453. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_auto_vector.py +0 -0
  454. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_composite.py +0 -0
  455. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_composite_routing.py +0 -0
  456. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_curated_global.py +0 -0
  457. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_ephemeral.py +0 -0
  458. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_factory.py +0 -0
  459. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_file.py +0 -0
  460. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_file_layout.py +0 -0
  461. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_file_vector.py +0 -0
  462. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql.py +0 -0
  463. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql_dialect.py +0 -0
  464. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql_schema.py +0 -0
  465. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql_vector.py +0 -0
  466. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_stage_uniformity.py +0 -0
  467. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/integration/test_cycle_ab_cross_import.py +0 -0
  468. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/integration/test_integration.py +0 -0
  469. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/__init__.py +0 -0
  470. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/__init__.py +0 -0
  471. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/harness.py +0 -0
  472. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_anthropic.py +0 -0
  473. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_claude_code_cli.py +0 -0
  474. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_google.py +0 -0
  475. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_openai.py +0 -0
  476. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_vllm.py +0 -0
  477. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/__init__.py +0 -0
  478. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/test_claude_code.py +0 -0
  479. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/test_cli_runtime.py +0 -0
  480. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/test_credentials.py +0 -0
  481. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/test_translators_cli_claude_code.py +0 -0
  482. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/__init__.py +0 -0
  483. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_adaptive_model_router.py +0 -0
  484. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_adaptive_thinking_budget.py +0 -0
  485. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_adhoc_providers.py +0 -0
  486. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_agent_tool.py +0 -0
  487. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_artifact_metadata.py +0 -0
  488. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_ask_user_question_tool.py +0 -0
  489. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_binary_classify_manifest.py +0 -0
  490. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_built_in_autoregister.py +0 -0
  491. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_builtin_capabilities.py +0 -0
  492. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_builtin_features.py +0 -0
  493. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_composite_set_hooks.py +0 -0
  494. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_cron_runner.py +0 -0
  495. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_cron_store.py +0 -0
  496. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_cron_tools.py +0 -0
  497. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_dev_tools.py +0 -0
  498. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_dynamic_persona_builder.py +0 -0
  499. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_errors_categories.py +0 -0
  500. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_evaluation_chain.py +0 -0
  501. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_fork_multi_provider.py +0 -0
  502. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_hierarchical_sidecars.py +0 -0
  503. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_hook_in_process.py +0 -0
  504. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_hook_runner.py +0 -0
  505. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_hooks_and_shared_keys.py +0 -0
  506. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_index_list_categories.py +0 -0
  507. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_index_render_vault_map.py +0 -0
  508. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_interaction_fields.py +0 -0
  509. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_introspection.py +0 -0
  510. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_base.py +0 -0
  511. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_capabilities.py +0 -0
  512. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_registry.py +0 -0
  513. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_request_types.py +0 -0
  514. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_state.py +0 -0
  515. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_summary_compactor.py +0 -0
  516. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_loop_agnostic_lock.py +0 -0
  517. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_manifest_provider_validation.py +0 -0
  518. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_manifest_v2.py +0 -0
  519. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_manifest_v3_migration.py +0 -0
  520. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_annotations_attach.py +0 -0
  521. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_credential_store.py +0 -0
  522. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_fsm.py +0 -0
  523. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_lifecycle.py +0 -0
  524. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_namespace.py +0 -0
  525. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_oauth.py +0 -0
  526. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_prompts_skills_bridge.py +0 -0
  527. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_resource_retriever.py +0 -0
  528. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_uri.py +0 -0
  529. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_wrapper_tools.py +0 -0
  530. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_memory_aware_retriever.py +0 -0
  531. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_memory_hooks_after_callbacks.py +0 -0
  532. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_memory_metadata_extension.py +0 -0
  533. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_multi_dim_budget_controller.py +0 -0
  534. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_multi_format_yield.py +0 -0
  535. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_multi_provider.py +0 -0
  536. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_multimodal.py +0 -0
  537. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_note_graph_queries.py +0 -0
  538. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_notebook_edit_tool.py +0 -0
  539. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_notes_load_pinned.py +0 -0
  540. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_operator_tools.py +0 -0
  541. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_ordered_emitter_chain.py +0 -0
  542. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_permission_matrix.py +0 -0
  543. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_permission_mode_promotions.py +0 -0
  544. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase1_foundation.py +0 -0
  545. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase1_pipeline.py +0 -0
  546. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase2_agent_loop.py +0 -0
  547. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase2_tools.py +0 -0
  548. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase3_context_memory.py +0 -0
  549. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase4_think_agent_evaluate.py +0 -0
  550. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase5_emit_presets_mcp.py +0 -0
  551. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase5_environment.py +0 -0
  552. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase6_history.py +0 -0
  553. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase6_integration.py +0 -0
  554. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase7_security.py +0 -0
  555. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase9a_preset_regen.py +0 -0
  556. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase9a_scaffolding.py +0 -0
  557. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_pipeline_attach_runtime.py +0 -0
  558. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_pipeline_from_manifest.py +0 -0
  559. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_pipeline_session_runtime.py +0 -0
  560. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_plan_mode_tools.py +0 -0
  561. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_progressive_disclosure.py +0 -0
  562. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_provider_driven_strategy.py +0 -0
  563. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_push_notification_tool.py +0 -0
  564. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_refresh_backlinks_extension.py +0 -0
  565. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_resolve_model_config.py +0 -0
  566. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_runtime_task_runner.py +0 -0
  567. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s06_provider_selection.py +0 -0
  568. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s13_file_backed_registry.py +0 -0
  569. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s13_task_registry_output.py +0 -0
  570. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s19_frequency_policy.py +0 -0
  571. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b1_tool_review.py +0 -0
  572. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b2_task_registry.py +0 -0
  573. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b3_hitl.py +0 -0
  574. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b4_summarize.py +0 -0
  575. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b5_persist.py +0 -0
  576. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9c1_pipeline_resume.py +0 -0
  577. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9c2_restore_state.py +0 -0
  578. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_send_message_tool.py +0 -0
  579. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_settings_loader.py +0 -0
  580. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_1.py +0 -0
  581. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_2.py +0 -0
  582. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_3.py +0 -0
  583. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_4_bundled.py +0 -0
  584. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_5_fork.py +0 -0
  585. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_6_killer.py +0 -0
  586. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_7_watcher.py +0 -0
  587. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_richer_schema.py +0 -0
  588. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_tool.py +0 -0
  589. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skills_foundation.py +0 -0
  590. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_slash_built_in_control.py +0 -0
  591. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_slash_built_in_introspection.py +0 -0
  592. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_slash_commands.py +0 -0
  593. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_slash_md_template.py +0 -0
  594. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stage10_hook_wiring.py +0 -0
  595. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stage10_partition_executor.py +0 -0
  596. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stage10_permission_matrix.py +0 -0
  597. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stage19_session_summary.py +0 -0
  598. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_state_mutation_wiring.py +0 -0
  599. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_state_shared_and_local.py +0 -0
  600. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stm_append_event.py +0 -0
  601. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_streaming_tool_executor.py +0 -0
  602. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_structured_output_parser.py +0 -0
  603. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_structured_reflection.py +0 -0
  604. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_credential_propagation.py +0 -0
  605. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_descriptor.py +0 -0
  606. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_orchestrator_zero_arg.py +0 -0
  607. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_parallel.py +0 -0
  608. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_type_orchestrator.py +0 -0
  609. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_task_tools.py +0 -0
  610. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_todo_write_tool.py +0 -0
  611. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_abc_uplift.py +0 -0
  612. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_call_events.py +0 -0
  613. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_errors.py +0 -0
  614. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_lifecycle_hooks.py +0 -0
  615. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_provider.py +0 -0
  616. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_result_persistence.py +0 -0
  617. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_search_tool.py +0 -0
  618. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_stage_max_concurrency.py +0 -0
  619. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_web_fetch_tool.py +0 -0
  620. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_web_search_tool.py +0 -0
  621. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_workspace.py +0 -0
  622. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_workspace_propagation.py +0 -0
  623. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_workspace_tools_integration.py +0 -0
  624. {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_worktree_tools.py +0 -0
@@ -0,0 +1,491 @@
1
+ Metadata-Version: 2.4
2
+ Name: geny-executor
3
+ Version: 2.1.2
4
+ Summary: Harness-engineered agent pipeline library with 21-stage dual-abstraction architecture, built on the Anthropic API
5
+ Project-URL: Homepage, https://github.com/CocoRoF/geny-executor
6
+ Project-URL: Repository, https://github.com/CocoRoF/geny-executor
7
+ Project-URL: Issues, https://github.com/CocoRoF/geny-executor/issues
8
+ Project-URL: Documentation, https://github.com/CocoRoF/geny-executor#readme
9
+ Author-email: CocoRoF <cocorof@users.noreply.github.com>
10
+ License-Expression: MIT
11
+ License-File: LICENSE
12
+ Keywords: agent,ai,anthropic,claude,harness,llm,mcp,orchestration,pipeline
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Framework :: AsyncIO
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.11
25
+ Requires-Dist: anthropic>=0.52.0
26
+ Requires-Dist: croniter>=2.0
27
+ Requires-Dist: ddgs>=9.11
28
+ Requires-Dist: google-genai>=1.0.0
29
+ Requires-Dist: httpx>=0.27
30
+ Requires-Dist: jsonschema>=4.0
31
+ Requires-Dist: mcp>=1.0.0
32
+ Requires-Dist: numpy>=1.24
33
+ Requires-Dist: openai>=1.50.0
34
+ Requires-Dist: pgvector>=0.3.0
35
+ Requires-Dist: psycopg[binary]>=3.1
36
+ Requires-Dist: pydantic>=2.0
37
+ Requires-Dist: pyyaml>=6.0
38
+ Provides-Extra: dev
39
+ Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
40
+ Requires-Dist: pytest-cov>=5.0; extra == 'dev'
41
+ Requires-Dist: pytest>=8.0; extra == 'dev'
42
+ Requires-Dist: ruff>=0.4.0; extra == 'dev'
43
+ Description-Content-Type: text/markdown
44
+
45
+ # geny-executor
46
+
47
+ [![PyPI version](https://img.shields.io/pypi/v/geny-executor.svg)](https://pypi.org/project/geny-executor/)
48
+ [![Python 3.11+](https://img.shields.io/pypi/pyversions/geny-executor.svg)](https://pypi.org/project/geny-executor/)
49
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
50
+ [![CI](https://github.com/CocoRoF/geny-executor/actions/workflows/ci.yml/badge.svg)](https://github.com/CocoRoF/geny-executor/actions/workflows/ci.yml)
51
+
52
+ **A harness-engineered agent pipeline library — 21 stages, 5 LLM providers, MCP-native, fully introspectable.**
53
+
54
+ geny-executor implements a **21-stage pipeline** with **dual-abstraction architecture** (stage slots × strategy slots). Inspired by Claude Code's agent loop and Anthropic's harness design principles. No LangChain. No LangGraph. Just an explicit, modular pipeline where every step is observable, mutatable, and swappable.
55
+
56
+ [한국어 README](README_ko.md) · [Architecture](docs/architecture.md) · [Providers](docs/providers.md) · [Error codes](docs/error_codes.md) · [Claude Code CLI host](docs/claude_code_cli.md)
57
+
58
+ ---
59
+
60
+ ## Why geny-executor?
61
+
62
+ | Problem | geny-executor's answer |
63
+ |---|---|
64
+ | Frameworks hide too much behind abstractions | Every one of the 21 stages is explicit, inspectable, and individually swappable. |
65
+ | Hard to customize one part without rewriting everything | **Dual abstraction**: swap a whole stage *or* swap a strategy inside a stage. Manifest-driven so config = artifact. |
66
+ | Vendor lock-in across LLM providers | One contract, five providers wired in (`anthropic` / `openai` / `google` / `vllm` / `claude_code_cli`). Switch by editing one config field. |
67
+ | Agent loops are opaque black boxes | Event-bus + stable structured error codes ([`exec.cli.auth_failed`, …](docs/error_codes.md)) — every failure groups cleanly in your logs / Sentry / i18n layer. |
68
+ | MCP integration is a side concern | First-class. Host-attached MCP servers + per-session MCP wraps for CLI backends (e.g. Claude Code CLI) ship out of the box. |
69
+ | Cost tracking is an afterthought | Built into Stage 7 (Token). Per-call cost, per-session ledger, budget guards. |
70
+
71
+ ---
72
+
73
+ ## Architecture at a glance
74
+
75
+ ### The 21-stage pipeline
76
+
77
+ ```
78
+ Phase A — Setup (once per turn)
79
+ 1: Input → 2: Context → 3: System → 4: Guard → 5: Cache
80
+
81
+ Phase B — Generate + Dispatch (loop)
82
+ 6: API → 7: Token → 8: Think → 9: Parse
83
+ → 10: Tool → 11: ToolReview → 12: Agent → 13: TaskRegistry
84
+ → 14: Evaluate → 15: HITL → 16: Loop
85
+
86
+ Phase C — Surface (once)
87
+ 17: Emit → 18: Memory → 19: Summarize → 20: Persist → 21: Yield
88
+ ```
89
+
90
+ The full stage list with strategy options lives in [`docs/architecture.md`](docs/architecture.md).
91
+
92
+ ### Dual abstraction — two levels of swap
93
+
94
+ ```
95
+ ┌─ Level 1: Stage Abstraction ─────────────────────────┐
96
+ │ Swap an entire stage module in/out of the pipeline. │
97
+ │ │
98
+ │ ┌─ Level 2: Strategy Abstraction ─────────────────┐ │
99
+ │ │ Swap internal logic within a stage. │ │
100
+ │ │ │ │
101
+ │ │ ContextStage can use: │ │
102
+ │ │ → SimpleLoad (default) │ │
103
+ │ │ → ProgressiveDisclosure │ │
104
+ │ │ → VectorSearch │ │
105
+ │ │ → YourCustomStrategy │ │
106
+ │ └──────────────────────────────────────────────────┘ │
107
+ └────────────────────────────────────────────────────────┘
108
+ ```
109
+
110
+ - **Stage Abstraction** — replace a whole stage (e.g. drop a custom `APIStage` for a private provider).
111
+ - **Strategy Abstraction** — change behaviour *inside* a stage (e.g. switch context loading from `SimpleLoad` to `VectorSearch`) without touching the surrounding pipeline.
112
+
113
+ ---
114
+
115
+ ## Installation
116
+
117
+ ```bash
118
+ pip install geny-executor
119
+ ```
120
+
121
+ Optional extras:
122
+
123
+ ```bash
124
+ pip install geny-executor[memory] # numpy for vector retrieval
125
+ pip install geny-executor[all] # everything
126
+ pip install geny-executor[dev] # dev/test tooling
127
+ ```
128
+
129
+ **Requirements**: Python 3.11+. At least one provider's credentials (Anthropic API key, OpenAI API key, …) or a local CLI binary (`claude` for `claude_code_cli`).
130
+
131
+ ---
132
+
133
+ ## Quick start
134
+
135
+ ### Minimal pipeline
136
+
137
+ ```python
138
+ import asyncio
139
+ from geny_executor import PipelinePresets
140
+
141
+ async def main():
142
+ pipeline = PipelinePresets.minimal(api_key="sk-ant-...")
143
+ result = await pipeline.run("What is the capital of France?")
144
+ print(result.text)
145
+
146
+ asyncio.run(main())
147
+ ```
148
+
149
+ ### Chat pipeline (history + system prompt + optional tools)
150
+
151
+ ```python
152
+ from geny_executor import PipelinePresets
153
+
154
+ pipeline = PipelinePresets.chat(
155
+ api_key="sk-ant-...",
156
+ system_prompt="You are a helpful coding assistant.",
157
+ )
158
+
159
+ result = await pipeline.run("Explain Python decorators")
160
+ print(result.text)
161
+ print(f"Cost: ${result.total_cost_usd:.4f}")
162
+ ```
163
+
164
+ ### Full agent (all 21 stages — tools, evaluation, memory, loop control)
165
+
166
+ ```python
167
+ from geny_executor import PipelinePresets
168
+ from geny_executor.tools import ToolRegistry, Tool, ToolResult, ToolContext
169
+
170
+ class SearchTool(Tool):
171
+ @property
172
+ def name(self) -> str: return "search"
173
+ @property
174
+ def description(self) -> str: return "Search the web for information"
175
+ @property
176
+ def input_schema(self) -> dict:
177
+ return {
178
+ "type": "object",
179
+ "properties": {"query": {"type": "string"}},
180
+ "required": ["query"],
181
+ }
182
+ async def execute(self, input, context):
183
+ return ToolResult(content=f"Results for: {input['query']}")
184
+
185
+ registry = ToolRegistry()
186
+ registry.register(SearchTool())
187
+
188
+ pipeline = PipelinePresets.agent(
189
+ api_key="sk-ant-...",
190
+ system_prompt="You are a research assistant. Use tools to find answers.",
191
+ tools=registry,
192
+ max_turns=20,
193
+ )
194
+
195
+ result = await pipeline.run("Find the latest Python release version")
196
+ ```
197
+
198
+ ### Custom pipeline with builder
199
+
200
+ ```python
201
+ from geny_executor import PipelineBuilder
202
+
203
+ pipeline = (
204
+ PipelineBuilder("my-agent", api_key="sk-ant-...")
205
+ .with_model(model="claude-sonnet-4-6", max_tokens=4096)
206
+ .with_system(prompt="You are a concise assistant.")
207
+ .with_context()
208
+ .with_guard(cost_budget_usd=1.0, max_iterations=30)
209
+ .with_cache(strategy="aggressive")
210
+ .with_tools(registry=my_registry)
211
+ .with_think(enabled=True, budget_tokens=10000)
212
+ .with_evaluate()
213
+ .with_loop(max_turns=30)
214
+ .with_memory()
215
+ .build()
216
+ )
217
+
218
+ result = await pipeline.run("Complex multi-step task here")
219
+ ```
220
+
221
+ ### Manifest-driven pipeline (recommended for hosts)
222
+
223
+ ```python
224
+ from geny_executor import Pipeline, CredentialBundle, ProviderCredentials, EnvironmentManifest
225
+
226
+ manifest = EnvironmentManifest.load("./envs/my_env.json")
227
+ credentials = CredentialBundle(by_provider={
228
+ "anthropic": ProviderCredentials(api_key="sk-ant-..."),
229
+ })
230
+ pipeline = await Pipeline.from_manifest_async(manifest, credentials=credentials)
231
+ result = await pipeline.run("Hello!")
232
+ ```
233
+
234
+ See [`docs/manifest.md`](docs/manifest.md) for the full schema.
235
+
236
+ ---
237
+
238
+ ## Five LLM providers, one contract
239
+
240
+ | Provider | Notes |
241
+ |---|---|
242
+ | `anthropic` | Claude family. Full streaming, native `tool_use`, thinking blocks. |
243
+ | `openai` | GPT-4.1 / o-series. Streaming, tools, JSON-schema structured output. |
244
+ | `google` | Gemini 3.x / 2.5. Streaming, tools, thinking blocks. |
245
+ | `vllm` | Any model on a local vLLM endpoint. OpenAI-compatible. Tools opt-in via `configure_capabilities()`. |
246
+ | `claude_code_cli` | Subprocess-driven Claude Code CLI. **Hosts attach a per-session MCP bridge** to surface their own tool registry to the spawned CLI's LLM. See [`docs/claude_code_cli.md`](docs/claude_code_cli.md). |
247
+
248
+ A session picks its provider via `stages[6].config["provider"]` in the manifest. Credentials flow through a single `CredentialBundle` channel — see [`docs/providers.md`](docs/providers.md).
249
+
250
+ ---
251
+
252
+ ## Error codes (2.1.0+)
253
+
254
+ Every executor exception carries a stable `exec.<component>.<reason>` code:
255
+
256
+ ```python
257
+ from geny_executor import APIError, ExecutorErrorCode, ErrorCategory
258
+
259
+ try:
260
+ result = await pipeline.run("...")
261
+ except APIError as e:
262
+ if e.code is ExecutorErrorCode.EXEC_CLI_AUTH_FAILED:
263
+ print("Please re-login to Claude Code CLI.")
264
+ elif e.category.is_recoverable:
265
+ print(f"Recoverable failure ({e.code.value}); retrying.")
266
+ ```
267
+
268
+ Structured event payloads also carry the code:
269
+
270
+ ```json
271
+ {
272
+ "type": "pipeline.error",
273
+ "data": {
274
+ "error": "Claude Code CLI is not authenticated …",
275
+ "code": "exec.cli.auth_failed",
276
+ "exception_type": "geny_executor.core.errors.APIError"
277
+ }
278
+ }
279
+ ```
280
+
281
+ Codes are **stable across releases** — see [`docs/error_codes.md`](docs/error_codes.md) for the full table, recoverability, and how to add a new code.
282
+
283
+ ---
284
+
285
+ ## Sessions
286
+
287
+ Persistent state across multiple interactions:
288
+
289
+ ```python
290
+ from geny_executor import PipelinePresets
291
+ from geny_executor.session import SessionManager
292
+
293
+ manager = SessionManager()
294
+ pipeline = PipelinePresets.chat(api_key="sk-ant-...")
295
+ session = manager.create(pipeline)
296
+
297
+ await session.run("My name is Alice")
298
+ result = await session.run("What's my name?")
299
+
300
+ for info in manager.list_sessions():
301
+ print(f"{info.session_id}: {info.message_count} msgs, ${info.total_cost_usd:.4f}")
302
+ ```
303
+
304
+ ---
305
+
306
+ ## Event system + observability
307
+
308
+ ```python
309
+ @pipeline.on("stage.enter")
310
+ async def _(event):
311
+ print(f"→ {event.stage}")
312
+
313
+ @pipeline.on("pipeline.error")
314
+ async def _(event):
315
+ print(f"❌ {event.data['code']}: {event.data['error']}")
316
+
317
+ @pipeline.on("*")
318
+ async def _(event):
319
+ pass # firehose
320
+ ```
321
+
322
+ Streaming:
323
+
324
+ ```python
325
+ async for event in pipeline.run_stream("Solve step by step"):
326
+ if event.type == "stage.enter":
327
+ print(f"Stage: {event.stage}")
328
+ elif event.type == "pipeline.complete":
329
+ print(f"Final: {event.data['result'].text}")
330
+ ```
331
+
332
+ ---
333
+
334
+ ## Tools + MCP
335
+
336
+ ```python
337
+ from geny_executor.tools import Tool, ToolResult, ToolContext, ToolRegistry
338
+
339
+ class Calculator(Tool):
340
+ @property
341
+ def name(self): return "calculator"
342
+ @property
343
+ def description(self): return "Perform arithmetic."
344
+ @property
345
+ def input_schema(self):
346
+ return {"type": "object", "properties": {"expression": {"type": "string"}}, "required": ["expression"]}
347
+ async def execute(self, input, context):
348
+ return ToolResult(content=str(eval(input["expression"]))) # use a safe evaluator!
349
+
350
+ registry = ToolRegistry()
351
+ registry.register(Calculator())
352
+ ```
353
+
354
+ Connect a host-attached MCP server:
355
+
356
+ ```python
357
+ from geny_executor.tools.mcp import MCPManager
358
+
359
+ mcp = MCPManager()
360
+ await mcp.connect("filesystem", command="npx", args=["-y", "@anthropic/mcp-filesystem"])
361
+ for tool in mcp.list_tools():
362
+ registry.register(tool)
363
+ ```
364
+
365
+ For the **CLI-side** MCP wrap (your tool registry exposed *into* a spawned Claude Code CLI's LLM), see [`docs/claude_code_cli.md`](docs/claude_code_cli.md).
366
+
367
+ ---
368
+
369
+ ## Pipeline presets
370
+
371
+ | Preset | Active stages | Use case |
372
+ |---|---|---|
373
+ | `PipelinePresets.minimal()` | Input → API → Parse → Yield | Quick Q&A, smoke tests |
374
+ | `PipelinePresets.chat()` | + Context, System, Guard, Cache, Token, Tool, Loop, Memory | Conversational chatbot |
375
+ | `PipelinePresets.agent()` | All 21 stages active | Autonomous agent with tools, eval, memory, summarisation, persistence |
376
+ | `PipelinePresets.evaluator()` | Input → System → API → Parse → Evaluate → Yield | Generator/Evaluator quality pass |
377
+ | `PipelinePresets.geny_vtuber()` | All 21 stages + VTuber/TTS emitters | Reference reproduction of the Geny VTuber harness |
378
+
379
+ ---
380
+
381
+ ## Custom stages + strategies
382
+
383
+ ```python
384
+ from geny_executor.core.stage import Strategy
385
+
386
+ class MyContextStrategy(Strategy):
387
+ name = "my_context"
388
+ description = "Custom context loading with RAG"
389
+
390
+ def configure(self, config: dict) -> None:
391
+ self.top_k = config.get("top_k", 5)
392
+
393
+ async def load(self, state):
394
+ ... # your RAG retrieval
395
+ ```
396
+
397
+ ```python
398
+ from geny_executor.core.stage import Stage
399
+ from geny_executor.core.state import PipelineState
400
+
401
+ class LoggingStage(Stage[dict, dict]):
402
+ name = "logging"
403
+ order = 7 # after API, before Think
404
+ category = "execution"
405
+
406
+ async def execute(self, input, state: PipelineState):
407
+ print(f"[{state.iteration}] API response received")
408
+ return input
409
+
410
+ pipeline.register_stage(LoggingStage())
411
+ ```
412
+
413
+ ---
414
+
415
+ ## Project structure
416
+
417
+ ```
418
+ geny-executor/
419
+ ├── src/geny_executor/
420
+ │ ├── __init__.py # Public API surface
421
+ │ ├── py.typed # PEP 561 type marker
422
+ │ ├── core/ # Pipeline engine, errors, manifest, mutation, snapshot
423
+ │ ├── stages/ # 21 pipeline stages (s01–s21)
424
+ │ ├── llm_client/ # 5 providers + ClientRegistry + CredentialBundle + CLI runtime
425
+ │ ├── tools/ # Tool ABC, registry, router, MCP integration
426
+ │ ├── hooks/ # PRE/POST tool-use lifecycle hooks
427
+ │ ├── memory/ # Memory v2 retrieval, vault map, vector store
428
+ │ ├── skills/ # SkillProvider + skill loading
429
+ │ ├── subagents/ # Stage 12 sub-agent orchestration
430
+ │ ├── permission/ # Per-tool ACL evaluated by RegistryRouter
431
+ │ ├── channels/ # Output channel adapters (text, callback, TTS, …)
432
+ │ ├── cron/ # Scheduled trigger support
433
+ │ ├── events/ # EventBus pub/sub
434
+ │ ├── history/ # Conversation history primitives
435
+ │ ├── telemetry/ # Event / metric exporters
436
+ │ └── session/ # Session manager + freshness checks
437
+ ├── docs/ # Architecture, providers, manifest, error codes, MCP, hooks
438
+ ├── tests/ # 3100+ unit, conformance, contract, integration tests
439
+ ├── pyproject.toml # Package configuration (Hatch)
440
+ └── LICENSE # MIT
441
+ ```
442
+
443
+ ---
444
+
445
+ ## Development
446
+
447
+ ```bash
448
+ git clone https://github.com/CocoRoF/geny-executor.git
449
+ cd geny-executor
450
+
451
+ pip install -e ".[dev]"
452
+
453
+ pytest # full suite (~30s, 3100+ tests)
454
+ pytest tests/contract/test_error_codes_stability.py # error code stability check
455
+ pytest --cov=geny_executor --cov-report=term-missing # coverage
456
+
457
+ ruff check src/ tests/
458
+ ruff format src/ tests/
459
+ ```
460
+
461
+ ---
462
+
463
+ ## Versioning
464
+
465
+ | Version | Highlights |
466
+ |---|---|
467
+ | **2.1.0** | `ExecutorErrorCode` taxonomy + structured `pipeline.error` / `stage.error` / `api.retry` payloads. `docs/error_codes.md`. |
468
+ | **2.0.6** | Removed `copilot_cli` provider (text-only, can't host tool round-trip). Upstreamed Geny's claude_code_cli compat patches (`--verbose` injection, `--bare` strip, drop auto-`--tools ""`, `tool_use` strip from finalize). |
469
+ | **2.0.5** | `APIRequest.mcp_config` per-request override + auto-emit `--strict-mcp-config`. Foundational support for the host MCP wrap. |
470
+ | **2.0.0** | Provider abstraction (`ClientRegistry`, `CredentialBundle`). Manifest single source of truth for Stage 6 provider. |
471
+ | **1.x** | Original 16-stage pipeline; Anthropic-only. |
472
+
473
+ See [CHANGELOG](https://github.com/CocoRoF/geny-executor/releases) for the full history.
474
+
475
+ ---
476
+
477
+ ## License
478
+
479
+ MIT — see [LICENSE](LICENSE).
480
+
481
+ ---
482
+
483
+ ## Related projects
484
+
485
+ - [Anthropic SDK](https://github.com/anthropics/anthropic-sdk-python)
486
+ - [OpenAI SDK](https://github.com/openai/openai-python)
487
+ - [Google GenAI SDK](https://github.com/googleapis/python-genai)
488
+ - [vLLM](https://github.com/vllm-project/vllm)
489
+ - [Claude Code CLI](https://docs.anthropic.com/claude/code/) — geny-executor hosts it via `claude_code_cli` provider
490
+ - [MCP](https://modelcontextprotocol.io/) — Model Context Protocol; both host-attached servers and per-session CLI wraps are first-class
491
+ - [Geny](https://github.com/CocoRoF/Geny) — Multi-agent platform built on geny-executor