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.
- geny_executor-2.1.2/PKG-INFO +491 -0
- geny_executor-2.1.2/README.md +447 -0
- geny_executor-2.1.2/README_ko.md +447 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/pyproject.toml +1 -1
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/__init__.py +1 -1
- geny_executor-2.1.2/src/geny_executor/llm_client/anthropic.py +449 -0
- geny_executor-2.1.2/tests/llm_client/unit/test_anthropic_build_kwargs.py +321 -0
- geny_executor-2.1.0/PKG-INFO +0 -599
- geny_executor-2.1.0/README.md +0 -555
- geny_executor-2.1.0/README_ko.md +0 -555
- geny_executor-2.1.0/src/geny_executor/llm_client/anthropic.py +0 -232
- {geny_executor-2.1.0 → geny_executor-2.1.2}/.gitignore +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/LICENSE +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/channels/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/channels/send_message_channel.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/channels/user_file_channel.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/artifact.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/builder.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/config.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/diff.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/environment.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/errors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/introspection.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/mutation.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/pipeline.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/presets.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/result.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/schema.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/shared_keys.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/slot.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/snapshot.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/core/state.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/runner.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/store_abc.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/store_impl/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/store_impl/file_backed.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/store_impl/in_memory.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/cron/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/events/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/events/bus.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/events/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/ab_test.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/cost.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/models.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/monitor.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/replay.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/history/service.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/hooks/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/hooks/config.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/hooks/events.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/hooks/runner.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/_cli_runtime.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/base.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/claude_code.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/credentials.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/google.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/openai.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/_canonical.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/_cli.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/llm_client/vllm.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/_locks.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/_progressive.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/handles.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/provider.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/routing.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/composite/snapshot.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/client.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/google.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/local.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/openai.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/voyage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/factory.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/presets.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/provider.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/ephemeral.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/config.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/frontmatter.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/index_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/layout.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/ltm_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/notes_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/provider.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/snapshot.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/stm_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/timezone.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/vector_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/config.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/connection.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/index_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/ltm_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/notes_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/provider.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/schema.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/snapshot.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/stm_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/vector_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/retriever.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/memory/strategy.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/notifications/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/notifications/registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/permission/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/permission/loader.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/permission/matrix.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/permission/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/py.typed +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/runtime/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/runtime/task_executors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/runtime/task_runner.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/security/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/security/import_validator.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/security/script_sandbox.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/freshness.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/manager.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/persistence.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/session/session.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/settings/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/settings/loader.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/settings/section_registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/batch/SKILL.md +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/debug/SKILL.md +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/loop/SKILL.md +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/lorem-ipsum/SKILL.md +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/simplify/SKILL.md +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/skillify/SKILL.md +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/stuck/SKILL.md +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/verify/SKILL.md +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/bundled_skills.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/fork.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/frontmatter.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/loader.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/mcp_bridge.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/path_match.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/shell_blocks.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/skill_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/skills/watcher.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/_helpers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/cancel.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/clear.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/compact.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/config.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/context.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/cost.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/help.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/memory.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/model.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/preset_info.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/status.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/tasks.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/md_template.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/parser.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/slash_commands/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/normalizers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/validators.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/normalizers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/validators.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/compactors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/retrievers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/compactors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/retrievers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/strategies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/default/builders.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/builders.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/persona/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/persona/builder.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/persona/provider.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/default/guards.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/guards.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/strategies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/_translate.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/providers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/retry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/router.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/google/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/google/providers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/openai/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/openai/providers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/providers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/retry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/pricing.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/trackers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/pricing.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/trackers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/budget.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/processors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/processors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/parsers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/signals.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/parsers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/signals.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/executors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/routers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/executors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/persistence.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/routers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/state_mutation.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/streaming.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/default/reviewers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/default/orchestrators.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/orchestrators.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/subagent_type.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/__init__.py +0 -0
- {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
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/policies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/strategy.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/strategies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/requesters.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/timeouts.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/controllers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/default/emitters.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/emitters.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/_dehydrate.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/persistence.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/insight.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/persistence.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/strategies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/importance.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/summarizers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/frequency_policy.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/frequencies.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/persisters.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/restore.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/formatters.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/multi_format.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/formatters.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/interface.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/stage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/adhoc.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/base.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/_path_guard.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/agent_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/ask_user_question_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/bash_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/cron_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/dev_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/edit_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/glob_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/grep_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/notebook_edit_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/operator_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/plan_mode_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/push_notification_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/read_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/send_message_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/task_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/todo_write_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/tool_search_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/web_fetch_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/web_search_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/worktree_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/write_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/composer.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/errors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/adapter.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/credentials.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/errors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/manager.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/oauth.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/state.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/uri.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/provider.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/providers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/sandbox.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/scope.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/tools/stage_binding.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/workspace/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/workspace/stack.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/src/geny_executor/workspace/types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/_fixtures/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/_fixtures/fake_claude.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/_fixtures/fake_echo_cli.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/conftest.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/fixtures/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/fixtures/adapter/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/fixtures/adapter/adapter.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c1_six_layer_retrieval.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c2_execution_recording.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c3_reflection_and_promotion.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c4_rest_coverage.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c5_embedding_migration.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c6_session_resume.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_c7_adapter_parity.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/completeness/test_spec_loads.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/memory_provider_contract.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_embedding_clients.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_error_codes_stability.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_auto_vector.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_composite.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_composite_routing.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_curated_global.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_ephemeral.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_factory.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_file.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_file_layout.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_file_vector.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql_dialect.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql_schema.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql_vector.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/contract/test_stage_uniformity.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/integration/test_cycle_ab_cross_import.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/integration/test_integration.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/harness.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_anthropic.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_claude_code_cli.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_google.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_openai.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/conformance/test_vllm.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/test_claude_code.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/test_cli_runtime.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/test_credentials.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/llm_client/unit/test_translators_cli_claude_code.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/__init__.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_adaptive_model_router.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_adaptive_thinking_budget.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_adhoc_providers.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_agent_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_artifact_metadata.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_ask_user_question_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_binary_classify_manifest.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_built_in_autoregister.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_builtin_capabilities.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_builtin_features.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_composite_set_hooks.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_cron_runner.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_cron_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_cron_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_dev_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_dynamic_persona_builder.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_errors_categories.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_evaluation_chain.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_fork_multi_provider.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_hierarchical_sidecars.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_hook_in_process.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_hook_runner.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_hooks_and_shared_keys.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_index_list_categories.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_index_render_vault_map.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_interaction_fields.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_introspection.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_base.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_capabilities.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_request_types.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_client_state.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_llm_summary_compactor.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_loop_agnostic_lock.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_manifest_provider_validation.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_manifest_v2.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_manifest_v3_migration.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_annotations_attach.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_credential_store.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_fsm.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_lifecycle.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_namespace.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_oauth.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_prompts_skills_bridge.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_resource_retriever.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_uri.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_memory_aware_retriever.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_memory_hooks_after_callbacks.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_memory_metadata_extension.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_multi_dim_budget_controller.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_multi_format_yield.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_multi_provider.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_multimodal.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_note_graph_queries.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_notebook_edit_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_notes_load_pinned.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_operator_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_ordered_emitter_chain.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_permission_matrix.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_permission_mode_promotions.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase1_foundation.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase1_pipeline.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase2_agent_loop.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase2_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase3_context_memory.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase4_think_agent_evaluate.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase5_emit_presets_mcp.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase5_environment.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase6_history.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase6_integration.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase7_security.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase9a_preset_regen.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_phase9a_scaffolding.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_pipeline_attach_runtime.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_pipeline_from_manifest.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_pipeline_session_runtime.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_plan_mode_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_progressive_disclosure.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_provider_driven_strategy.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_push_notification_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_refresh_backlinks_extension.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_resolve_model_config.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_runtime_task_runner.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s06_provider_selection.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s13_file_backed_registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s13_task_registry_output.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s19_frequency_policy.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b1_tool_review.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b2_task_registry.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b3_hitl.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b4_summarize.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9b5_persist.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9c1_pipeline_resume.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_s9c2_restore_state.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_send_message_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_settings_loader.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_1.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_2.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_3.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_4_bundled.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_5_fork.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_6_killer.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_7_watcher.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_richer_schema.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skill_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_skills_foundation.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_slash_built_in_control.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_slash_built_in_introspection.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_slash_commands.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_slash_md_template.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stage10_hook_wiring.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stage10_partition_executor.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stage10_permission_matrix.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stage19_session_summary.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_state_mutation_wiring.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_state_shared_and_local.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_stm_append_event.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_streaming_tool_executor.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_structured_output_parser.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_structured_reflection.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_credential_propagation.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_descriptor.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_orchestrator_zero_arg.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_parallel.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_subagent_type_orchestrator.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_task_tools.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_todo_write_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_abc_uplift.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_call_events.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_errors.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_lifecycle_hooks.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_provider.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_result_persistence.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_search_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_tool_stage_max_concurrency.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_web_fetch_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_web_search_tool.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_workspace.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_workspace_propagation.py +0 -0
- {geny_executor-2.1.0 → geny_executor-2.1.2}/tests/unit/test_workspace_tools_integration.py +0 -0
- {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
|
+
[](https://pypi.org/project/geny-executor/)
|
|
48
|
+
[](https://pypi.org/project/geny-executor/)
|
|
49
|
+
[](https://opensource.org/licenses/MIT)
|
|
50
|
+
[](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
|