geny-executor 2.1.3__tar.gz → 2.2.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.1.3 → geny_executor-2.2.0}/PKG-INFO +2 -1
- geny_executor-2.2.0/docs/ci/README.md +18 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/pyproject.toml +42 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/__init__.py +41 -3
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/config.py +71 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/diff.py +56 -2
- geny_executor-2.2.0/src/geny_executor/core/environment.py +1787 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/introspection.py +3 -3
- geny_executor-2.2.0/src/geny_executor/core/manifest_factory.py +682 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/mutation.py +200 -9
- geny_executor-2.2.0/src/geny_executor/core/pipeline.py +2688 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/presets.py +1 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/result.py +12 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/schema.py +3 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/shared_keys.py +13 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/stage.py +1 -1
- geny_executor-2.2.0/src/geny_executor/core/state.py +432 -0
- geny_executor-2.2.0/src/geny_executor/events/__init__.py +19 -0
- geny_executor-2.2.0/src/geny_executor/events/bus.py +144 -0
- geny_executor-2.2.0/src/geny_executor/events/catalog.py +733 -0
- geny_executor-2.2.0/src/geny_executor/events/types.py +53 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/hooks/__init__.py +15 -4
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/hooks/config.py +19 -6
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/hooks/events.py +73 -18
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/hooks/runner.py +51 -12
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/_cli_runtime.py +26 -10
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/anthropic.py +125 -64
- geny_executor-2.2.0/src/geny_executor/llm_client/base.py +552 -0
- geny_executor-2.2.0/src/geny_executor/llm_client/claude_code.py +593 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/credentials.py +62 -3
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/google.py +110 -6
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/openai.py +133 -21
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/translators/_canonical.py +1 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/translators/_cli.py +457 -82
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/vllm.py +11 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/embedding/__init__.py +6 -1
- geny_executor-2.2.0/src/geny_executor/memory/embedding/client.py +155 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/embedding/google.py +9 -4
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/embedding/openai.py +43 -4
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/embedding/voyage.py +44 -8
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/factory.py +158 -11
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/notes_store.py +27 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/provider.py +19 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/vector_store.py +120 -7
- geny_executor-2.2.0/src/geny_executor/permission/__init__.py +83 -0
- geny_executor-2.2.0/src/geny_executor/permission/loader.py +235 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/permission/matrix.py +45 -8
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/permission/types.py +90 -3
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/fork.py +2 -6
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/artifact/default/stage.py +43 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s04_guard/artifact/default/stage.py +56 -11
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s05_cache/artifact/default/stage.py +35 -0
- geny_executor-2.2.0/src/geny_executor/stages/s06_api/artifact/default/retry.py +247 -0
- geny_executor-2.2.0/src/geny_executor/stages/s06_api/artifact/default/router.py +275 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/artifact/default/stage.py +182 -9
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/artifact/default/executors.py +52 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/artifact/default/routers.py +237 -10
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/artifact/default/stage.py +18 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/streaming.py +80 -6
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s11_tool_review/artifact/default/reviewers.py +269 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s12_agent/__init__.py +6 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s12_agent/artifact/default/stage.py +25 -0
- geny_executor-2.2.0/src/geny_executor/stages/s12_agent/subagent_type.py +742 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/strategy.py +56 -3
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/artifact/default/stage.py +7 -17
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/artifact/default/strategies.py +206 -1
- geny_executor-2.2.0/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +735 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s16_loop/artifact/default/stage.py +22 -1
- geny_executor-2.2.0/tests/_fixtures/fake_claude.py +543 -0
- geny_executor-2.2.0/tests/_fixtures/geny_manifest_layout.json +669 -0
- geny_executor-2.2.0/tests/_fixtures/manifest_entries.py +39 -0
- geny_executor-2.2.0/tests/contract/test_memory_embedding_credentials.py +234 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_auto_vector.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_curated_global.py +0 -1
- geny_executor-2.2.0/tests/contract/test_memory_vector_breaker.py +217 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/integration/test_cycle_ab_cross_import.py +1 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/conformance/harness.py +52 -3
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/conformance/test_anthropic.py +46 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/conformance/test_claude_code_cli.py +5 -1
- geny_executor-2.2.0/tests/llm_client/conformance/test_google.py +77 -0
- geny_executor-2.2.0/tests/llm_client/conformance/test_openai.py +102 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/conformance/test_vllm.py +9 -0
- geny_executor-2.2.0/tests/llm_client/golden/cli-2.1.149-json.json +1 -0
- geny_executor-2.2.0/tests/llm_client/golden/cli-2.1.149-json.meta +8 -0
- geny_executor-2.2.0/tests/llm_client/golden/cli-2.1.149-stream.jsonl +20 -0
- geny_executor-2.2.0/tests/llm_client/golden/cli-2.1.149-stream.meta +9 -0
- geny_executor-2.2.0/tests/llm_client/golden/cli-2.1.162-stream.jsonl +10 -0
- geny_executor-2.2.0/tests/llm_client/golden/cli-2.1.162-stream.meta +9 -0
- geny_executor-2.2.0/tests/llm_client/golden/test_golden_replay.py +176 -0
- geny_executor-2.2.0/tests/llm_client/live/test_live_canaries.py +230 -0
- geny_executor-2.2.0/tests/llm_client/unit/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/unit/test_anthropic_build_kwargs.py +3 -8
- geny_executor-2.2.0/tests/llm_client/unit/test_anthropic_classify.py +283 -0
- geny_executor-2.2.0/tests/llm_client/unit/test_base_client.py +506 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/unit/test_claude_code.py +329 -4
- geny_executor-2.2.0/tests/llm_client/unit/test_cli_cancellation.py +295 -0
- geny_executor-2.2.0/tests/llm_client/unit/test_cli_event_forwarding.py +211 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/unit/test_cli_runtime.py +0 -3
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/unit/test_credentials.py +77 -0
- geny_executor-2.2.0/tests/llm_client/unit/test_google_classify.py +229 -0
- geny_executor-2.2.0/tests/llm_client/unit/test_openai_client.py +426 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/unit/test_translators_cli_claude_code.py +365 -23
- geny_executor-2.2.0/tests/unit/__init__.py +0 -0
- geny_executor-2.2.0/tests/unit/test_adaptive_router_configure.py +143 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_adhoc_providers.py +7 -3
- geny_executor-2.2.0/tests/unit/test_api_timeout_kwarg.py +153 -0
- geny_executor-2.2.0/tests/unit/test_attach_llm_client_guard.py +183 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_built_in_autoregister.py +5 -1
- geny_executor-2.2.0/tests/unit/test_cache_prefix_key.py +98 -0
- geny_executor-2.2.0/tests/unit/test_cancellation.py +286 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_composite_set_hooks.py +0 -1
- geny_executor-2.2.0/tests/unit/test_concurrent_runs.py +215 -0
- geny_executor-2.2.0/tests/unit/test_config_liveness.py +510 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_cron_runner.py +0 -1
- geny_executor-2.2.0/tests/unit/test_diff_order_keyed.py +137 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_dynamic_persona_builder.py +0 -1
- geny_executor-2.2.0/tests/unit/test_embedding_error_classification.py +148 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_evaluation_chain.py +0 -1
- geny_executor-2.2.0/tests/unit/test_evaluation_chain_configure.py +149 -0
- geny_executor-2.2.0/tests/unit/test_event_catalog.py +229 -0
- geny_executor-2.2.0/tests/unit/test_event_channel_unification.py +184 -0
- geny_executor-2.2.0/tests/unit/test_event_correlation.py +144 -0
- geny_executor-2.2.0/tests/unit/test_external_tool_resolution.py +230 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_fork_multi_provider.py +0 -2
- geny_executor-2.2.0/tests/unit/test_from_manifest_strict_validation.py +103 -0
- geny_executor-2.2.0/tests/unit/test_geny_prod_manifest_repro.py +171 -0
- geny_executor-2.2.0/tests/unit/test_guard_fail_fast.py +163 -0
- geny_executor-2.2.0/tests/unit/test_hook_gate_split.py +157 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_hook_in_process.py +1 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_hook_runner.py +0 -1
- geny_executor-2.2.0/tests/unit/test_hook_taxonomy.py +91 -0
- geny_executor-2.2.0/tests/unit/test_host_selections_resolve.py +72 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_loop_agnostic_lock.py +1 -2
- geny_executor-2.2.0/tests/unit/test_manifest_factory.py +203 -0
- geny_executor-2.2.0/tests/unit/test_manifest_from_dict_hygiene.py +141 -0
- geny_executor-2.2.0/tests/unit/test_manifest_memory_wiring.py +211 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_manifest_provider_validation.py +24 -8
- geny_executor-2.2.0/tests/unit/test_manifest_subagents_memory_sections.py +278 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_annotations_attach.py +6 -5
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_fsm.py +1 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_lifecycle.py +4 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_oauth.py +1 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_resource_retriever.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_memory_hooks_after_callbacks.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_memory_metadata_extension.py +0 -2
- geny_executor-2.2.0/tests/unit/test_model_overrides.py +228 -0
- geny_executor-2.2.0/tests/unit/test_multi_dim_budget_configure.py +157 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_multi_dim_budget_controller.py +0 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_multimodal.py +0 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_operator_tools.py +1 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_permission_mode_promotions.py +0 -1
- geny_executor-2.2.0/tests/unit/test_permission_posture.py +269 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase5_environment.py +3 -1
- geny_executor-2.2.0/tests/unit/test_pipeline_aclose.py +188 -0
- geny_executor-2.2.0/tests/unit/test_pipeline_events_tap.py +232 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_pipeline_from_manifest.py +6 -1
- geny_executor-2.2.0/tests/unit/test_pipeline_hook_lifecycle.py +163 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_plan_mode_tools.py +1 -1
- geny_executor-2.2.0/tests/unit/test_primary_provider_and_build_reports.py +280 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_progressive_disclosure.py +0 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_refresh_backlinks_extension.py +0 -1
- geny_executor-2.2.0/tests/unit/test_refresh_runtime_and_run_lock.py +216 -0
- geny_executor-2.2.0/tests/unit/test_restore_bad_strategy_config.py +137 -0
- geny_executor-2.2.0/tests/unit/test_reviewer_policy_configure.py +124 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_runtime_task_runner.py +0 -1
- geny_executor-2.2.0/tests/unit/test_s06_chunk_forwarding.py +278 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s19_frequency_policy.py +0 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s9b2_task_registry.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s9b3_hitl.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s9b4_summarize.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s9b5_persist.py +0 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_send_message_tool.py +1 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_settings_loader.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skill_phase_10_3.py +0 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skill_phase_10_5_fork.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skill_phase_10_7_watcher.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skill_tool.py +3 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_slash_built_in_control.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_slash_built_in_introspection.py +0 -3
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_slash_md_template.py +0 -1
- geny_executor-2.2.0/tests/unit/test_stage10_ask_hitl.py +479 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_stage10_hook_wiring.py +0 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_stage10_partition_executor.py +0 -2
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_stage10_permission_matrix.py +4 -3
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_stage19_session_summary.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_state_mutation_wiring.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_stm_append_event.py +1 -1
- geny_executor-2.2.0/tests/unit/test_strategy_config_roundtrip.py +218 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_streaming_tool_executor.py +87 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_structured_reflection.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_subagent_credential_propagation.py +0 -2
- geny_executor-2.2.0/tests/unit/test_subagent_manifest_compile.py +415 -0
- geny_executor-2.2.0/tests/unit/test_subagent_pipeline_lifecycle.py +214 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_subagent_type_orchestrator.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_task_tools.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_tool_provider.py +6 -5
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_tool_result_persistence.py +1 -1
- geny_executor-2.2.0/tests/unit/test_turn_boundary_state.py +354 -0
- geny_executor-2.2.0/tests/unit/test_validate_manifest.py +502 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_workspace_propagation.py +0 -1
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_worktree_tools.py +0 -1
- geny_executor-2.1.3/src/geny_executor/core/environment.py +0 -807
- geny_executor-2.1.3/src/geny_executor/core/pipeline.py +0 -1387
- geny_executor-2.1.3/src/geny_executor/core/state.py +0 -241
- geny_executor-2.1.3/src/geny_executor/events/__init__.py +0 -6
- geny_executor-2.1.3/src/geny_executor/events/bus.py +0 -83
- geny_executor-2.1.3/src/geny_executor/events/types.py +0 -29
- geny_executor-2.1.3/src/geny_executor/llm_client/base.py +0 -231
- geny_executor-2.1.3/src/geny_executor/llm_client/claude_code.py +0 -320
- geny_executor-2.1.3/src/geny_executor/memory/embedding/client.py +0 -63
- geny_executor-2.1.3/src/geny_executor/permission/__init__.py +0 -43
- geny_executor-2.1.3/src/geny_executor/permission/loader.py +0 -129
- geny_executor-2.1.3/src/geny_executor/stages/s06_api/artifact/default/retry.py +0 -107
- geny_executor-2.1.3/src/geny_executor/stages/s06_api/artifact/default/router.py +0 -144
- geny_executor-2.1.3/src/geny_executor/stages/s12_agent/subagent_type.py +0 -354
- geny_executor-2.1.3/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +0 -377
- geny_executor-2.1.3/tests/_fixtures/fake_claude.py +0 -221
- geny_executor-2.1.3/tests/llm_client/conformance/test_google.py +0 -36
- geny_executor-2.1.3/tests/llm_client/conformance/test_openai.py +0 -37
- {geny_executor-2.1.3 → geny_executor-2.2.0}/.gitignore +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/LICENSE +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/README.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/README_ko.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/channels/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/channels/send_message_channel.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/channels/user_file_channel.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/artifact.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/builder.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/errors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/slot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/core/snapshot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/cron/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/cron/runner.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/cron/store_abc.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/cron/store_impl/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/cron/store_impl/file_backed.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/cron/store_impl/in_memory.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/cron/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/history/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/history/ab_test.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/history/cost.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/history/models.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/history/monitor.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/history/replay.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/history/service.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/translators/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/llm_client/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/_locks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/_progressive.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/composite/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/composite/handles.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/composite/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/composite/routing.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/composite/snapshot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/embedding/local.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/embedding/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/presets.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/ephemeral.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/frontmatter.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/index_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/layout.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/ltm_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/snapshot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/stm_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/file/timezone.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/connection.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/index_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/ltm_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/notes_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/schema.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/snapshot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/stm_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/providers/sql/vector_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/retriever.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/memory/strategy.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/notifications/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/notifications/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/py.typed +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/runtime/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/runtime/task_executors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/runtime/task_runner.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/security/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/security/import_validator.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/security/script_sandbox.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/session/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/session/freshness.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/session/manager.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/session/persistence.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/session/session.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/settings/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/settings/loader.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/settings/section_registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/bundled/batch/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/bundled/debug/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/bundled/loop/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/bundled/lorem-ipsum/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/bundled/simplify/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/bundled/skillify/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/bundled/stuck/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/bundled/verify/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/bundled_skills.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/frontmatter.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/loader.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/mcp_bridge.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/path_match.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/shell_blocks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/skill_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/skills/watcher.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/_helpers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/cancel.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/clear.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/compact.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/context.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/cost.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/help.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/memory.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/model.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/preset_info.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/status.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/built_in/tasks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/md_template.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/parser.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/slash_commands/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/artifact/default/normalizers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/artifact/default/validators.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/normalizers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s01_input/validators.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/artifact/default/compactors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/artifact/default/retrievers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/compactors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/retrievers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s02_context/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/artifact/default/builders.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/builders.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/persona/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/persona/builder.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/persona/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s03_system/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s04_guard/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s04_guard/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s04_guard/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s04_guard/artifact/default/guards.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s04_guard/guards.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s04_guard/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s04_guard/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s04_guard/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s05_cache/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s05_cache/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s05_cache/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s05_cache/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s05_cache/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s05_cache/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s05_cache/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/_translate.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/artifact/default/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/artifact/google/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/artifact/google/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/artifact/openai/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/artifact/openai/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/retry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s06_api/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/artifact/default/pricing.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/artifact/default/trackers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/pricing.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s07_token/trackers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s08_think/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s08_think/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s08_think/artifact/default/budget.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s08_think/artifact/default/processors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s08_think/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s08_think/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s08_think/processors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s08_think/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s08_think/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/artifact/default/parsers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/artifact/default/signals.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/parsers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/signals.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s09_parse/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/executors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/persistence.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/routers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s10_tool/state_mutation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s11_tool_review/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s11_tool_review/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s11_tool_review/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s11_tool_review/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s11_tool_review/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s12_agent/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s12_agent/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s12_agent/artifact/default/orchestrators.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s12_agent/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s12_agent/orchestrators.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s12_agent/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s12_agent/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s13_task_registry/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s13_task_registry/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s13_task_registry/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s13_task_registry/artifact/default/file_backed_registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s13_task_registry/artifact/default/policies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s13_task_registry/artifact/default/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s13_task_registry/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s13_task_registry/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s13_task_registry/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s14_evaluate/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s15_hitl/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s15_hitl/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s15_hitl/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s15_hitl/artifact/default/requesters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s15_hitl/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s15_hitl/artifact/default/timeouts.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s15_hitl/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s15_hitl/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s16_loop/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s16_loop/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s16_loop/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s16_loop/controllers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s16_loop/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s16_loop/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s17_emit/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s17_emit/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s17_emit/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s17_emit/artifact/default/emitters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s17_emit/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s17_emit/emitters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s17_emit/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s17_emit/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s17_emit/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/_dehydrate.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/artifact/default/persistence.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/insight.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/persistence.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s18_memory/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s19_summarize/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s19_summarize/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s19_summarize/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s19_summarize/artifact/default/importance.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s19_summarize/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s19_summarize/artifact/default/summarizers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s19_summarize/frequency_policy.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s19_summarize/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s19_summarize/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s20_persist/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s20_persist/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s20_persist/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s20_persist/artifact/default/frequencies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s20_persist/artifact/default/persisters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s20_persist/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s20_persist/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s20_persist/restore.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s20_persist/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s21_yield/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s21_yield/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s21_yield/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s21_yield/artifact/default/formatters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s21_yield/artifact/default/multi_format.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s21_yield/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s21_yield/formatters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s21_yield/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/stages/s21_yield/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/adhoc.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/base.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/_path_guard.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/agent_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/ask_user_question_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/bash_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/cron_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/dev_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/edit_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/glob_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/grep_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/notebook_edit_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/operator_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/plan_mode_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/push_notification_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/read_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/send_message_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/task_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/todo_write_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/tool_search_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/web_fetch_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/web_search_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/worktree_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/built_in/write_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/composer.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/errors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/mcp/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/mcp/adapter.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/mcp/credentials.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/mcp/errors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/mcp/manager.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/mcp/oauth.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/mcp/state.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/mcp/uri.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/sandbox.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/scope.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/tools/stage_binding.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/workspace/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/workspace/stack.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/src/geny_executor/workspace/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/_fixtures/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/_fixtures/fake_echo_cli.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/conftest.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/fixtures/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/fixtures/adapter/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/fixtures/adapter/adapter.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/test_c1_six_layer_retrieval.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/test_c2_execution_recording.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/test_c3_reflection_and_promotion.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/test_c4_rest_coverage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/test_c5_embedding_migration.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/test_c6_session_resume.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/test_c7_adapter_parity.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/completeness/test_spec_loads.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/memory_provider_contract.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_embedding_clients.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_error_codes_stability.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_composite.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_composite_routing.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_ephemeral.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_factory.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_file.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_file_layout.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_file_vector.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_sql.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_sql_dialect.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_sql_schema.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_memory_provider_sql_vector.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/contract/test_stage_uniformity.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/integration/test_integration.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/llm_client/conformance/__init__.py +0 -0
- {geny_executor-2.1.3/tests/llm_client/unit → geny_executor-2.2.0/tests/llm_client/golden}/__init__.py +0 -0
- {geny_executor-2.1.3/tests/unit → geny_executor-2.2.0/tests/llm_client/live}/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_adaptive_model_router.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_adaptive_thinking_budget.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_agent_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_artifact_metadata.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_ask_user_question_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_binary_classify_manifest.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_builtin_capabilities.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_builtin_features.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_cron_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_cron_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_dev_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_errors_categories.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_hierarchical_sidecars.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_hooks_and_shared_keys.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_index_list_categories.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_index_render_vault_map.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_interaction_fields.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_introspection.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_llm_client_base.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_llm_client_capabilities.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_llm_client_registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_llm_client_request_types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_llm_client_state.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_llm_summary_compactor.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_manifest_v2.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_manifest_v3_migration.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_credential_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_namespace.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_prompts_skills_bridge.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_uri.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_memory_aware_retriever.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_multi_format_yield.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_multi_provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_note_graph_queries.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_notebook_edit_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_notes_load_pinned.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_ordered_emitter_chain.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_permission_matrix.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase1_foundation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase1_pipeline.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase2_agent_loop.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase2_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase3_context_memory.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase4_think_agent_evaluate.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase5_emit_presets_mcp.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase6_history.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase6_integration.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase7_security.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase9a_preset_regen.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_phase9a_scaffolding.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_pipeline_attach_runtime.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_pipeline_session_runtime.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_provider_driven_strategy.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_push_notification_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_resolve_model_config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s06_provider_selection.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s13_file_backed_registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s13_task_registry_output.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s9b1_tool_review.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s9c1_pipeline_resume.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_s9c2_restore_state.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skill_phase_10_1.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skill_phase_10_2.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skill_phase_10_4_bundled.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skill_phase_10_6_killer.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skill_richer_schema.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_skills_foundation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_slash_commands.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_state_shared_and_local.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_structured_output_parser.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_subagent_descriptor.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_subagent_orchestrator_zero_arg.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_subagent_parallel.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_todo_write_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_tool_abc_uplift.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_tool_call_events.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_tool_errors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_tool_lifecycle_hooks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_tool_search_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_tool_stage_max_concurrency.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_web_fetch_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_web_search_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_workspace.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.2.0}/tests/unit/test_workspace_tools_integration.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: geny-executor
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.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
|
|
@@ -36,6 +36,7 @@ Requires-Dist: psycopg[binary]>=3.1
|
|
|
36
36
|
Requires-Dist: pydantic>=2.0
|
|
37
37
|
Requires-Dist: pyyaml>=6.0
|
|
38
38
|
Provides-Extra: dev
|
|
39
|
+
Requires-Dist: mypy>=1.10; extra == 'dev'
|
|
39
40
|
Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
|
|
40
41
|
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
|
|
41
42
|
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Pending CI workflow updates (2.2.0)
|
|
2
|
+
|
|
3
|
+
`2.2.0-workflow-updates.patch` carries the wave-3 CI changes that could not be
|
|
4
|
+
pushed from the automation environment: the GitHub OAuth token used by the
|
|
5
|
+
release tooling has `repo` scope but not `workflow` scope, and GitHub rejects
|
|
6
|
+
any push that modifies `.github/workflows/*` without it.
|
|
7
|
+
|
|
8
|
+
Contents of the patch:
|
|
9
|
+
- `ci.yml`: ruff now genuinely lints `tests/` (the old config silently
|
|
10
|
+
force-excluded it), a mypy job over `core` + `llm_client`, and an
|
|
11
|
+
events-docs `--check` step (`scripts/gen_event_docs.py`).
|
|
12
|
+
- `publish.yml`: a release gate asserting the pyproject version has a
|
|
13
|
+
matching `## [<version>]` CHANGELOG header before publishing.
|
|
14
|
+
|
|
15
|
+
Apply from a checkout with workflow-scoped credentials:
|
|
16
|
+
|
|
17
|
+
git apply docs/ci/2.2.0-workflow-updates.patch
|
|
18
|
+
git add .github && git commit -m "ci: apply 2.2.0 workflow updates"
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "geny-executor"
|
|
7
|
-
version = "2.
|
|
7
|
+
version = "2.2.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 = "MIT"
|
|
@@ -79,6 +79,7 @@ dev = [
|
|
|
79
79
|
"pytest-asyncio>=0.24",
|
|
80
80
|
"pytest-cov>=5.0",
|
|
81
81
|
"ruff>=0.4.0",
|
|
82
|
+
"mypy>=1.10",
|
|
82
83
|
]
|
|
83
84
|
|
|
84
85
|
[project.urls]
|
|
@@ -120,5 +121,44 @@ markers = [
|
|
|
120
121
|
[tool.ruff]
|
|
121
122
|
target-version = "py311"
|
|
122
123
|
line-length = 100
|
|
123
|
-
|
|
124
|
+
# tests/ is deliberately NOT excluded — CI runs `ruff check src/ tests/`
|
|
125
|
+
# and the config must not silently veto half of that command line.
|
|
126
|
+
# (Pre-2.2.0 `extend-exclude = ["tests"]` + `force-exclude = true` made
|
|
127
|
+
# the tests/ half of the CI invocation a no-op — audit 2026-06-09 §3.7.)
|
|
124
128
|
force-exclude = true
|
|
129
|
+
|
|
130
|
+
[tool.ruff.format]
|
|
131
|
+
# Formatter-only carve-out: tests/ predates formatter enforcement and a
|
|
132
|
+
# blanket reformat would churn ~130 files. *Lint* rules apply to tests/
|
|
133
|
+
# (see above); format normalization of tests/ is tracked separately.
|
|
134
|
+
exclude = ["tests/**"]
|
|
135
|
+
|
|
136
|
+
# ── mypy — typed-surface beachhead ─────────────────────────────────
|
|
137
|
+
# The package ships `py.typed` but had no type-checking CI (audit
|
|
138
|
+
# 2026-06-09 §3.7). Start permissive and on a beachhead: CI runs mypy
|
|
139
|
+
# over core/ and llm_client/ only (the surfaces hosts import against).
|
|
140
|
+
# Tighten incrementally — flip `check_untyped_defs`, then widen the
|
|
141
|
+
# package list — rather than gating the world at once.
|
|
142
|
+
[tool.mypy]
|
|
143
|
+
python_version = "3.11"
|
|
144
|
+
ignore_missing_imports = true
|
|
145
|
+
check_untyped_defs = false
|
|
146
|
+
# Annotation-bearing defs only; untyped bodies are skipped for now.
|
|
147
|
+
follow_imports = "silent"
|
|
148
|
+
no_error_summary = false
|
|
149
|
+
|
|
150
|
+
# Modules with known non-trivial findings (dynamic attributes, conditional
|
|
151
|
+
# function variants, config-object reuse). Each needs a real refactor, not
|
|
152
|
+
# an annotation — parked here so the beachhead gate stays green while the
|
|
153
|
+
# fixes land one module at a time. Findings on file (2026-06-10):
|
|
154
|
+
# core.pipeline — Stage has no `_context` attr (set dynamically)
|
|
155
|
+
# core.mutation — conditional `wrapper` variants differ in arity;
|
|
156
|
+
# `cfg` rebound across ModelConfig/PipelineConfig
|
|
157
|
+
# core.manifest_factory — Optional flows into dict(...) for chain_order
|
|
158
|
+
[[tool.mypy.overrides]]
|
|
159
|
+
module = [
|
|
160
|
+
"geny_executor.core.pipeline",
|
|
161
|
+
"geny_executor.core.mutation",
|
|
162
|
+
"geny_executor.core.manifest_factory",
|
|
163
|
+
]
|
|
164
|
+
ignore_errors = true
|
|
@@ -17,7 +17,7 @@ Usage:
|
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from geny_executor.core.pipeline import Pipeline
|
|
20
|
-
from geny_executor.core.config import PipelineConfig, ModelConfig
|
|
20
|
+
from geny_executor.core.config import PipelineConfig, ModelConfig, ModelOverrides
|
|
21
21
|
from geny_executor.core.state import PipelineState, TokenUsage, CacheMetrics
|
|
22
22
|
from geny_executor.core.result import PipelineResult
|
|
23
23
|
from geny_executor.core.stage import Stage, Strategy, StageDescription, StrategyInfo
|
|
@@ -59,9 +59,12 @@ from geny_executor.core.environment import (
|
|
|
59
59
|
EnvironmentSanitizer,
|
|
60
60
|
EnvironmentSummary,
|
|
61
61
|
HostSelections,
|
|
62
|
+
ManifestIssue,
|
|
62
63
|
StageManifestEntry,
|
|
63
64
|
ToolsSnapshot,
|
|
65
|
+
validate_manifest,
|
|
64
66
|
)
|
|
67
|
+
from geny_executor.core.manifest_factory import build_manifest, known_manifest_presets
|
|
65
68
|
from geny_executor.core.artifact import (
|
|
66
69
|
ArtifactInfo,
|
|
67
70
|
create_stage,
|
|
@@ -78,7 +81,13 @@ from geny_executor.core.introspection import (
|
|
|
78
81
|
introspect_all,
|
|
79
82
|
introspect_stage,
|
|
80
83
|
)
|
|
81
|
-
from geny_executor.events import
|
|
84
|
+
from geny_executor.events import (
|
|
85
|
+
EVENT_CATALOG_VERSION,
|
|
86
|
+
EventBus,
|
|
87
|
+
EventTypes,
|
|
88
|
+
PipelineEvent,
|
|
89
|
+
known_event_types,
|
|
90
|
+
)
|
|
82
91
|
from geny_executor.llm_client import (
|
|
83
92
|
APIRequest,
|
|
84
93
|
APIResponse,
|
|
@@ -93,10 +102,21 @@ from geny_executor.llm_client import (
|
|
|
93
102
|
from geny_executor.memory import (
|
|
94
103
|
GenyPresets,
|
|
95
104
|
MemoryAwareRetriever,
|
|
105
|
+
MemoryProviderFactory,
|
|
96
106
|
ProviderDrivenStrategy,
|
|
97
107
|
)
|
|
108
|
+
from geny_executor.memory.factory import provider_from_manifest_memory
|
|
109
|
+
from geny_executor.stages.s12_agent.subagent_type import (
|
|
110
|
+
ManifestSubagentPipelineFactory,
|
|
111
|
+
SubAgentBuildContext,
|
|
112
|
+
SubagentTypeDescriptor,
|
|
113
|
+
SubagentTypeOrchestrator,
|
|
114
|
+
SubagentTypeRegistry,
|
|
115
|
+
compile_subagent_descriptors,
|
|
116
|
+
resolve_subagent_provider,
|
|
117
|
+
)
|
|
98
118
|
|
|
99
|
-
__version__ = "2.
|
|
119
|
+
__version__ = "2.2.0"
|
|
100
120
|
|
|
101
121
|
__all__ = [
|
|
102
122
|
# Core
|
|
@@ -105,6 +125,7 @@ __all__ = [
|
|
|
105
125
|
"PipelineState",
|
|
106
126
|
"PipelineResult",
|
|
107
127
|
"ModelConfig",
|
|
128
|
+
"ModelOverrides",
|
|
108
129
|
"TokenUsage",
|
|
109
130
|
"CacheMetrics",
|
|
110
131
|
# Abstractions
|
|
@@ -127,8 +148,12 @@ __all__ = [
|
|
|
127
148
|
"EnvironmentSanitizer",
|
|
128
149
|
"EnvironmentSummary",
|
|
129
150
|
"HostSelections",
|
|
151
|
+
"ManifestIssue",
|
|
130
152
|
"StageManifestEntry",
|
|
131
153
|
"ToolsSnapshot",
|
|
154
|
+
"validate_manifest",
|
|
155
|
+
"build_manifest",
|
|
156
|
+
"known_manifest_presets",
|
|
132
157
|
"DiffEntry",
|
|
133
158
|
"EnvironmentDiff",
|
|
134
159
|
# Artifact system
|
|
@@ -146,8 +171,11 @@ __all__ = [
|
|
|
146
171
|
"introspect_all",
|
|
147
172
|
"introspect_stage",
|
|
148
173
|
# Events
|
|
174
|
+
"EVENT_CATALOG_VERSION",
|
|
149
175
|
"EventBus",
|
|
176
|
+
"EventTypes",
|
|
150
177
|
"PipelineEvent",
|
|
178
|
+
"known_event_types",
|
|
151
179
|
# LLM clients (unified)
|
|
152
180
|
"APIRequest",
|
|
153
181
|
"APIResponse",
|
|
@@ -182,6 +210,16 @@ __all__ = [
|
|
|
182
210
|
"MutationResult",
|
|
183
211
|
# Memory plumbing (provider-driven)
|
|
184
212
|
"MemoryAwareRetriever",
|
|
213
|
+
"MemoryProviderFactory",
|
|
185
214
|
"ProviderDrivenStrategy",
|
|
186
215
|
"GenyPresets",
|
|
216
|
+
"provider_from_manifest_memory",
|
|
217
|
+
# Sub-agent types (manifest-expressible since 2.2.0 Wave 3)
|
|
218
|
+
"ManifestSubagentPipelineFactory",
|
|
219
|
+
"SubAgentBuildContext",
|
|
220
|
+
"SubagentTypeDescriptor",
|
|
221
|
+
"SubagentTypeOrchestrator",
|
|
222
|
+
"SubagentTypeRegistry",
|
|
223
|
+
"compile_subagent_descriptors",
|
|
224
|
+
"resolve_subagent_provider",
|
|
187
225
|
]
|
|
@@ -80,6 +80,77 @@ class ModelConfig:
|
|
|
80
80
|
return cls(**kwargs)
|
|
81
81
|
|
|
82
82
|
|
|
83
|
+
@dataclass(frozen=True)
|
|
84
|
+
class ModelOverrides:
|
|
85
|
+
"""One-run model overrides for ``Pipeline.run`` / ``run_stream``.
|
|
86
|
+
|
|
87
|
+
Why (2.2.0, audit 2026-06-09 §3.1): there was no sanctioned way to
|
|
88
|
+
say "this run only, use opus / a bigger budget". GAPT compensated
|
|
89
|
+
by mutating ``pipeline._config.model.*`` directly with a hand-built
|
|
90
|
+
baseline/revert dance — a private-attribute hack that leaked
|
|
91
|
+
overrides into later runs whenever the revert path was skipped.
|
|
92
|
+
This dataclass is the public funnel for that need.
|
|
93
|
+
|
|
94
|
+
Semantics:
|
|
95
|
+
- Every field is ``Optional``; only non-``None`` fields are
|
|
96
|
+
applied. They are written onto the :class:`PipelineState`
|
|
97
|
+
AFTER ``PipelineConfig.apply_to_state`` at run start, so they
|
|
98
|
+
win over manifest/config values **for that run only**.
|
|
99
|
+
- Lifetime is exactly one run: the next run's
|
|
100
|
+
``apply_to_state`` stomps the state fields back to config
|
|
101
|
+
values (that stomp is the documented semantic, not an
|
|
102
|
+
accident). No revert bookkeeping is needed.
|
|
103
|
+
- Each applied field emits a ``config.override_applied`` event
|
|
104
|
+
(``{"field", "value", "source": "per_run"}``) into the run's
|
|
105
|
+
event stream so hosts can render *why* this run used a
|
|
106
|
+
different model (audit §3.1's "config.resolved" reporting,
|
|
107
|
+
scoped to the override layer).
|
|
108
|
+
|
|
109
|
+
Frozen: an overrides object is a value, not a channel — build a
|
|
110
|
+
new one per run rather than mutating a shared instance.
|
|
111
|
+
|
|
112
|
+
This is the HIGHEST-precedence configuration channel (per-run
|
|
113
|
+
overrides > mutator/refresh > attach_runtime > manifest >
|
|
114
|
+
defaults); see docs/architecture.md#configuration-precedence.
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
model: Optional[str] = None
|
|
118
|
+
max_tokens: Optional[int] = None
|
|
119
|
+
temperature: Optional[float] = None
|
|
120
|
+
top_p: Optional[float] = None
|
|
121
|
+
thinking_enabled: Optional[bool] = None
|
|
122
|
+
thinking_budget_tokens: Optional[int] = None
|
|
123
|
+
|
|
124
|
+
def non_none_fields(self) -> Dict[str, Any]:
|
|
125
|
+
"""Return ``{field: value}`` for every field that is set.
|
|
126
|
+
|
|
127
|
+
Field names intentionally match the :class:`PipelineState`
|
|
128
|
+
attribute names 1:1 so application is a plain ``setattr`` walk
|
|
129
|
+
— adding a field here requires only the dataclass line plus
|
|
130
|
+
the matching state attribute.
|
|
131
|
+
"""
|
|
132
|
+
out: Dict[str, Any] = {}
|
|
133
|
+
for key in (
|
|
134
|
+
"model",
|
|
135
|
+
"max_tokens",
|
|
136
|
+
"temperature",
|
|
137
|
+
"top_p",
|
|
138
|
+
"thinking_enabled",
|
|
139
|
+
"thinking_budget_tokens",
|
|
140
|
+
):
|
|
141
|
+
value = getattr(self, key)
|
|
142
|
+
if value is not None:
|
|
143
|
+
out[key] = value
|
|
144
|
+
return out
|
|
145
|
+
|
|
146
|
+
def apply_to_state(self, state: "PipelineState") -> Dict[str, Any]:
|
|
147
|
+
"""Write the non-``None`` fields onto *state*; return what was applied."""
|
|
148
|
+
applied = self.non_none_fields()
|
|
149
|
+
for key, value in applied.items():
|
|
150
|
+
setattr(state, key, value)
|
|
151
|
+
return applied
|
|
152
|
+
|
|
153
|
+
|
|
83
154
|
@dataclass
|
|
84
155
|
class PipelineConfig:
|
|
85
156
|
"""Top-level pipeline configuration."""
|
|
@@ -6,6 +6,32 @@ from dataclasses import dataclass, field
|
|
|
6
6
|
from typing import Any, ClassVar, Dict, List, Optional, Set
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
def _order_keyed(items: List[Any]) -> Optional[Dict[int, Dict[str, Any]]]:
|
|
10
|
+
"""Return ``order → entry`` when *items* is an order-keyed entity list.
|
|
11
|
+
|
|
12
|
+
A list qualifies when it is non-empty, every element is a dict
|
|
13
|
+
carrying an int-able ``order`` key, and the orders are unique.
|
|
14
|
+
Stage manifest entries are the canonical case; the shape test is
|
|
15
|
+
structural so any future order-keyed list (and hosts' own payloads)
|
|
16
|
+
benefits without a schema registry.
|
|
17
|
+
|
|
18
|
+
Returns ``None`` when the list does not qualify — callers fall back
|
|
19
|
+
to the positional strategies.
|
|
20
|
+
"""
|
|
21
|
+
if not items or not all(isinstance(x, dict) and "order" in x for x in items):
|
|
22
|
+
return None
|
|
23
|
+
keyed: Dict[int, Dict[str, Any]] = {}
|
|
24
|
+
for entry in items:
|
|
25
|
+
try:
|
|
26
|
+
order = int(entry["order"])
|
|
27
|
+
except (TypeError, ValueError):
|
|
28
|
+
return None
|
|
29
|
+
if order in keyed:
|
|
30
|
+
return None # duplicate orders — positional fallback is honest
|
|
31
|
+
keyed[order] = entry
|
|
32
|
+
return keyed
|
|
33
|
+
|
|
34
|
+
|
|
9
35
|
@dataclass
|
|
10
36
|
class DiffEntry:
|
|
11
37
|
"""A single difference between two environment configs."""
|
|
@@ -115,8 +141,36 @@ class EnvironmentDiff:
|
|
|
115
141
|
entries.extend(sub.entries)
|
|
116
142
|
elif isinstance(a[key], list) and isinstance(b[key], list):
|
|
117
143
|
if a[key] != b[key]:
|
|
118
|
-
#
|
|
119
|
-
|
|
144
|
+
# Order-keyed entity lists (stage manifest entries)
|
|
145
|
+
# diff per-order rather than positionally. Before
|
|
146
|
+
# 2.2.0 (audit §3.1), two stage lists of unequal
|
|
147
|
+
# length collapsed into ONE opaque "changed" blob —
|
|
148
|
+
# a 16-stage stored manifest diffed against the
|
|
149
|
+
# 21-stage canonical layout reported nothing usable.
|
|
150
|
+
# Keying by ``order`` makes added / removed /
|
|
151
|
+
# changed stages individually addressable
|
|
152
|
+
# (``stages[order=N].…`` paths), and stays correct
|
|
153
|
+
# when one side reordered its array.
|
|
154
|
+
a_keyed = _order_keyed(a[key])
|
|
155
|
+
b_keyed = _order_keyed(b[key])
|
|
156
|
+
if a_keyed is not None and b_keyed is not None:
|
|
157
|
+
for order in sorted(set(a_keyed) | set(b_keyed)):
|
|
158
|
+
entry_path = f"{path}[order={order}]"
|
|
159
|
+
if order not in a_keyed:
|
|
160
|
+
entries.append(
|
|
161
|
+
DiffEntry(entry_path, "added", new_value=b_keyed[order])
|
|
162
|
+
)
|
|
163
|
+
elif order not in b_keyed:
|
|
164
|
+
entries.append(
|
|
165
|
+
DiffEntry(entry_path, "removed", old_value=a_keyed[order])
|
|
166
|
+
)
|
|
167
|
+
else:
|
|
168
|
+
sub = cls.compute(
|
|
169
|
+
a_keyed[order], b_keyed[order], entry_path, ignore_keys
|
|
170
|
+
)
|
|
171
|
+
entries.extend(sub.entries)
|
|
172
|
+
# Positional fallback: same length + all dicts.
|
|
173
|
+
elif (
|
|
120
174
|
len(a[key]) == len(b[key])
|
|
121
175
|
and all(isinstance(x, dict) for x in a[key])
|
|
122
176
|
and all(isinstance(x, dict) for x in b[key])
|