geny-executor 2.0.3__tar.gz → 2.0.5__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.
- {geny_executor-2.0.3 → geny_executor-2.0.5}/PKG-INFO +1 -1
- {geny_executor-2.0.3 → geny_executor-2.0.5}/pyproject.toml +1 -1
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/__init__.py +1 -1
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/translators/_cli.py +168 -22
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/types.py +12 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/unit/test_translators_cli_claude_code.py +135 -4
- {geny_executor-2.0.3 → geny_executor-2.0.5}/.gitignore +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/LICENSE +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/README.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/README_ko.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/channels/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/channels/send_message_channel.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/channels/user_file_channel.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/artifact.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/builder.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/config.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/diff.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/environment.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/errors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/introspection.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/mutation.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/pipeline.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/presets.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/result.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/schema.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/shared_keys.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/slot.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/snapshot.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/core/state.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/cron/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/cron/runner.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/cron/store_abc.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/cron/store_impl/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/cron/store_impl/file_backed.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/cron/store_impl/in_memory.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/cron/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/events/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/events/bus.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/events/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/history/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/history/ab_test.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/history/cost.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/history/models.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/history/monitor.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/history/replay.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/history/service.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/hooks/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/hooks/config.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/hooks/events.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/hooks/runner.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/_cli_runtime.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/anthropic.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/base.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/claude_code.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/copilot.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/credentials.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/google.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/openai.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/translators/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/translators/_canonical.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/vllm.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/_locks.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/_progressive.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/composite/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/composite/handles.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/composite/provider.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/composite/routing.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/composite/snapshot.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/embedding/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/embedding/client.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/embedding/google.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/embedding/local.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/embedding/openai.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/embedding/registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/embedding/voyage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/factory.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/presets.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/provider.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/ephemeral.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/config.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/frontmatter.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/index_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/layout.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/ltm_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/notes_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/provider.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/snapshot.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/stm_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/timezone.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/vector_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/config.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/connection.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/index_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/ltm_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/notes_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/provider.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/schema.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/snapshot.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/stm_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/sql/vector_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/retriever.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/strategy.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/notifications/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/notifications/registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/permission/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/permission/loader.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/permission/matrix.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/permission/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/py.typed +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/runtime/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/runtime/task_executors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/runtime/task_runner.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/security/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/security/import_validator.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/security/script_sandbox.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/session/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/session/freshness.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/session/manager.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/session/persistence.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/session/session.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/settings/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/settings/loader.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/settings/section_registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/bundled/batch/SKILL.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/bundled/debug/SKILL.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/bundled/loop/SKILL.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/bundled/lorem-ipsum/SKILL.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/bundled/simplify/SKILL.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/bundled/skillify/SKILL.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/bundled/stuck/SKILL.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/bundled/verify/SKILL.md +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/bundled_skills.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/fork.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/frontmatter.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/loader.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/mcp_bridge.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/path_match.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/shell_blocks.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/skill_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/skills/watcher.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/_helpers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/cancel.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/clear.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/compact.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/config.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/context.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/cost.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/help.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/memory.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/model.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/preset_info.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/status.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/built_in/tasks.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/md_template.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/parser.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/slash_commands/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/artifact/default/normalizers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/artifact/default/validators.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/normalizers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s01_input/validators.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/artifact/default/compactors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/artifact/default/retrievers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/artifact/default/strategies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/compactors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/retrievers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/strategies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s02_context/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/artifact/default/builders.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/builders.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/persona/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/persona/builder.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/persona/provider.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s03_system/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s04_guard/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s04_guard/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s04_guard/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s04_guard/artifact/default/guards.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s04_guard/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s04_guard/guards.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s04_guard/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s04_guard/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s04_guard/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s05_cache/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s05_cache/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s05_cache/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s05_cache/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s05_cache/artifact/default/strategies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s05_cache/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s05_cache/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s05_cache/strategies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/_translate.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/default/providers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/default/retry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/default/router.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/google/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/google/providers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/openai/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/artifact/openai/providers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/providers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/retry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s06_api/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/artifact/default/pricing.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/artifact/default/trackers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/pricing.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s07_token/trackers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s08_think/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s08_think/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s08_think/artifact/default/budget.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s08_think/artifact/default/processors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s08_think/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s08_think/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s08_think/processors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s08_think/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s08_think/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/artifact/default/parsers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/artifact/default/signals.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/parsers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/signals.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s09_parse/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/artifact/default/executors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/artifact/default/routers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/executors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/persistence.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/routers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/state_mutation.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s10_tool/streaming.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s11_tool_review/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s11_tool_review/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s11_tool_review/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s11_tool_review/artifact/default/reviewers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s11_tool_review/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s11_tool_review/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/artifact/default/orchestrators.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/orchestrators.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/subagent_type.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s12_agent/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s13_task_registry/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s13_task_registry/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s13_task_registry/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s13_task_registry/artifact/default/file_backed_registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s13_task_registry/artifact/default/policies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s13_task_registry/artifact/default/registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s13_task_registry/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s13_task_registry/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s13_task_registry/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/strategy.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/artifact/default/strategies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/strategies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s14_evaluate/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s15_hitl/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s15_hitl/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s15_hitl/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s15_hitl/artifact/default/requesters.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s15_hitl/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s15_hitl/artifact/default/timeouts.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s15_hitl/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s15_hitl/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s16_loop/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s16_loop/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s16_loop/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s16_loop/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s16_loop/controllers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s16_loop/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s16_loop/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s17_emit/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s17_emit/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s17_emit/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s17_emit/artifact/default/emitters.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s17_emit/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s17_emit/emitters.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s17_emit/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s17_emit/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s17_emit/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/_dehydrate.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/artifact/default/persistence.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/artifact/default/strategies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/insight.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/persistence.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s18_memory/strategies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s19_summarize/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s19_summarize/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s19_summarize/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s19_summarize/artifact/default/importance.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s19_summarize/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s19_summarize/artifact/default/summarizers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s19_summarize/frequency_policy.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s19_summarize/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s19_summarize/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s20_persist/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s20_persist/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s20_persist/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s20_persist/artifact/default/frequencies.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s20_persist/artifact/default/persisters.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s20_persist/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s20_persist/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s20_persist/restore.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s20_persist/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s21_yield/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s21_yield/artifact/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s21_yield/artifact/default/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s21_yield/artifact/default/formatters.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s21_yield/artifact/default/multi_format.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s21_yield/artifact/default/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s21_yield/formatters.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s21_yield/interface.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/stages/s21_yield/stage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/adhoc.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/base.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/_path_guard.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/agent_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/ask_user_question_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/bash_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/cron_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/dev_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/edit_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/glob_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/grep_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/mcp_wrapper_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/notebook_edit_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/operator_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/plan_mode_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/push_notification_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/read_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/send_message_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/task_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/todo_write_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/tool_search_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/web_fetch_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/web_search_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/worktree_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/built_in/write_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/composer.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/errors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/mcp/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/mcp/adapter.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/mcp/credentials.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/mcp/errors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/mcp/manager.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/mcp/oauth.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/mcp/state.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/mcp/uri.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/provider.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/providers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/sandbox.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/scope.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/tools/stage_binding.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/workspace/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/workspace/stack.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/workspace/types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/_fixtures/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/_fixtures/fake_claude.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/_fixtures/fake_echo_cli.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/_fixtures/fake_gh.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/conftest.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/fixtures/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/fixtures/adapter/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/fixtures/adapter/adapter.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/test_c1_six_layer_retrieval.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/test_c2_execution_recording.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/test_c3_reflection_and_promotion.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/test_c4_rest_coverage.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/test_c5_embedding_migration.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/test_c6_session_resume.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/test_c7_adapter_parity.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/completeness/test_spec_loads.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/memory_provider_contract.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_embedding_clients.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_auto_vector.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_composite.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_composite_routing.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_curated_global.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_ephemeral.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_factory.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_file.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_file_layout.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_file_vector.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_sql.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_sql_dialect.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_sql_schema.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_memory_provider_sql_vector.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/contract/test_stage_uniformity.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/integration/test_cycle_ab_cross_import.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/integration/test_integration.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/conformance/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/conformance/harness.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/conformance/test_anthropic.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/conformance/test_claude_code_cli.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/conformance/test_copilot_cli.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/conformance/test_google.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/conformance/test_openai.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/conformance/test_vllm.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/unit/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/unit/test_claude_code.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/unit/test_cli_runtime.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/unit/test_copilot.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/llm_client/unit/test_credentials.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/__init__.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_adaptive_model_router.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_adaptive_thinking_budget.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_adhoc_providers.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_agent_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_artifact_metadata.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_ask_user_question_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_binary_classify_manifest.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_built_in_autoregister.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_builtin_capabilities.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_builtin_features.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_composite_set_hooks.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_cron_runner.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_cron_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_cron_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_dev_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_dynamic_persona_builder.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_errors_categories.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_evaluation_chain.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_fork_multi_provider.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_hierarchical_sidecars.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_hook_in_process.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_hook_runner.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_hooks_and_shared_keys.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_index_list_categories.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_index_render_vault_map.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_interaction_fields.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_introspection.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_llm_client_base.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_llm_client_capabilities.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_llm_client_registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_llm_client_request_types.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_llm_client_state.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_llm_summary_compactor.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_loop_agnostic_lock.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_manifest_provider_validation.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_manifest_v2.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_manifest_v3_migration.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_annotations_attach.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_credential_store.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_fsm.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_lifecycle.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_namespace.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_oauth.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_prompts_skills_bridge.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_resource_retriever.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_uri.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_mcp_wrapper_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_memory_aware_retriever.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_memory_hooks_after_callbacks.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_memory_metadata_extension.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_multi_dim_budget_controller.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_multi_format_yield.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_multi_provider.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_multimodal.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_note_graph_queries.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_notebook_edit_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_notes_load_pinned.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_operator_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_ordered_emitter_chain.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_permission_matrix.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_permission_mode_promotions.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase1_foundation.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase1_pipeline.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase2_agent_loop.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase2_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase3_context_memory.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase4_think_agent_evaluate.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase5_emit_presets_mcp.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase5_environment.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase6_history.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase6_integration.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase7_security.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase9a_preset_regen.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_phase9a_scaffolding.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_pipeline_attach_runtime.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_pipeline_from_manifest.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_pipeline_session_runtime.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_plan_mode_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_progressive_disclosure.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_provider_driven_strategy.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_push_notification_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_refresh_backlinks_extension.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_resolve_model_config.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_runtime_task_runner.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s06_provider_selection.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s13_file_backed_registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s13_task_registry_output.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s19_frequency_policy.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s9b1_tool_review.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s9b2_task_registry.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s9b3_hitl.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s9b4_summarize.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s9b5_persist.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s9c1_pipeline_resume.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_s9c2_restore_state.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_send_message_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_settings_loader.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skill_phase_10_1.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skill_phase_10_2.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skill_phase_10_3.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skill_phase_10_4_bundled.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skill_phase_10_5_fork.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skill_phase_10_6_killer.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skill_phase_10_7_watcher.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skill_richer_schema.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skill_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_skills_foundation.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_slash_built_in_control.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_slash_built_in_introspection.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_slash_commands.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_slash_md_template.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_stage10_hook_wiring.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_stage10_partition_executor.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_stage10_permission_matrix.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_stage19_session_summary.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_state_mutation_wiring.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_state_shared_and_local.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_stm_append_event.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_streaming_tool_executor.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_structured_output_parser.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_structured_reflection.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_subagent_credential_propagation.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_subagent_descriptor.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_subagent_orchestrator_zero_arg.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_subagent_parallel.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_subagent_type_orchestrator.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_task_tools.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_todo_write_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_tool_abc_uplift.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_tool_call_events.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_tool_errors.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_tool_lifecycle_hooks.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_tool_provider.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_tool_result_persistence.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_tool_search_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_tool_stage_max_concurrency.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_web_fetch_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_web_search_tool.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_workspace.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_workspace_propagation.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_workspace_tools_integration.py +0 -0
- {geny_executor-2.0.3 → geny_executor-2.0.5}/tests/unit/test_worktree_tools.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: geny-executor
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.5
|
|
4
4
|
Summary: Harness-engineered agent pipeline library with 21-stage dual-abstraction architecture, built on the Anthropic API
|
|
5
5
|
Project-URL: Homepage, https://github.com/CocoRoF/geny-executor
|
|
6
6
|
Project-URL: Repository, https://github.com/CocoRoF/geny-executor
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "geny-executor"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.5"
|
|
8
8
|
description = "Harness-engineered agent pipeline library with 21-stage dual-abstraction architecture, built on the Anthropic API"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
{geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/translators/_cli.py
RENAMED
|
@@ -139,12 +139,40 @@ def claude_code_argv(
|
|
|
139
139
|
if settings_path:
|
|
140
140
|
argv += ["--settings", settings_path]
|
|
141
141
|
|
|
142
|
-
# MCP config
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
142
|
+
# MCP config — precedence:
|
|
143
|
+
# 1. ``request.mcp_config`` (per-request, set by host for
|
|
144
|
+
# session-scoped MCP wraps). Phase I: Geny synthesizes a
|
|
145
|
+
# per-session MCP config that bridges its tool registry to
|
|
146
|
+
# the CLI so the LLM can call host tools via MCP.
|
|
147
|
+
# 2. ``mcp_config`` constructor kwarg (legacy per-client static
|
|
148
|
+
# config from the LLM-backends settings card).
|
|
149
|
+
# Both flow to ``--mcp-config <json|path>``.
|
|
150
|
+
effective_mcp_config: Any = (
|
|
151
|
+
request.mcp_config if request.mcp_config is not None else mcp_config
|
|
152
|
+
)
|
|
153
|
+
has_host_mcp = bool(effective_mcp_config)
|
|
154
|
+
if has_host_mcp:
|
|
155
|
+
if isinstance(effective_mcp_config, str):
|
|
156
|
+
argv += ["--mcp-config", effective_mcp_config]
|
|
146
157
|
else:
|
|
147
|
-
argv += [
|
|
158
|
+
argv += [
|
|
159
|
+
"--mcp-config",
|
|
160
|
+
json.dumps(effective_mcp_config, ensure_ascii=False),
|
|
161
|
+
]
|
|
162
|
+
# When the host exposes its own tool surface via MCP, disable
|
|
163
|
+
# the CLI's built-in tool palette so the LLM cannot hallucinate
|
|
164
|
+
# against ``Bash`` / ``Read`` / ``ToolSearch`` / etc. The CLI's
|
|
165
|
+
# ``--tools ""`` literal disables the entire built-in set per
|
|
166
|
+
# ``claude --help``. Caller-supplied ``allow_tools`` /
|
|
167
|
+
# ``disallow_tools`` (legacy CLI-built-in filters) are also
|
|
168
|
+
# forwarded earlier so a host that wants a mixed surface — MCP
|
|
169
|
+
# tools + a curated subset of CLI built-ins — can opt back in.
|
|
170
|
+
# ``--strict-mcp-config`` ignores any other MCP config sources
|
|
171
|
+
# (user-level / project-level) so the per-session bridge is
|
|
172
|
+
# the sole MCP surface the CLI sees.
|
|
173
|
+
if not allow_tools:
|
|
174
|
+
argv += ["--tools", ""]
|
|
175
|
+
argv += ["--strict-mcp-config"]
|
|
148
176
|
|
|
149
177
|
# JSON schema (structured output).
|
|
150
178
|
if request.response_format:
|
|
@@ -173,29 +201,147 @@ def claude_code_argv(
|
|
|
173
201
|
# ---------------------------------------------------------------------------
|
|
174
202
|
|
|
175
203
|
|
|
176
|
-
def
|
|
177
|
-
"""Render
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
204
|
+
def _render_block_for_history(block: Any) -> str:
|
|
205
|
+
"""Render one Anthropic-style content block as readable text.
|
|
206
|
+
|
|
207
|
+
Used by ``build_stream_json_stdin`` when collapsing multi-turn
|
|
208
|
+
history into a single synthetic user envelope. Preserves enough
|
|
209
|
+
fidelity (tool name + input, tool result text) for the LLM to
|
|
210
|
+
reconstruct the conversation, while dropping shapes the CLI
|
|
211
|
+
cannot ingest (thinking blocks, images→placeholder)."""
|
|
212
|
+
if isinstance(block, str):
|
|
213
|
+
return block
|
|
214
|
+
if not isinstance(block, dict):
|
|
215
|
+
return str(block)
|
|
216
|
+
btype = str(block.get("type", ""))
|
|
217
|
+
if btype == "text":
|
|
218
|
+
return str(block.get("text", ""))
|
|
219
|
+
if btype == "thinking":
|
|
220
|
+
# Thinking traces from a prior provider don't replay on the
|
|
221
|
+
# CLI — drop them. The CLI does its own ``--effort`` thinking
|
|
222
|
+
# on the new turn.
|
|
223
|
+
return ""
|
|
224
|
+
if btype == "tool_use":
|
|
225
|
+
name = block.get("name", "tool")
|
|
226
|
+
try:
|
|
227
|
+
input_json = json.dumps(
|
|
228
|
+
block.get("input") or {}, ensure_ascii=False,
|
|
229
|
+
)
|
|
230
|
+
except (TypeError, ValueError):
|
|
231
|
+
input_json = str(block.get("input"))
|
|
232
|
+
return f"[Tool call: {name}({input_json})]"
|
|
233
|
+
if btype == "tool_result":
|
|
234
|
+
body = block.get("content")
|
|
235
|
+
if isinstance(body, list):
|
|
236
|
+
body = "\n".join(
|
|
237
|
+
_render_block_for_history(b) for b in body
|
|
238
|
+
).strip()
|
|
239
|
+
elif body is None:
|
|
240
|
+
body = ""
|
|
241
|
+
is_error = bool(block.get("is_error"))
|
|
242
|
+
tag = "Tool error" if is_error else "Tool result"
|
|
243
|
+
return f"[{tag}] {body}"
|
|
244
|
+
if btype == "image":
|
|
245
|
+
return "[image attachment]"
|
|
246
|
+
return ""
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
def _render_content_for_history(content: Any) -> str:
|
|
250
|
+
"""Flatten a canonical ``content`` field (string or block list)
|
|
251
|
+
into one display-ready text run for history-preamble use."""
|
|
252
|
+
if isinstance(content, str):
|
|
253
|
+
return content
|
|
254
|
+
if isinstance(content, list):
|
|
255
|
+
rendered = [
|
|
256
|
+
_render_block_for_history(b) for b in content
|
|
257
|
+
]
|
|
258
|
+
return "\n".join(s for s in rendered if s).strip()
|
|
259
|
+
return str(content)
|
|
181
260
|
|
|
182
|
-
{"type": "user", "message": {"role": "user", "content": [...]}}
|
|
183
261
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
262
|
+
def build_stream_json_stdin(messages: List[Dict[str, Any]]) -> bytes:
|
|
263
|
+
"""Render canonical Anthropic-style messages as Claude Code
|
|
264
|
+
stream-json stdin — **always as a single ``type:user`` envelope**.
|
|
265
|
+
|
|
266
|
+
Claude Code CLI's ``--input-format stream-json`` strictly requires
|
|
267
|
+
each envelope's ``message.role`` to be ``"user"``. The previous
|
|
268
|
+
implementation forwarded the canonical role through (assistant /
|
|
269
|
+
tool turns embedded in ``type:user`` envelopes with their original
|
|
270
|
+
role kept) which the CLI rejects with::
|
|
271
|
+
|
|
272
|
+
Error: Expected message role 'user', got 'assistant'
|
|
273
|
+
|
|
274
|
+
For multi-turn pipelines (Geny's s06_api accumulates conversation
|
|
275
|
+
history across loop iterations) we collapse the whole history into
|
|
276
|
+
a single synthetic user envelope:
|
|
277
|
+
|
|
278
|
+
- The latest user message becomes the bulk of the prompt.
|
|
279
|
+
- All prior turns are rendered as a markdown preamble
|
|
280
|
+
(``### User`` / ``### Assistant`` / tool calls + results).
|
|
281
|
+
- The CLI receives one cohesive single-turn prompt with all
|
|
282
|
+
relevant context — same input contract whether the host is
|
|
283
|
+
running Geny's iterative loop or sending a one-shot query.
|
|
284
|
+
|
|
285
|
+
The single-turn fast-path (one user message only) emits the
|
|
286
|
+
canonical envelope unchanged so simple invocations stay byte-for-
|
|
287
|
+
byte identical to the legacy path.
|
|
187
288
|
"""
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
289
|
+
if not messages:
|
|
290
|
+
return b""
|
|
291
|
+
|
|
292
|
+
# Single-turn fast path — preserve the canonical envelope shape.
|
|
293
|
+
if len(messages) == 1 and str(messages[0].get("role", "")) == "user":
|
|
192
294
|
envelope = {
|
|
193
295
|
"type": "user",
|
|
194
|
-
"message": {"role":
|
|
296
|
+
"message": {"role": "user", "content": messages[0].get("content", "")},
|
|
195
297
|
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
298
|
+
return (json.dumps(envelope, ensure_ascii=False) + "\n").encode("utf-8")
|
|
299
|
+
|
|
300
|
+
# Multi-turn: flatten into a single synthetic user message. The
|
|
301
|
+
# CLI's ``--bare`` mode treats this as a regular prompt; the LLM
|
|
302
|
+
# reconstructs the conversation from the markdown structure.
|
|
303
|
+
parts: List[str] = []
|
|
304
|
+
last_user_idx = -1
|
|
305
|
+
for i, m in enumerate(messages):
|
|
306
|
+
if str(m.get("role", "")) == "user":
|
|
307
|
+
last_user_idx = i
|
|
308
|
+
|
|
309
|
+
for i, m in enumerate(messages):
|
|
310
|
+
role = str(m.get("role", "user"))
|
|
311
|
+
text = _render_content_for_history(m.get("content", ""))
|
|
312
|
+
if not text and role != "assistant":
|
|
313
|
+
continue
|
|
314
|
+
if role == "user":
|
|
315
|
+
# The final user turn is the "current input" — render it
|
|
316
|
+
# without a header so it reads as the actual question.
|
|
317
|
+
if i == last_user_idx:
|
|
318
|
+
parts.append(text)
|
|
319
|
+
else:
|
|
320
|
+
parts.append(f"### User\n{text}")
|
|
321
|
+
elif role == "assistant":
|
|
322
|
+
if text:
|
|
323
|
+
parts.append(f"### Assistant\n{text}")
|
|
324
|
+
elif role == "tool":
|
|
325
|
+
parts.append(f"### Tool result\n{text}")
|
|
326
|
+
else:
|
|
327
|
+
parts.append(f"### {role.capitalize()}\n{text}")
|
|
328
|
+
|
|
329
|
+
preamble = ""
|
|
330
|
+
current_input = parts[-1] if parts else ""
|
|
331
|
+
if len(parts) > 1:
|
|
332
|
+
preamble_parts = parts[:-1]
|
|
333
|
+
preamble = (
|
|
334
|
+
"## Conversation so far\n\n"
|
|
335
|
+
+ "\n\n".join(preamble_parts)
|
|
336
|
+
+ "\n\n## Current input\n"
|
|
337
|
+
)
|
|
338
|
+
|
|
339
|
+
flat = (preamble + current_input).strip()
|
|
340
|
+
envelope = {
|
|
341
|
+
"type": "user",
|
|
342
|
+
"message": {"role": "user", "content": flat},
|
|
343
|
+
}
|
|
344
|
+
return (json.dumps(envelope, ensure_ascii=False) + "\n").encode("utf-8")
|
|
199
345
|
|
|
200
346
|
|
|
201
347
|
# ---------------------------------------------------------------------------
|
|
@@ -42,6 +42,18 @@ class APIRequest:
|
|
|
42
42
|
#: {"session_id": "...", "resume": bool}
|
|
43
43
|
session_hint: Optional[Dict[str, Any]] = None
|
|
44
44
|
|
|
45
|
+
#: Per-request MCP server configuration. CLI-based backends
|
|
46
|
+
#: (claude_code_cli) serialize this to ``--mcp-config <json>``;
|
|
47
|
+
#: SDK-based backends ignore it. Hosts use this to surface their
|
|
48
|
+
#: tool registry to the CLI's LLM without going through the
|
|
49
|
+
#: cumbersome per-client static ``mcp_config_path``. Shape::
|
|
50
|
+
#:
|
|
51
|
+
#: {"mcpServers": {"<name>": {"type": "stdio",
|
|
52
|
+
#: "command": "...",
|
|
53
|
+
#: "args": [...],
|
|
54
|
+
#: "env": {...}}}}
|
|
55
|
+
mcp_config: Optional[Dict[str, Any]] = None
|
|
56
|
+
|
|
45
57
|
metadata: Optional[Dict[str, Any]] = None
|
|
46
58
|
|
|
47
59
|
|
|
@@ -137,6 +137,57 @@ def test_argv_mcp_config_path_passed_through() -> None:
|
|
|
137
137
|
assert blob == "/tmp/mcp.json"
|
|
138
138
|
|
|
139
139
|
|
|
140
|
+
def test_argv_request_mcp_config_overrides_kwarg() -> None:
|
|
141
|
+
"""``APIRequest.mcp_config`` (per-request) wins over the
|
|
142
|
+
constructor kwarg (per-client static). Phase I uses this to
|
|
143
|
+
inject the per-session Geny tools bridge alongside any
|
|
144
|
+
settings-card-configured MCP servers."""
|
|
145
|
+
per_request = {"mcpServers": {"geny": {"type": "stdio", "command": "py"}}}
|
|
146
|
+
per_client = {"mcpServers": {"legacy": {"command": "x"}}}
|
|
147
|
+
argv = claude_code_argv(_req(mcp_config=per_request), mcp_config=per_client)
|
|
148
|
+
blob = argv[argv.index("--mcp-config") + 1]
|
|
149
|
+
assert json.loads(blob) == per_request # per-request wins
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
def test_argv_host_mcp_disables_cli_builtins_and_strict() -> None:
|
|
153
|
+
"""When the host registers MCP servers, the CLI's built-in tool
|
|
154
|
+
palette is disabled (``--tools ""``) so the LLM only ever sees
|
|
155
|
+
MCP-advertised tools. ``--strict-mcp-config`` ignores any other
|
|
156
|
+
MCP configuration sources so the per-session bridge is the sole
|
|
157
|
+
surface. Together these eliminate the hallucination path where
|
|
158
|
+
the LLM tries to use ``Bash``/``ToolSearch``/etc. that the host
|
|
159
|
+
has no executor for."""
|
|
160
|
+
cfg = {"mcpServers": {"geny": {"type": "stdio", "command": "py"}}}
|
|
161
|
+
argv = claude_code_argv(_req(mcp_config=cfg))
|
|
162
|
+
# Disable built-ins.
|
|
163
|
+
idx = argv.index("--tools")
|
|
164
|
+
assert argv[idx + 1] == ""
|
|
165
|
+
# Strict mode.
|
|
166
|
+
assert "--strict-mcp-config" in argv
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
def test_argv_host_mcp_with_explicit_allow_tools_keeps_builtins() -> None:
|
|
170
|
+
"""``--allowedTools`` is the legacy whitelist of CLI built-ins.
|
|
171
|
+
If a caller explicitly supplies one alongside an MCP config they
|
|
172
|
+
want a mixed surface (custom MCP tools + a curated subset of CLI
|
|
173
|
+
built-ins). Don't override their choice."""
|
|
174
|
+
cfg = {"mcpServers": {"geny": {"type": "stdio", "command": "py"}}}
|
|
175
|
+
argv = claude_code_argv(_req(mcp_config=cfg), allow_tools=["Read"])
|
|
176
|
+
# No --tools "" disabler — caller picked allowedTools explicitly.
|
|
177
|
+
assert "--tools" not in argv
|
|
178
|
+
assert "--allowedTools" in argv
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
def test_argv_no_mcp_no_tools_flag() -> None:
|
|
182
|
+
"""Legacy callers without any MCP config keep today's behaviour:
|
|
183
|
+
CLI built-ins available, no ``--tools ""`` disable, no
|
|
184
|
+
``--strict-mcp-config``."""
|
|
185
|
+
argv = claude_code_argv(_req())
|
|
186
|
+
assert "--tools" not in argv
|
|
187
|
+
assert "--strict-mcp-config" not in argv
|
|
188
|
+
assert "--mcp-config" not in argv
|
|
189
|
+
|
|
190
|
+
|
|
140
191
|
def test_argv_response_format_json_schema_emits_flag() -> None:
|
|
141
192
|
schema = {"type": "object", "properties": {"x": {"type": "string"}}}
|
|
142
193
|
argv = claude_code_argv(
|
|
@@ -189,17 +240,97 @@ def test_stdin_envelope_one_user_message() -> None:
|
|
|
189
240
|
]
|
|
190
241
|
|
|
191
242
|
|
|
192
|
-
def
|
|
243
|
+
def test_stdin_envelope_multi_turn_always_user_role() -> None:
|
|
244
|
+
"""Regression: every envelope's ``message.role`` MUST be ``"user"``.
|
|
245
|
+
|
|
246
|
+
Claude Code CLI 2.x rejects ``type:user`` envelopes that carry an
|
|
247
|
+
embedded ``message.role: assistant`` with::
|
|
248
|
+
|
|
249
|
+
Error: Expected message role 'user', got 'assistant'
|
|
250
|
+
|
|
251
|
+
The pre-fix builder forwarded canonical roles through and broke
|
|
252
|
+
every multi-turn iteration of an env that pinned ``claude_code_cli``
|
|
253
|
+
as the Stage 6 provider.
|
|
254
|
+
"""
|
|
193
255
|
out = build_stream_json_stdin([
|
|
194
256
|
{"role": "user", "content": "q1"},
|
|
195
257
|
{"role": "assistant", "content": "a1"},
|
|
196
258
|
{"role": "user", "content": [{"type": "tool_result", "content": "ok"}]},
|
|
197
259
|
])
|
|
198
260
|
envs = [json.loads(l) for l in out.strip().split(b"\n")]
|
|
261
|
+
# ONE synthetic envelope — multi-turn collapses to a single user
|
|
262
|
+
# message; the CLI reconstructs the conversation from its content.
|
|
263
|
+
assert len(envs) == 1
|
|
264
|
+
assert envs[0]["type"] == "user"
|
|
199
265
|
assert envs[0]["message"]["role"] == "user"
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
def test_stdin_envelope_multi_turn_preserves_history_in_content() -> None:
|
|
269
|
+
"""The collapsed envelope must carry enough fidelity that the LLM
|
|
270
|
+
can reconstruct the prior conversation: text turns, tool calls
|
|
271
|
+
(name + input), and tool results all show up in the flattened
|
|
272
|
+
content under markdown headers."""
|
|
273
|
+
out = build_stream_json_stdin([
|
|
274
|
+
{"role": "user", "content": "find the README"},
|
|
275
|
+
{
|
|
276
|
+
"role": "assistant",
|
|
277
|
+
"content": [
|
|
278
|
+
{"type": "text", "text": "Let me check."},
|
|
279
|
+
{
|
|
280
|
+
"type": "tool_use",
|
|
281
|
+
"id": "tu_1",
|
|
282
|
+
"name": "Read",
|
|
283
|
+
"input": {"path": "/repo/README.md"},
|
|
284
|
+
},
|
|
285
|
+
],
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"role": "user",
|
|
289
|
+
"content": [
|
|
290
|
+
{"type": "tool_result", "tool_use_id": "tu_1", "content": "# Hello"},
|
|
291
|
+
],
|
|
292
|
+
},
|
|
293
|
+
{"role": "user", "content": "summarize it"},
|
|
294
|
+
])
|
|
295
|
+
env = json.loads(out.strip())
|
|
296
|
+
text = env["message"]["content"]
|
|
297
|
+
assert "## Conversation so far" in text
|
|
298
|
+
assert "find the README" in text
|
|
299
|
+
assert "[Tool call: Read({" in text
|
|
300
|
+
assert "/repo/README.md" in text
|
|
301
|
+
assert "[Tool result] # Hello" in text
|
|
302
|
+
# The final user turn ("summarize it") is the "current input" and
|
|
303
|
+
# appears under "## Current input" without the per-turn header.
|
|
304
|
+
assert "## Current input" in text
|
|
305
|
+
assert text.rstrip().endswith("summarize it")
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
def test_stdin_envelope_drops_thinking_and_handles_tool_errors() -> None:
|
|
309
|
+
"""Thinking blocks from a prior provider don't replay on the CLI
|
|
310
|
+
— drop them. ``is_error: True`` tool_results render under a
|
|
311
|
+
"Tool error" tag so the LLM sees the failure semantics."""
|
|
312
|
+
out = build_stream_json_stdin([
|
|
313
|
+
{"role": "user", "content": "do X"},
|
|
314
|
+
{
|
|
315
|
+
"role": "assistant",
|
|
316
|
+
"content": [
|
|
317
|
+
{"type": "thinking", "thinking": "secret reasoning"},
|
|
318
|
+
{"type": "text", "text": "trying X..."},
|
|
319
|
+
{"type": "tool_use", "id": "t1", "name": "Bash", "input": {"cmd": "x"}},
|
|
320
|
+
],
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"role": "user",
|
|
324
|
+
"content": [
|
|
325
|
+
{"type": "tool_result", "tool_use_id": "t1", "is_error": True, "content": "command failed"},
|
|
326
|
+
],
|
|
327
|
+
},
|
|
328
|
+
])
|
|
329
|
+
env = json.loads(out.strip())
|
|
330
|
+
text = env["message"]["content"]
|
|
331
|
+
assert "secret reasoning" not in text # thinking dropped
|
|
332
|
+
assert "trying X..." in text
|
|
333
|
+
assert "[Tool error] command failed" in text
|
|
203
334
|
|
|
204
335
|
|
|
205
336
|
def test_stdin_empty_messages_returns_empty_bytes() -> None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/channels/send_message_channel.py
RENAMED
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
{geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/cron/store_impl/file_backed.py
RENAMED
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/translators/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/llm_client/translators/_canonical.py
RENAMED
|
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
|
|
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
|
{geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/config.py
RENAMED
|
File without changes
|
{geny_executor-2.0.3 → geny_executor-2.0.5}/src/geny_executor/memory/providers/file/frontmatter.py
RENAMED
|
File without changes
|