geny-executor 2.40.0__tar.gz → 2.41.0__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.40.0 → geny_executor-2.41.0}/PKG-INFO +1 -1
- {geny_executor-2.40.0 → geny_executor-2.41.0}/pyproject.toml +1 -1
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/artifact/default/normalizers.py +23 -12
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/types.py +17 -3
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/__init__.py +17 -0
- geny_executor-2.41.0/src/geny_executor/tools/built_in/workspace_tools.py +336 -0
- geny_executor-2.41.0/tests/unit/test_workspace_tools.py +153 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/.gitignore +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/LICENSE +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/NOTICE +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/README.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/README_ko.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/channels/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/channels/built_in.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/channels/factory.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/channels/send_message_channel.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/channels/user_file_channel.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/artifact.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/builder.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/compaction.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/config.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/diff.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/environment.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/environment_control.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/errors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/introspection.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/manifest_factory.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/mutation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/pipeline.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/presets.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/result.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/schema.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/shared_keys.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/slot.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/snapshot.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/state.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/core/token_estimate.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/cron/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/cron/runner.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/cron/store_abc.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/cron/store_impl/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/cron/store_impl/file_backed.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/cron/store_impl/in_memory.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/cron/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/events/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/events/bus.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/events/catalog.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/events/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/gateway/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/gateway/adapter.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/gateway/discord.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/gateway/factory.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/gateway/runner.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/gateway/slack.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/gateway/telegram.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/gateway/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/gateway/ws_base.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/history/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/history/ab_test.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/history/cost.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/history/models.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/history/monitor.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/history/replay.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/history/service.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/hooks/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/hooks/config.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/hooks/events.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/hooks/runner.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/_cli_runtime.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/anthropic.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/base.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/claude_code.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/credentials.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/google.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/local_probe.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/model_discovery.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/openai.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/openai_compatible.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/profiles.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/translators/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/translators/_canonical.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/translators/_cli.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/llm_client/vllm.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/_locks.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/_progressive.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/composite/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/composite/handles.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/composite/provider.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/composite/routing.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/composite/snapshot.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/embedding/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/embedding/client.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/embedding/google.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/embedding/local.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/embedding/openai.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/embedding/registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/embedding/voyage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/factory.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/graph_rank.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/presets.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/provider.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/ephemeral.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/config.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/frontmatter.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/graph_edges.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/index_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/layout.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/ltm_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/notes_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/provider.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/snapshot.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/stm_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/timezone.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/file/vector_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/config.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/connection.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/index_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/ltm_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/notes_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/provider.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/schema.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/snapshot.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/stm_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/providers/sql/vector_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/retriever.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/rollup.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/memory/strategy.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/notifications/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/notifications/registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/permission/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/permission/loader.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/permission/matrix.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/permission/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/py.typed +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/runtime/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/runtime/task_executors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/runtime/task_runner.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/security/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/security/import_validator.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/security/script_sandbox.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/session/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/session/freshness.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/session/manager.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/session/persistence.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/session/session.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/settings/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/settings/loader.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/settings/section_registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/batch/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/debug/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/environment/REFERENCE.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/environment/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/loop/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/lorem-ipsum/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/simplify/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/skillify/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/stuck/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/tool-builder/REFERENCE.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/tool-builder/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled/verify/SKILL.md +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/bundled_skills.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/fork.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/frontmatter.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/loader.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/mcp_bridge.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/path_match.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/shell_blocks.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/skill_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/skills/watcher.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/_helpers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/cancel.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/clear.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/compact.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/config.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/context.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/cost.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/help.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/memory.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/model.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/preset_info.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/status.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/built_in/tasks.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/md_template.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/parser.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/slash_commands/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/artifact/default/validators.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/normalizers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s01_input/validators.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/artifact/default/compactors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/artifact/default/retrievers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/artifact/default/strategies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/compactors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/retrievers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/strategies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s02_context/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/artifact/default/builders.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/builders.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/persona/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/persona/builder.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/persona/provider.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s03_system/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s04_guard/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s04_guard/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s04_guard/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s04_guard/artifact/default/guards.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s04_guard/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s04_guard/guards.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s04_guard/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s04_guard/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s04_guard/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s05_cache/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s05_cache/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s05_cache/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s05_cache/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s05_cache/artifact/default/strategies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s05_cache/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s05_cache/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s05_cache/strategies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/_translate.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/default/providers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/default/retry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/default/router.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/default/tool_loop.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/google/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/google/providers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/openai/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/artifact/openai/providers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/providers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/retry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s06_api/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/artifact/default/pricing.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/artifact/default/trackers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/pricing.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s07_token/trackers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s08_think/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s08_think/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s08_think/artifact/default/budget.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s08_think/artifact/default/processors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s08_think/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s08_think/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s08_think/processors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s08_think/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s08_think/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/artifact/default/parsers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/artifact/default/signals.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/parsers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/signals.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s09_parse/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/artifact/default/executors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/artifact/default/routers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/dispatcher.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/executors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/persistence.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/routers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/state_mutation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s10_tool/streaming.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s11_tool_review/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s11_tool_review/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s11_tool_review/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s11_tool_review/artifact/default/reviewers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s11_tool_review/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s11_tool_review/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/artifact/default/orchestrators.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/orchestrators.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/persistent_subagent.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/subagent_catalog.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/subagent_type.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s12_agent/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s13_task_registry/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s13_task_registry/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s13_task_registry/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s13_task_registry/artifact/default/file_backed_registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s13_task_registry/artifact/default/policies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s13_task_registry/artifact/default/registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s13_task_registry/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s13_task_registry/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s13_task_registry/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/strategy.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/artifact/default/strategies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/strategies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s14_evaluate/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s15_hitl/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s15_hitl/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s15_hitl/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s15_hitl/artifact/default/requesters.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s15_hitl/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s15_hitl/artifact/default/timeouts.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s15_hitl/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s15_hitl/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s16_loop/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s16_loop/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s16_loop/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s16_loop/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s16_loop/controllers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s16_loop/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s16_loop/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s17_emit/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s17_emit/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s17_emit/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s17_emit/artifact/default/emitters.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s17_emit/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s17_emit/emitters.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s17_emit/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s17_emit/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s17_emit/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/_dehydrate.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/artifact/default/persistence.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/artifact/default/strategies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/insight.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/persistence.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s18_memory/strategies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s19_summarize/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s19_summarize/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s19_summarize/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s19_summarize/artifact/default/importance.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s19_summarize/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s19_summarize/artifact/default/summarizers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s19_summarize/frequency_policy.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s19_summarize/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s19_summarize/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s20_persist/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s20_persist/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s20_persist/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s20_persist/artifact/default/frequencies.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s20_persist/artifact/default/persisters.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s20_persist/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s20_persist/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s20_persist/restore.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s20_persist/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s21_yield/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s21_yield/artifact/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s21_yield/artifact/default/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s21_yield/artifact/default/formatters.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s21_yield/artifact/default/multi_format.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s21_yield/artifact/default/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s21_yield/formatters.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s21_yield/interface.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/stages/s21_yield/stage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/_sandbox.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/adhoc.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/base.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/_path_guard.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/_web_search_backends.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/agent_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/ask_user_question_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/bash_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/cron_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/dev_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/edit_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/env_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/glob_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/google_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/grep_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/mcp_wrapper_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/notebook_edit_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/operator_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/plan_mode_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/push_notification_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/read_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/sandbox_exec_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/send_message_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/subagent_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/task_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/todo_write_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/tool_search_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/web_fetch_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/web_search_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/worktree_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/built_in/write_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/composer.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/errors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/mcp/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/mcp/adapter.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/mcp/credentials.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/mcp/errors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/mcp/manager.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/mcp/oauth.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/mcp/state.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/mcp/uri.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/plugin.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/provider.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/providers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/sandbox.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/scope.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/tools/stage_binding.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/workspace/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/workspace/stack.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/workspace/types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/_fixtures/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/_fixtures/fake_claude.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/_fixtures/fake_echo_cli.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/_fixtures/geny_manifest_layout.json +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/_fixtures/manifest_entries.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/conftest.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/fixtures/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/fixtures/adapter/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/fixtures/adapter/adapter.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/test_c1_six_layer_retrieval.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/test_c2_execution_recording.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/test_c3_reflection_and_promotion.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/test_c4_rest_coverage.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/test_c5_embedding_migration.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/test_c6_session_resume.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/test_c7_adapter_parity.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/completeness/test_spec_loads.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/memory_provider_contract.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_embedding_clients.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_error_codes_stability.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_embedding_credentials.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_auto_vector.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_composite.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_composite_routing.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_curated_global.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_ephemeral.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_factory.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_file.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_file_layout.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_file_vector.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_sql.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_sql_dialect.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_sql_schema.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_provider_sql_vector.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_memory_vector_breaker.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/contract/test_stage_uniformity.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/integration/test_cycle_ab_cross_import.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/integration/test_integration.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/conformance/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/conformance/harness.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/conformance/test_anthropic.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/conformance/test_claude_code_cli.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/conformance/test_google.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/conformance/test_local_providers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/conformance/test_openai.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/conformance/test_vllm.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/golden/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/golden/cli-2.1.149-json.json +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/golden/cli-2.1.149-json.meta +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/golden/cli-2.1.149-stream.jsonl +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/golden/cli-2.1.149-stream.meta +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/golden/cli-2.1.162-stream.jsonl +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/golden/cli-2.1.162-stream.meta +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/golden/test_golden_replay.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/live/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/live/test_live_canaries.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_anthropic_build_kwargs.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_anthropic_classify.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_base_client.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_claude_code.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_cli_cancellation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_cli_event_forwarding.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_cli_runtime.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_container_runner.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_credentials.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_google_classify.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_local_probe.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_local_tool_repair.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_openai_client.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_profiles.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/llm_client/unit/test_translators_cli_claude_code.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/__init__.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_adaptive_model_router.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_adaptive_router_configure.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_adaptive_thinking_budget.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_adhoc_providers.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_agent_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_api_timeout_kwarg.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_artifact_metadata.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_ask_user_question_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_attach_llm_client_guard.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_binary_classify_manifest.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_budget_compaction_recovery.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_built_in_autoregister.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_builtin_capabilities.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_builtin_channels.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_builtin_features.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_cache_prefix_key.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_cancellation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_claude_code_nonstream_prompt.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_cli_mcp_passthrough.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_composite_set_hooks.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_concurrent_runs.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_config_liveness.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_cron_runner.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_cron_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_cron_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_dev_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_diff_order_keyed.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_dynamic_persona_builder.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_embedding_error_classification.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_errors_categories.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_evaluation_chain.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_evaluation_chain_configure.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_event_catalog.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_event_channel_unification.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_event_correlation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_external_tool_resolution.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_forge_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_fork_multi_provider.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_from_manifest_strict_validation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_gateway.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_gateway_ws.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_geny_prod_manifest_repro.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_graph_edges.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_graph_rank.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_guard_fail_fast.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_hierarchical_sidecars.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_hook_gate_split.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_hook_in_process.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_hook_runner.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_hook_taxonomy.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_hooks_and_shared_keys.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_host_selections_resolve.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_index_list_categories.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_index_render_vault_map.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_interaction_fields.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_internal_agentic_loop.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_introspection.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_llm_client_base.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_llm_client_capabilities.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_llm_client_registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_llm_client_request_types.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_llm_client_state.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_llm_compactor_selfwire.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_llm_summary_compactor.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_loop_agnostic_lock.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_manifest_factory.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_manifest_from_dict_hygiene.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_manifest_memory_wiring.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_manifest_provider_validation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_manifest_subagents_memory_sections.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_manifest_v2.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_manifest_v3_migration.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_annotations_attach.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_credential_store.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_fsm.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_lifecycle.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_namespace.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_oauth.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_prompts_skills_bridge.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_resource_retriever.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_uri.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_mcp_wrapper_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_memory_aware_retriever.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_memory_hooks_after_callbacks.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_memory_metadata_extension.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_memory_rollup.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_model_discovery.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_model_overrides.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_multi_dim_budget_configure.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_multi_dim_budget_controller.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_multi_format_yield.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_multi_provider.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_multimodal.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_note_graph_queries.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_notebook_edit_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_notes_load_pinned.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_operator_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_ordered_emitter_chain.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_permission_matrix.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_permission_mode_promotions.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_permission_posture.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_persistent_subagent.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase1_foundation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase1_pipeline.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase2_agent_loop.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase2_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase3_context_memory.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase4_think_agent_evaluate.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase5_emit_presets_mcp.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase5_environment.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase6_history.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase6_integration.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase7_security.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase9a_preset_regen.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_phase9a_scaffolding.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_pipeline_aclose.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_pipeline_attach_runtime.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_pipeline_events_tap.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_pipeline_from_manifest.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_pipeline_hook_lifecycle.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_pipeline_session_runtime.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_plan_mode_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_primary_provider_and_build_reports.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_progressive_disclosure.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_provider_driven_strategy.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_push_notification_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_refresh_backlinks_extension.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_refresh_runtime_and_run_lock.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_resolve_model_config.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_restore_bad_strategy_config.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_reviewer_policy_configure.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_runtime_task_runner.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s06_chunk_forwarding.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s06_provider_selection.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s13_file_backed_registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s13_task_registry_output.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s19_frequency_policy.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s9b1_tool_review.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s9b2_task_registry.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s9b3_hitl.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s9b4_summarize.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s9b5_persist.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s9c1_pipeline_resume.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_s9c2_restore_state.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_sandbox_attach.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_sandbox_exec_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_sandbox_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_self_modifying_env.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_send_message_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_settings_loader.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_level3_resources.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_phase_10_1.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_phase_10_2.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_phase_10_3.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_phase_10_4_bundled.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_phase_10_5_fork.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_phase_10_6_killer.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_phase_10_7_watcher.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_richer_schema.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skill_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_skills_foundation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_slash_built_in_control.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_slash_built_in_introspection.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_slash_commands.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_slash_md_template.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_stage10_ask_hitl.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_stage10_hook_wiring.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_stage10_partition_executor.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_stage10_permission_matrix.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_stage19_session_summary.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_state_mutation_wiring.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_state_shared_and_local.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_stm_append_event.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_strategy_config_roundtrip.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_streaming_tool_executor.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_structured_output_parser.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_structured_reflection.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_subagent_catalog.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_subagent_credential_propagation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_subagent_descriptor.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_subagent_manifest_compile.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_subagent_orchestrator_zero_arg.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_subagent_parallel.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_subagent_pipeline_lifecycle.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_subagent_type_orchestrator.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_task_tools.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_todo_write_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_tool_abc_uplift.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_tool_call_events.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_tool_errors.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_tool_lifecycle_hooks.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_tool_plugins.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_tool_provider.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_tool_result_persistence.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_tool_search_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_tool_stage_max_concurrency.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_turn_boundary_state.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_validate_manifest.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_vault_map_drill.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_web_fetch_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_web_search_backends.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_web_search_tool.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_workspace.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_workspace_propagation.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/tests/unit/test_workspace_tools_integration.py +0 -0
- {geny_executor-2.40.0 → geny_executor-2.41.0}/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.
|
|
3
|
+
Version: 2.41.0
|
|
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.
|
|
7
|
+
version = "2.41.0"
|
|
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 = "Apache-2.0"
|
|
@@ -210,25 +210,36 @@ class MultimodalNormalizer(InputNormalizer):
|
|
|
210
210
|
block["_meta"] = meta
|
|
211
211
|
return block
|
|
212
212
|
|
|
213
|
+
# Anthropic PDF limit is ~32MB request size; stay safely under it.
|
|
214
|
+
_PDF_MAX_BYTES = 24 * 1024 * 1024
|
|
215
|
+
|
|
213
216
|
def _make_file_block(self, file: Dict[str, Any]) -> Dict[str, Any]:
|
|
214
217
|
"""Convert any accepted shape into a canonical file block.
|
|
215
218
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
219
|
+
PDFs referenced by a local ``file://`` URI (or absolute path) are
|
|
220
|
+
loaded and base64-attached here so ``to_blocks()`` can emit a native
|
|
221
|
+
Anthropic ``document`` block — the model reads the actual PDF instead
|
|
222
|
+
of a ``[attached file: …]`` placeholder. Other formats keep the
|
|
223
|
+
metadata-only shape (hosts hand those to the agent's file tools).
|
|
220
224
|
"""
|
|
225
|
+
mime = (
|
|
226
|
+
file.get("mime_type")
|
|
227
|
+
or file.get("media_type")
|
|
228
|
+
or file.get("mimeType")
|
|
229
|
+
or "application/octet-stream"
|
|
230
|
+
)
|
|
231
|
+
data = file.get("data") or file.get("base64")
|
|
232
|
+
url = file.get("url")
|
|
233
|
+
if mime == "application/pdf" and not data and url:
|
|
234
|
+
resolved = _resolve_local_image_source(url) # generic local-file reader
|
|
235
|
+
if resolved is not None and len(resolved[0]) <= self._PDF_MAX_BYTES:
|
|
236
|
+
data = base64.b64encode(resolved[0]).decode("ascii")
|
|
221
237
|
return {
|
|
222
238
|
"type": "file",
|
|
223
239
|
"name": file.get("name") or file.get("filename"),
|
|
224
|
-
"mime_type":
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
or file.get("mimeType")
|
|
228
|
-
or "application/octet-stream"
|
|
229
|
-
),
|
|
230
|
-
"url": file.get("url"),
|
|
231
|
-
"data": file.get("data") or file.get("base64"),
|
|
240
|
+
"mime_type": mime,
|
|
241
|
+
"url": url,
|
|
242
|
+
"data": data,
|
|
232
243
|
"size": file.get("size"),
|
|
233
244
|
"sha256": file.get("sha256"),
|
|
234
245
|
"attachment_id": file.get("attachment_id"),
|
|
@@ -78,11 +78,25 @@ class NormalizedInput:
|
|
|
78
78
|
for img in self.images:
|
|
79
79
|
blocks.append(img)
|
|
80
80
|
for f in self.files:
|
|
81
|
-
# TODO: PDF 등을 Anthropic ``document`` block 으로 매핑하고
|
|
82
|
-
# 본문 추출 (PyPDF, OCR 등) 후 text 블록으로 인라인하는 경로
|
|
83
|
-
# 추가. 현재는 메타데이터를 텍스트로 노출만 한다.
|
|
84
81
|
name = f.get("name") or f.get("filename") or "unnamed"
|
|
85
82
|
mime = f.get("mime_type") or f.get("media_type") or "application/octet-stream"
|
|
83
|
+
data = f.get("data")
|
|
84
|
+
if mime == "application/pdf" and data:
|
|
85
|
+
# Native Anthropic ``document`` block — the model reads the PDF
|
|
86
|
+
# itself (the normalizer base64-loads local PDFs).
|
|
87
|
+
blocks.append(
|
|
88
|
+
{
|
|
89
|
+
"type": "document",
|
|
90
|
+
"source": {
|
|
91
|
+
"type": "base64",
|
|
92
|
+
"media_type": "application/pdf",
|
|
93
|
+
"data": data,
|
|
94
|
+
},
|
|
95
|
+
}
|
|
96
|
+
)
|
|
97
|
+
continue
|
|
98
|
+
# Other formats: metadata placeholder — hosts route the real bytes
|
|
99
|
+
# to the agent's file tools (e.g. a staged workspace copy).
|
|
86
100
|
blocks.append(
|
|
87
101
|
{
|
|
88
102
|
"type": "text",
|
|
@@ -52,6 +52,12 @@ from geny_executor.tools.built_in.operator_tools import (
|
|
|
52
52
|
SendUserFileTool,
|
|
53
53
|
)
|
|
54
54
|
from geny_executor.tools.built_in.read_tool import ReadTool
|
|
55
|
+
from geny_executor.tools.built_in.workspace_tools import (
|
|
56
|
+
SandboxFetchTool,
|
|
57
|
+
SandboxInfoTool,
|
|
58
|
+
SandboxPutTool,
|
|
59
|
+
WorkspaceInfoTool,
|
|
60
|
+
)
|
|
55
61
|
from geny_executor.tools.built_in.cron_tools import (
|
|
56
62
|
CronCreateTool,
|
|
57
63
|
CronDeleteTool,
|
|
@@ -123,6 +129,10 @@ BUILT_IN_TOOL_CLASSES: Dict[str, Type[Tool]] = {
|
|
|
123
129
|
"Config": ConfigTool,
|
|
124
130
|
"Monitor": MonitorTool,
|
|
125
131
|
"SendUserFile": SendUserFileTool,
|
|
132
|
+
"WorkspaceInfo": WorkspaceInfoTool,
|
|
133
|
+
"SandboxInfo": SandboxInfoTool,
|
|
134
|
+
"SandboxPut": SandboxPutTool,
|
|
135
|
+
"SandboxFetch": SandboxFetchTool,
|
|
126
136
|
"SendMessage": SendMessageTool,
|
|
127
137
|
"CronCreate": CronCreateTool,
|
|
128
138
|
"CronDelete": CronDeleteTool,
|
|
@@ -173,6 +183,9 @@ BUILT_IN_TOOL_FEATURES: Dict[str, List[str]] = {
|
|
|
173
183
|
"worktree": ["EnterWorktree", "ExitWorktree"],
|
|
174
184
|
"dev": ["LSP", "REPL", "Brief"],
|
|
175
185
|
"operator": ["Config", "Monitor", "SendUserFile"],
|
|
186
|
+
# The session's two file spaces: inspect the host-side files workspace,
|
|
187
|
+
# check the sandbox, and move files between them.
|
|
188
|
+
"workspace": ["WorkspaceInfo", "SandboxInfo", "SandboxPut", "SandboxFetch"],
|
|
176
189
|
"messaging": ["SendMessage"],
|
|
177
190
|
"cron": ["CronCreate", "CronDelete", "CronList"],
|
|
178
191
|
"environment": ["env"],
|
|
@@ -280,6 +293,10 @@ __all__ = [
|
|
|
280
293
|
"ExitPlanModeTool",
|
|
281
294
|
"EnvTool",
|
|
282
295
|
"SandboxExecTool",
|
|
296
|
+
"WorkspaceInfoTool",
|
|
297
|
+
"SandboxInfoTool",
|
|
298
|
+
"SandboxPutTool",
|
|
299
|
+
"SandboxFetchTool",
|
|
283
300
|
"BUILT_IN_TOOL_CLASSES",
|
|
284
301
|
"BUILT_IN_TOOL_FEATURES",
|
|
285
302
|
"get_builtin_tools",
|
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
"""Workspace ↔ Sandbox tools — inspect the session's two file spaces and move
|
|
2
|
+
files between them.
|
|
3
|
+
|
|
4
|
+
Every session has up to two distinct spaces:
|
|
5
|
+
|
|
6
|
+
* **Files workspace** — the host-side session storage (``ToolContext.
|
|
7
|
+
storage_path``). Owned by the framework/host built-in tools (file reads,
|
|
8
|
+
document editing, user file delivery). It is NOT an execution environment —
|
|
9
|
+
agents must not treat it as a system to configure.
|
|
10
|
+
* **Sandbox** — an optional isolated container (``ToolContext.sandbox``,
|
|
11
|
+
mounted at a workdir, conventionally ``/workspace``). The agent's free
|
|
12
|
+
environment: install packages, run services, build projects.
|
|
13
|
+
|
|
14
|
+
The system prompt carries only a short manifest of these spaces; the tools
|
|
15
|
+
here provide the concrete state on demand (progressive disclosure):
|
|
16
|
+
|
|
17
|
+
* ``WorkspaceInfo`` — list the files workspace (summary or subtree)
|
|
18
|
+
* ``SandboxInfo`` — is a sandbox attached? workdir + top-level contents
|
|
19
|
+
* ``SandboxPut`` — copy a file: files workspace → sandbox
|
|
20
|
+
* ``SandboxFetch`` — copy a file: sandbox → files workspace
|
|
21
|
+
|
|
22
|
+
Transfers stream through the existing ``_sandbox`` primitives (docker exec,
|
|
23
|
+
binary-safe) and are path-guarded to the session storage on the host side.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
from __future__ import annotations
|
|
27
|
+
|
|
28
|
+
from pathlib import Path
|
|
29
|
+
from typing import Any, Dict, List, Optional
|
|
30
|
+
|
|
31
|
+
from geny_executor.tools.base import Tool, ToolCapabilities, ToolResult
|
|
32
|
+
|
|
33
|
+
DEFAULT_SANDBOX_WORKDIR = "/workspace"
|
|
34
|
+
MAX_TRANSFER_BYTES = 50 * 1024 * 1024 # docker-exec stdin/stdout transfers
|
|
35
|
+
_MAX_ENTRIES = 300
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def _err(code: str, message: str) -> ToolResult:
|
|
39
|
+
return ToolResult(content={"error": code, "message": message}, is_error=True)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def _storage_root(context) -> Optional[Path]:
|
|
43
|
+
sp = getattr(context, "storage_path", None)
|
|
44
|
+
return Path(sp).resolve() if sp else None
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def _guarded(root: Path, path: str) -> Path:
|
|
48
|
+
p = Path(path)
|
|
49
|
+
target = (p if p.is_absolute() else root / p).resolve()
|
|
50
|
+
target.relative_to(root) # raises ValueError on escape
|
|
51
|
+
return target
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
class WorkspaceInfoTool(Tool):
|
|
55
|
+
"""Inspect the session's files workspace (host-side session storage)."""
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
def name(self) -> str:
|
|
59
|
+
return "WorkspaceInfo"
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
def description(self) -> str:
|
|
63
|
+
return (
|
|
64
|
+
"List the session's files workspace (host-side storage for user "
|
|
65
|
+
"uploads, document drafts, and delivered outputs — not an execution "
|
|
66
|
+
"environment). No path → top-level summary; pass path (e.g. "
|
|
67
|
+
"'workspace/uploads') for a subtree listing."
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
def input_schema(self) -> Dict[str, Any]:
|
|
72
|
+
return {
|
|
73
|
+
"type": "object",
|
|
74
|
+
"properties": {
|
|
75
|
+
"path": {"type": "string", "description": "Subdirectory to list (default: top-level summary)"},
|
|
76
|
+
"max_entries": {"type": "integer", "description": "Cap on listed files (default 100)"},
|
|
77
|
+
},
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
def capabilities(self, input):
|
|
81
|
+
return ToolCapabilities(concurrency_safe=True)
|
|
82
|
+
|
|
83
|
+
async def execute(self, input, context):
|
|
84
|
+
root = _storage_root(context)
|
|
85
|
+
if root is None or not root.is_dir():
|
|
86
|
+
return _err("NO_STORAGE", "This session has no storage_path.")
|
|
87
|
+
sub = (input.get("path") or "").strip()
|
|
88
|
+
cap = min(int(input.get("max_entries") or 100), _MAX_ENTRIES)
|
|
89
|
+
try:
|
|
90
|
+
base = _guarded(root, sub) if sub else root
|
|
91
|
+
except ValueError:
|
|
92
|
+
return _err("PATH_ESCAPE", f"Path escapes the session storage: {sub}")
|
|
93
|
+
if not base.exists():
|
|
94
|
+
return _err("NOT_FOUND", f"No such directory: {sub or '/'}")
|
|
95
|
+
|
|
96
|
+
if not sub:
|
|
97
|
+
# Top-level summary: per-directory file count + size, root files.
|
|
98
|
+
dirs: List[Dict[str, Any]] = []
|
|
99
|
+
files: List[Dict[str, Any]] = []
|
|
100
|
+
for entry in sorted(base.iterdir()):
|
|
101
|
+
if entry.name.startswith("."):
|
|
102
|
+
continue
|
|
103
|
+
if entry.is_dir():
|
|
104
|
+
count = 0
|
|
105
|
+
size = 0
|
|
106
|
+
for f in entry.rglob("*"):
|
|
107
|
+
if f.is_file():
|
|
108
|
+
count += 1
|
|
109
|
+
try:
|
|
110
|
+
size += f.stat().st_size
|
|
111
|
+
except OSError:
|
|
112
|
+
pass
|
|
113
|
+
dirs.append({"dir": entry.name + "/", "files": count, "bytes": size})
|
|
114
|
+
elif entry.is_file():
|
|
115
|
+
files.append({"file": entry.name, "bytes": entry.stat().st_size})
|
|
116
|
+
return ToolResult(content={
|
|
117
|
+
"root": str(root),
|
|
118
|
+
"directories": dirs,
|
|
119
|
+
"files": files[:cap],
|
|
120
|
+
"hint": "Pass path='<dir>' for a subtree listing.",
|
|
121
|
+
})
|
|
122
|
+
|
|
123
|
+
listing: List[Dict[str, Any]] = []
|
|
124
|
+
truncated = False
|
|
125
|
+
for f in sorted(base.rglob("*")):
|
|
126
|
+
if not f.is_file() or f.name.startswith("."):
|
|
127
|
+
continue
|
|
128
|
+
if len(listing) >= cap:
|
|
129
|
+
truncated = True
|
|
130
|
+
break
|
|
131
|
+
try:
|
|
132
|
+
listing.append({
|
|
133
|
+
"path": f.relative_to(root).as_posix(),
|
|
134
|
+
"bytes": f.stat().st_size,
|
|
135
|
+
})
|
|
136
|
+
except OSError:
|
|
137
|
+
continue
|
|
138
|
+
return ToolResult(content={
|
|
139
|
+
"root": str(root), "path": sub, "files": listing, "truncated": truncated,
|
|
140
|
+
})
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class SandboxInfoTool(Tool):
|
|
144
|
+
"""Report whether an isolated sandbox is attached + its top-level contents."""
|
|
145
|
+
|
|
146
|
+
@property
|
|
147
|
+
def name(self) -> str:
|
|
148
|
+
return "SandboxInfo"
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
def description(self) -> str:
|
|
152
|
+
return (
|
|
153
|
+
"Check the session's sandbox (isolated container — your free "
|
|
154
|
+
"environment for installs/builds/services). Reports whether one is "
|
|
155
|
+
"attached and lists the top of its workdir."
|
|
156
|
+
)
|
|
157
|
+
|
|
158
|
+
@property
|
|
159
|
+
def input_schema(self) -> Dict[str, Any]:
|
|
160
|
+
return {
|
|
161
|
+
"type": "object",
|
|
162
|
+
"properties": {
|
|
163
|
+
"workdir": {"type": "string", "description": f"Sandbox workdir (default {DEFAULT_SANDBOX_WORKDIR})"},
|
|
164
|
+
},
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
def capabilities(self, input):
|
|
168
|
+
return ToolCapabilities(concurrency_safe=True)
|
|
169
|
+
|
|
170
|
+
async def execute(self, input, context):
|
|
171
|
+
sandbox = getattr(context, "sandbox", None)
|
|
172
|
+
if sandbox is None:
|
|
173
|
+
return ToolResult(content={
|
|
174
|
+
"attached": False,
|
|
175
|
+
"note": "No sandbox is bound to this session — only the files "
|
|
176
|
+
"workspace is available (see WorkspaceInfo).",
|
|
177
|
+
})
|
|
178
|
+
workdir = (input.get("workdir") or DEFAULT_SANDBOX_WORKDIR).strip()
|
|
179
|
+
from geny_executor.tools._sandbox import sb_run
|
|
180
|
+
|
|
181
|
+
try:
|
|
182
|
+
rc, out, err = await sb_run(sandbox, "ls -la", workdir=workdir, timeout_s=20)
|
|
183
|
+
except Exception as exc: # noqa: BLE001
|
|
184
|
+
return ToolResult(content={
|
|
185
|
+
"attached": True, "workdir": workdir, "reachable": False,
|
|
186
|
+
"error": str(exc)[:300],
|
|
187
|
+
})
|
|
188
|
+
return ToolResult(content={
|
|
189
|
+
"attached": True,
|
|
190
|
+
"workdir": workdir,
|
|
191
|
+
"reachable": rc == 0,
|
|
192
|
+
"listing": (out if rc == 0 else err)[:2000],
|
|
193
|
+
})
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
class SandboxPutTool(Tool):
|
|
197
|
+
"""Copy a file from the files workspace into the sandbox."""
|
|
198
|
+
|
|
199
|
+
@property
|
|
200
|
+
def name(self) -> str:
|
|
201
|
+
return "SandboxPut"
|
|
202
|
+
|
|
203
|
+
@property
|
|
204
|
+
def description(self) -> str:
|
|
205
|
+
return (
|
|
206
|
+
"Copy a file from the session's files workspace (host storage) INTO "
|
|
207
|
+
"the sandbox container. source is relative to the session storage "
|
|
208
|
+
"(e.g. 'workspace/uploads/data.csv'); dest is a sandbox path "
|
|
209
|
+
"(default: same basename in the sandbox workdir)."
|
|
210
|
+
)
|
|
211
|
+
|
|
212
|
+
@property
|
|
213
|
+
def input_schema(self) -> Dict[str, Any]:
|
|
214
|
+
return {
|
|
215
|
+
"type": "object",
|
|
216
|
+
"properties": {
|
|
217
|
+
"source": {"type": "string", "description": "File path in the files workspace"},
|
|
218
|
+
"dest": {"type": "string", "description": "Target path inside the sandbox (optional)"},
|
|
219
|
+
"workdir": {"type": "string", "description": f"Sandbox workdir (default {DEFAULT_SANDBOX_WORKDIR})"},
|
|
220
|
+
},
|
|
221
|
+
"required": ["source"],
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
def capabilities(self, input):
|
|
225
|
+
return ToolCapabilities(concurrency_safe=False)
|
|
226
|
+
|
|
227
|
+
async def execute(self, input, context):
|
|
228
|
+
sandbox = getattr(context, "sandbox", None)
|
|
229
|
+
if sandbox is None:
|
|
230
|
+
return _err("NO_SANDBOX", "No sandbox is bound to this session.")
|
|
231
|
+
root = _storage_root(context)
|
|
232
|
+
if root is None:
|
|
233
|
+
return _err("NO_STORAGE", "This session has no storage_path.")
|
|
234
|
+
try:
|
|
235
|
+
src = _guarded(root, input["source"])
|
|
236
|
+
except ValueError:
|
|
237
|
+
return _err("PATH_ESCAPE", f"source escapes the session storage: {input['source']}")
|
|
238
|
+
if not src.is_file():
|
|
239
|
+
return _err("NOT_FOUND", f"source not found: {input['source']}")
|
|
240
|
+
size = src.stat().st_size
|
|
241
|
+
if size > MAX_TRANSFER_BYTES:
|
|
242
|
+
return _err("TOO_LARGE", f"{size} bytes exceeds the {MAX_TRANSFER_BYTES}-byte transfer cap.")
|
|
243
|
+
|
|
244
|
+
workdir = (input.get("workdir") or DEFAULT_SANDBOX_WORKDIR).strip()
|
|
245
|
+
dest = (input.get("dest") or src.name).strip()
|
|
246
|
+
from geny_executor.tools._sandbox import container_path, sb_write_bytes
|
|
247
|
+
|
|
248
|
+
try:
|
|
249
|
+
written = await sb_write_bytes(sandbox, dest, src.read_bytes(), workdir=workdir)
|
|
250
|
+
except Exception as exc: # noqa: BLE001
|
|
251
|
+
return _err("TRANSFER_FAILED", str(exc)[:300])
|
|
252
|
+
return ToolResult(content={
|
|
253
|
+
"copied": True,
|
|
254
|
+
"source": src.relative_to(root).as_posix(),
|
|
255
|
+
"sandbox_path": container_path(dest, workdir),
|
|
256
|
+
"bytes": written,
|
|
257
|
+
})
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
class SandboxFetchTool(Tool):
|
|
261
|
+
"""Copy a file from the sandbox into the files workspace."""
|
|
262
|
+
|
|
263
|
+
@property
|
|
264
|
+
def name(self) -> str:
|
|
265
|
+
return "SandboxFetch"
|
|
266
|
+
|
|
267
|
+
@property
|
|
268
|
+
def description(self) -> str:
|
|
269
|
+
return (
|
|
270
|
+
"Copy a file FROM the sandbox container into the session's files "
|
|
271
|
+
"workspace (host storage) — e.g. to deliver a build artifact to the "
|
|
272
|
+
"user (SendUserFile) or preview it in the Canvas. source is a sandbox "
|
|
273
|
+
"path; dest is relative to the session storage (default: "
|
|
274
|
+
"'workspace/outputs/<basename>')."
|
|
275
|
+
)
|
|
276
|
+
|
|
277
|
+
@property
|
|
278
|
+
def input_schema(self) -> Dict[str, Any]:
|
|
279
|
+
return {
|
|
280
|
+
"type": "object",
|
|
281
|
+
"properties": {
|
|
282
|
+
"source": {"type": "string", "description": "File path inside the sandbox"},
|
|
283
|
+
"dest": {"type": "string", "description": "Target path in the files workspace (optional)"},
|
|
284
|
+
"workdir": {"type": "string", "description": f"Sandbox workdir (default {DEFAULT_SANDBOX_WORKDIR})"},
|
|
285
|
+
},
|
|
286
|
+
"required": ["source"],
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
def capabilities(self, input):
|
|
290
|
+
return ToolCapabilities(concurrency_safe=False)
|
|
291
|
+
|
|
292
|
+
async def execute(self, input, context):
|
|
293
|
+
sandbox = getattr(context, "sandbox", None)
|
|
294
|
+
if sandbox is None:
|
|
295
|
+
return _err("NO_SANDBOX", "No sandbox is bound to this session.")
|
|
296
|
+
root = _storage_root(context)
|
|
297
|
+
if root is None:
|
|
298
|
+
return _err("NO_STORAGE", "This session has no storage_path.")
|
|
299
|
+
|
|
300
|
+
workdir = (input.get("workdir") or DEFAULT_SANDBOX_WORKDIR).strip()
|
|
301
|
+
source = input["source"]
|
|
302
|
+
from geny_executor.tools._sandbox import sb_read_bytes
|
|
303
|
+
|
|
304
|
+
try:
|
|
305
|
+
data = await sb_read_bytes(sandbox, source, workdir=workdir)
|
|
306
|
+
except FileNotFoundError:
|
|
307
|
+
return _err("NOT_FOUND", f"sandbox file not found: {source}")
|
|
308
|
+
except Exception as exc: # noqa: BLE001
|
|
309
|
+
return _err("TRANSFER_FAILED", str(exc)[:300])
|
|
310
|
+
if len(data) > MAX_TRANSFER_BYTES:
|
|
311
|
+
return _err("TOO_LARGE", f"{len(data)} bytes exceeds the {MAX_TRANSFER_BYTES}-byte transfer cap.")
|
|
312
|
+
|
|
313
|
+
basename = Path(source).name or "fetched"
|
|
314
|
+
dest_rel = (input.get("dest") or f"workspace/outputs/{basename}").strip()
|
|
315
|
+
try:
|
|
316
|
+
dest = _guarded(root, dest_rel)
|
|
317
|
+
except ValueError:
|
|
318
|
+
return _err("PATH_ESCAPE", f"dest escapes the session storage: {dest_rel}")
|
|
319
|
+
dest.parent.mkdir(parents=True, exist_ok=True)
|
|
320
|
+
dest.write_bytes(data)
|
|
321
|
+
return ToolResult(content={
|
|
322
|
+
"copied": True,
|
|
323
|
+
"source": source,
|
|
324
|
+
"workspace_path": dest.relative_to(root).as_posix(),
|
|
325
|
+
"bytes": len(data),
|
|
326
|
+
})
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
__all__ = [
|
|
330
|
+
"WorkspaceInfoTool",
|
|
331
|
+
"SandboxInfoTool",
|
|
332
|
+
"SandboxPutTool",
|
|
333
|
+
"SandboxFetchTool",
|
|
334
|
+
"DEFAULT_SANDBOX_WORKDIR",
|
|
335
|
+
"MAX_TRANSFER_BYTES",
|
|
336
|
+
]
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
"""Unit tests for the Workspace ↔ Sandbox tools + s01 PDF document blocks."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import asyncio
|
|
6
|
+
import base64
|
|
7
|
+
from pathlib import Path
|
|
8
|
+
from types import SimpleNamespace
|
|
9
|
+
|
|
10
|
+
import pytest
|
|
11
|
+
|
|
12
|
+
import geny_executor.tools._sandbox as sb_mod
|
|
13
|
+
from geny_executor.stages.s01_input.artifact.default.normalizers import MultimodalNormalizer
|
|
14
|
+
from geny_executor.tools.built_in.workspace_tools import (
|
|
15
|
+
SandboxFetchTool,
|
|
16
|
+
SandboxInfoTool,
|
|
17
|
+
SandboxPutTool,
|
|
18
|
+
WorkspaceInfoTool,
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def _ctx(storage: str | None, sandbox=None):
|
|
23
|
+
return SimpleNamespace(storage_path=storage, sandbox=sandbox, working_dir=storage or ".")
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def _run(coro):
|
|
27
|
+
return asyncio.run(coro)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# ── WorkspaceInfo ────────────────────────────────────────────────────
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def test_workspace_info_summary_and_subtree(tmp_path):
|
|
34
|
+
(tmp_path / "workspace/uploads").mkdir(parents=True)
|
|
35
|
+
(tmp_path / "workspace/uploads/a.txt").write_text("hello")
|
|
36
|
+
(tmp_path / "workspace/outputs").mkdir(parents=True)
|
|
37
|
+
(tmp_path / "workspace/outputs/b.bin").write_bytes(b"12345678")
|
|
38
|
+
(tmp_path / "note.md").write_text("root file")
|
|
39
|
+
|
|
40
|
+
tool = WorkspaceInfoTool()
|
|
41
|
+
summary = _run(tool.execute({}, _ctx(str(tmp_path)))).content
|
|
42
|
+
assert any(d["dir"] == "workspace/" for d in summary["directories"])
|
|
43
|
+
assert any(f["file"] == "note.md" for f in summary["files"])
|
|
44
|
+
|
|
45
|
+
sub = _run(tool.execute({"path": "workspace"}, _ctx(str(tmp_path)))).content
|
|
46
|
+
paths = {f["path"] for f in sub["files"]}
|
|
47
|
+
assert paths == {"workspace/uploads/a.txt", "workspace/outputs/b.bin"}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def test_workspace_info_guards(tmp_path):
|
|
51
|
+
tool = WorkspaceInfoTool()
|
|
52
|
+
res = _run(tool.execute({"path": "../../etc"}, _ctx(str(tmp_path))))
|
|
53
|
+
assert res.is_error and res.content["error"] == "PATH_ESCAPE"
|
|
54
|
+
res2 = _run(tool.execute({}, _ctx(None)))
|
|
55
|
+
assert res2.is_error and res2.content["error"] == "NO_STORAGE"
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
# ── Sandbox transfer (fake sandbox via monkeypatched primitives) ────
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
class _FakeSandboxFS:
|
|
62
|
+
"""In-memory 'container' filesystem keyed by resolved container path."""
|
|
63
|
+
|
|
64
|
+
def __init__(self):
|
|
65
|
+
self.files: dict[str, bytes] = {}
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
@pytest.fixture()
|
|
69
|
+
def fake_sandbox(monkeypatch):
|
|
70
|
+
fs = _FakeSandboxFS()
|
|
71
|
+
|
|
72
|
+
async def fake_write(sandbox, path, data, *, workdir):
|
|
73
|
+
fs.files[sb_mod.container_path(path, workdir)] = data
|
|
74
|
+
return len(data)
|
|
75
|
+
|
|
76
|
+
async def fake_read(sandbox, path, *, workdir):
|
|
77
|
+
cpath = sb_mod.container_path(path, workdir)
|
|
78
|
+
if cpath not in fs.files:
|
|
79
|
+
raise FileNotFoundError(path)
|
|
80
|
+
return fs.files[cpath]
|
|
81
|
+
|
|
82
|
+
monkeypatch.setattr(sb_mod, "sb_write_bytes", fake_write)
|
|
83
|
+
monkeypatch.setattr(sb_mod, "sb_read_bytes", fake_read)
|
|
84
|
+
return fs
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
def test_sandbox_put_and_fetch_roundtrip(tmp_path, fake_sandbox):
|
|
88
|
+
(tmp_path / "workspace/uploads").mkdir(parents=True)
|
|
89
|
+
src = tmp_path / "workspace/uploads/data.csv"
|
|
90
|
+
src.write_bytes(b"a,b\n1,2\n")
|
|
91
|
+
ctx = _ctx(str(tmp_path), sandbox=object())
|
|
92
|
+
|
|
93
|
+
put = _run(SandboxPutTool().execute({"source": "workspace/uploads/data.csv"}, ctx))
|
|
94
|
+
assert not put.is_error, put.content
|
|
95
|
+
assert put.content["sandbox_path"] == "/workspace/data.csv"
|
|
96
|
+
assert fake_sandbox.files["/workspace/data.csv"] == b"a,b\n1,2\n"
|
|
97
|
+
|
|
98
|
+
# mutate in the "sandbox", then fetch back to the default outputs path
|
|
99
|
+
fake_sandbox.files["/workspace/result.csv"] = b"a,b\n9,9\n"
|
|
100
|
+
fetch = _run(SandboxFetchTool().execute({"source": "result.csv"}, ctx))
|
|
101
|
+
assert not fetch.is_error, fetch.content
|
|
102
|
+
assert fetch.content["workspace_path"] == "workspace/outputs/result.csv"
|
|
103
|
+
assert (tmp_path / "workspace/outputs/result.csv").read_bytes() == b"a,b\n9,9\n"
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
def test_sandbox_tools_require_sandbox(tmp_path):
|
|
107
|
+
ctx = _ctx(str(tmp_path), sandbox=None)
|
|
108
|
+
assert _run(SandboxPutTool().execute({"source": "x"}, ctx)).content["error"] == "NO_SANDBOX"
|
|
109
|
+
assert _run(SandboxFetchTool().execute({"source": "x"}, ctx)).content["error"] == "NO_SANDBOX"
|
|
110
|
+
info = _run(SandboxInfoTool().execute({}, ctx)).content
|
|
111
|
+
assert info["attached"] is False
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
def test_sandbox_fetch_dest_guard(tmp_path, fake_sandbox):
|
|
115
|
+
fake_sandbox.files["/workspace/evil"] = b"x"
|
|
116
|
+
ctx = _ctx(str(tmp_path), sandbox=object())
|
|
117
|
+
res = _run(SandboxFetchTool().execute({"source": "evil", "dest": "../../etc/passwd"}, ctx))
|
|
118
|
+
assert res.is_error and res.content["error"] == "PATH_ESCAPE"
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
# ── s01 PDF → Anthropic document block ──────────────────────────────
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
def test_pdf_file_becomes_document_block(tmp_path):
|
|
125
|
+
pdf = tmp_path / "doc.pdf"
|
|
126
|
+
pdf_bytes = b"%PDF-1.4 fake"
|
|
127
|
+
pdf.write_bytes(pdf_bytes)
|
|
128
|
+
|
|
129
|
+
norm = MultimodalNormalizer().normalize({
|
|
130
|
+
"text": "read this",
|
|
131
|
+
"attachments": [{
|
|
132
|
+
"kind": "file", "name": "doc.pdf",
|
|
133
|
+
"mime_type": "application/pdf", "url": f"file://{pdf}",
|
|
134
|
+
}],
|
|
135
|
+
})
|
|
136
|
+
blocks = norm.to_message_content()
|
|
137
|
+
doc = [b for b in blocks if b.get("type") == "document"]
|
|
138
|
+
assert len(doc) == 1
|
|
139
|
+
assert doc[0]["source"]["media_type"] == "application/pdf"
|
|
140
|
+
assert base64.b64decode(doc[0]["source"]["data"]) == pdf_bytes
|
|
141
|
+
# no placeholder text block for the PDF
|
|
142
|
+
assert not any("[attached file" in b.get("text", "") for b in blocks if b.get("type") == "text")
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
def test_non_pdf_file_keeps_placeholder(tmp_path):
|
|
146
|
+
norm = MultimodalNormalizer().normalize({
|
|
147
|
+
"text": "hi",
|
|
148
|
+
"files": [{"name": "deck.pptx",
|
|
149
|
+
"mime_type": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
|
150
|
+
"url": "file:///nonexistent/deck.pptx"}],
|
|
151
|
+
})
|
|
152
|
+
blocks = norm.to_message_content()
|
|
153
|
+
assert any("[attached file: deck.pptx" in b.get("text", "") for b in blocks if b.get("type") == "text")
|
|
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.40.0 → geny_executor-2.41.0}/src/geny_executor/channels/send_message_channel.py
RENAMED
|
File without changes
|
{geny_executor-2.40.0 → geny_executor-2.41.0}/src/geny_executor/channels/user_file_channel.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|