crewplane 0.1.0a1__py3-none-any.whl
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.
- crewplane-0.1.0a1.dist-info/METADATA +110 -0
- crewplane-0.1.0a1.dist-info/RECORD +410 -0
- crewplane-0.1.0a1.dist-info/WHEEL +4 -0
- crewplane-0.1.0a1.dist-info/entry_points.txt +2 -0
- crewplane-0.1.0a1.dist-info/licenses/LICENSE +201 -0
- orchestrator_cli/__init__.py +3 -0
- orchestrator_cli/adapters/__init__.py +1 -0
- orchestrator_cli/adapters/artifacts/__init__.py +3 -0
- orchestrator_cli/adapters/artifacts/filesystem.py +86 -0
- orchestrator_cli/adapters/invokers/__init__.py +4 -0
- orchestrator_cli/adapters/invokers/cli.py +141 -0
- orchestrator_cli/adapters/invokers/cli_invoker/__init__.py +13 -0
- orchestrator_cli/adapters/invokers/cli_invoker/capabilities.py +241 -0
- orchestrator_cli/adapters/invokers/mock.py +62 -0
- orchestrator_cli/adapters/invokers/mock_invoker/__init__.py +4 -0
- orchestrator_cli/adapters/invokers/mock_invoker/context.py +43 -0
- orchestrator_cli/adapters/invokers/mock_invoker/fixtures.py +42 -0
- orchestrator_cli/adapters/invokers/mock_invoker/invoker.py +236 -0
- orchestrator_cli/adapters/invokers/mock_invoker/logging.py +80 -0
- orchestrator_cli/adapters/invokers/mock_invoker/mutations.py +201 -0
- orchestrator_cli/adapters/invokers/mock_invoker/options.py +142 -0
- orchestrator_cli/adapters/invokers/mock_invoker/outputs.py +39 -0
- orchestrator_cli/adapters/invokers/mock_invoker/selectors.py +86 -0
- orchestrator_cli/adapters/ui/__init__.py +4 -0
- orchestrator_cli/adapters/ui/null.py +86 -0
- orchestrator_cli/adapters/ui/tmux.py +158 -0
- orchestrator_cli/architecture/__init__.py +13 -0
- orchestrator_cli/architecture/contracts/__init__.py +124 -0
- orchestrator_cli/architecture/contracts/integration.py +99 -0
- orchestrator_cli/architecture/contracts/integration_options.py +51 -0
- orchestrator_cli/architecture/contracts/invocation.py +417 -0
- orchestrator_cli/architecture/contracts/json.py +5 -0
- orchestrator_cli/architecture/contracts/observer.py +49 -0
- orchestrator_cli/architecture/errors.py +17 -0
- orchestrator_cli/architecture/loader.py +212 -0
- orchestrator_cli/architecture/ports/__init__.py +14 -0
- orchestrator_cli/architecture/ports/artifacts.py +160 -0
- orchestrator_cli/architecture/ports/invoker.py +29 -0
- orchestrator_cli/architecture/ports/runtime.py +41 -0
- orchestrator_cli/architecture/ports/ui.py +49 -0
- orchestrator_cli/architecture/registry.py +35 -0
- orchestrator_cli/artifacts/__init__.py +23 -0
- orchestrator_cli/artifacts/atomic.py +93 -0
- orchestrator_cli/artifacts/directory_manager.py +151 -0
- orchestrator_cli/artifacts/failure_artifacts.py +40 -0
- orchestrator_cli/artifacts/generated_files/__init__.py +1 -0
- orchestrator_cli/artifacts/generated_files/catalog.py +314 -0
- orchestrator_cli/artifacts/generated_files/detection.py +266 -0
- orchestrator_cli/artifacts/locks/__init__.py +329 -0
- orchestrator_cli/artifacts/locks/manifest.py +178 -0
- orchestrator_cli/artifacts/locks/process_identity.py +57 -0
- orchestrator_cli/artifacts/manager.py +233 -0
- orchestrator_cli/artifacts/naming.py +139 -0
- orchestrator_cli/artifacts/results/__init__.py +1 -0
- orchestrator_cli/artifacts/results/aggregation.py +116 -0
- orchestrator_cli/artifacts/results/findings.py +92 -0
- orchestrator_cli/artifacts/results/review_loop_status.py +204 -0
- orchestrator_cli/artifacts/results/selection.py +86 -0
- orchestrator_cli/artifacts/results/stage_document.py +80 -0
- orchestrator_cli/artifacts/results/stage_outputs.py +16 -0
- orchestrator_cli/artifacts/results/writer.py +169 -0
- orchestrator_cli/artifacts/resume/__init__.py +1 -0
- orchestrator_cli/artifacts/resume/decision.py +39 -0
- orchestrator_cli/artifacts/resume/generated_files.py +71 -0
- orchestrator_cli/artifacts/resume/hydration.py +474 -0
- orchestrator_cli/artifacts/resume/validation.py +349 -0
- orchestrator_cli/artifacts/run_history.py +218 -0
- orchestrator_cli/artifacts/safe_files.py +59 -0
- orchestrator_cli/artifacts/workspace/__init__.py +1 -0
- orchestrator_cli/artifacts/workspace/bundle_validation.py +486 -0
- orchestrator_cli/artifacts/workspace/git_blob_hash.py +98 -0
- orchestrator_cli/artifacts/workspace/node_state.py +332 -0
- orchestrator_cli/artifacts/workspace/rendered_file_validation.py +300 -0
- orchestrator_cli/artifacts/workspace/source_validation.py +378 -0
- orchestrator_cli/artifacts/workspace/state/__init__.py +5 -0
- orchestrator_cli/artifacts/workspace/state/expected_set.py +170 -0
- orchestrator_cli/artifacts/workspace/state/fields.py +50 -0
- orchestrator_cli/artifacts/workspace/state/invocations.py +280 -0
- orchestrator_cli/artifacts/workspace/state/validation.py +494 -0
- orchestrator_cli/bootstrap/__init__.py +11 -0
- orchestrator_cli/bootstrap/container.py +113 -0
- orchestrator_cli/bootstrap/runtime_config.py +136 -0
- orchestrator_cli/cli/__init__.py +3 -0
- orchestrator_cli/cli/app.py +397 -0
- orchestrator_cli/cli/cleanup.py +303 -0
- orchestrator_cli/cli/dry_run.py +182 -0
- orchestrator_cli/cli/paths.py +73 -0
- orchestrator_cli/cli/run/__init__.py +1 -0
- orchestrator_cli/cli/run/best_effort_thread.py +38 -0
- orchestrator_cli/cli/run/branch_export_output.py +125 -0
- orchestrator_cli/cli/run/components.py +65 -0
- orchestrator_cli/cli/run/context.py +60 -0
- orchestrator_cli/cli/run/execution.py +293 -0
- orchestrator_cli/cli/run/execution_helpers.py +168 -0
- orchestrator_cli/cli/run/historical_summary.py +360 -0
- orchestrator_cli/cli/run/manifest.py +95 -0
- orchestrator_cli/cli/run/observability.py +385 -0
- orchestrator_cli/cli/run/preflight.py +353 -0
- orchestrator_cli/cli/run/preflight_success.py +89 -0
- orchestrator_cli/cli/run/resume.py +300 -0
- orchestrator_cli/cli/run/topology.py +51 -0
- orchestrator_cli/cli/run/workspace/__init__.py +1 -0
- orchestrator_cli/cli/run/workspace/cache_policy.py +67 -0
- orchestrator_cli/cli/run/workspace/disk_policy.py +192 -0
- orchestrator_cli/cli/run/workspace/filesystem_policy.py +97 -0
- orchestrator_cli/cli/run/workspace/git_attributes.py +150 -0
- orchestrator_cli/cli/run/workspace/git_index.py +162 -0
- orchestrator_cli/cli/run/workspace/git_source.py +369 -0
- orchestrator_cli/cli/run/workspace/preflight_diagnostics.py +57 -0
- orchestrator_cli/cli/run/workspace/repo_policy.py +420 -0
- orchestrator_cli/cli/run/workspace/source_policy.py +322 -0
- orchestrator_cli/cli/run/workspace/source_types.py +28 -0
- orchestrator_cli/cli/templates.py +75 -0
- orchestrator_cli/cli/workflow_runner.py +23 -0
- orchestrator_cli/core/__init__.py +5 -0
- orchestrator_cli/core/config.py +333 -0
- orchestrator_cli/core/config_workspace.py +169 -0
- orchestrator_cli/core/execution_state.py +194 -0
- orchestrator_cli/core/file_hashing.py +18 -0
- orchestrator_cli/core/platform.py +12 -0
- orchestrator_cli/core/preflight/__init__.py +67 -0
- orchestrator_cli/core/preflight/compile_state.py +281 -0
- orchestrator_cli/core/preflight/compiler.py +385 -0
- orchestrator_cli/core/preflight/dependency_edges.py +56 -0
- orchestrator_cli/core/preflight/diagnostics.py +62 -0
- orchestrator_cli/core/preflight/execution_nodes.py +181 -0
- orchestrator_cli/core/preflight/fragment_handlers.py +405 -0
- orchestrator_cli/core/preflight/input_sources.py +215 -0
- orchestrator_cli/core/preflight/models.py +385 -0
- orchestrator_cli/core/preflight/plan_contract.py +117 -0
- orchestrator_cli/core/preflight/plan_signatures.py +163 -0
- orchestrator_cli/core/preflight/prompt_transport_warnings.py +38 -0
- orchestrator_cli/core/preflight/references.py +76 -0
- orchestrator_cli/core/preflight/render_plans.py +387 -0
- orchestrator_cli/core/preflight/runner.py +17 -0
- orchestrator_cli/core/preflight/runtime_config/__init__.py +403 -0
- orchestrator_cli/core/preflight/runtime_config/redaction.py +314 -0
- orchestrator_cli/core/preflight/secrets.py +206 -0
- orchestrator_cli/core/preflight/serialization.py +48 -0
- orchestrator_cli/core/preflight/signatures.py +11 -0
- orchestrator_cli/core/preflight/source.py +156 -0
- orchestrator_cli/core/preflight/static_resources.py +148 -0
- orchestrator_cli/core/preflight/token_catalog.py +47 -0
- orchestrator_cli/core/preflight/validation.py +118 -0
- orchestrator_cli/core/preflight/value_fingerprints.py +79 -0
- orchestrator_cli/core/preflight/variables.py +7 -0
- orchestrator_cli/core/preflight/workspace/__init__.py +1 -0
- orchestrator_cli/core/preflight/workspace/files/__init__.py +1 -0
- orchestrator_cli/core/preflight/workspace/files/git_reads.py +161 -0
- orchestrator_cli/core/preflight/workspace/files/locators.py +412 -0
- orchestrator_cli/core/preflight/workspace/files/paths.py +70 -0
- orchestrator_cli/core/preflight/workspace/files/selection.py +75 -0
- orchestrator_cli/core/preflight/workspace/models.py +96 -0
- orchestrator_cli/core/preflight/workspace/observability.py +212 -0
- orchestrator_cli/core/preflight/workspace/records.py +63 -0
- orchestrator_cli/core/preflight/workspace/snapshot_guard.py +44 -0
- orchestrator_cli/core/prompt_segments.py +46 -0
- orchestrator_cli/core/provider_names.py +12 -0
- orchestrator_cli/core/review_contract.py +62 -0
- orchestrator_cli/core/token_budget.py +94 -0
- orchestrator_cli/core/value_checks.py +11 -0
- orchestrator_cli/core/workflow_composition/__init__.py +14 -0
- orchestrator_cli/core/workflow_composition/imports.py +79 -0
- orchestrator_cli/core/workflow_composition/models.py +84 -0
- orchestrator_cli/core/workflow_composition/nodes.py +116 -0
- orchestrator_cli/core/workflow_composition/parsing.py +86 -0
- orchestrator_cli/core/workflow_composition/rewrites.py +102 -0
- orchestrator_cli/core/workflow_composition/traversal.py +373 -0
- orchestrator_cli/core/workflow_diagnostics.py +38 -0
- orchestrator_cli/core/workflow_graph.py +75 -0
- orchestrator_cli/core/workflow_keywords.py +49 -0
- orchestrator_cli/core/workflow_loader.py +111 -0
- orchestrator_cli/core/workflow_markdown/__init__.py +78 -0
- orchestrator_cli/core/workflow_markdown/frontmatter.py +67 -0
- orchestrator_cli/core/workflow_markdown/markers.py +187 -0
- orchestrator_cli/core/workflow_markdown/models.py +264 -0
- orchestrator_cli/core/workflow_markdown/payloads.py +101 -0
- orchestrator_cli/core/workflow_markdown/sections.py +124 -0
- orchestrator_cli/core/workflow_models.py +319 -0
- orchestrator_cli/core/workflow_syntax.py +14 -0
- orchestrator_cli/core/workflow_validation.py +142 -0
- orchestrator_cli/core/workflow_validation_node_modes.py +298 -0
- orchestrator_cli/core/workflow_validation_nodes.py +156 -0
- orchestrator_cli/core/workflow_validation_policies.py +111 -0
- orchestrator_cli/core/workflow_validation_templates.py +219 -0
- orchestrator_cli/core/workflow_validation_workspace.py +229 -0
- orchestrator_cli/core/workflow_workspace_diagnostics.py +321 -0
- orchestrator_cli/core/workspace_cache.py +14 -0
- orchestrator_cli/core/workspace_git_policy.py +185 -0
- orchestrator_cli/core/workspace_policy.py +213 -0
- orchestrator_cli/core/workspace_selection.py +29 -0
- orchestrator_cli/core/yaml_loader.py +60 -0
- orchestrator_cli/example_templates/code-review-example.task.md +108 -0
- orchestrator_cli/example_templates/config.yml +216 -0
- orchestrator_cli/example_templates/example-templates/composition/review-findings-producer-example.task.md +19 -0
- orchestrator_cli/example_templates/example-templates/composition/review-fix-composed-example.task.md +38 -0
- orchestrator_cli/example_templates/example-templates/composition/review-fix-consumer-example.task.md +49 -0
- orchestrator_cli/example_templates/example-templates/design-review-example.task.md +70 -0
- orchestrator_cli/example_templates/example-templates/feature-implement-example.task.md +91 -0
- orchestrator_cli/example_templates/example-templates/multi-executor-review-chain-example.task.md +74 -0
- orchestrator_cli/example_templates/example-templates/refactoring-example.task.md +93 -0
- orchestrator_cli/example_templates/example-templates/sample-inputs/coding-standards.md +4 -0
- orchestrator_cli/example_templates/example-templates/sample-inputs/feature-brief.md +4 -0
- orchestrator_cli/example_templates/example-templates/sample-inputs/review-findings.md +9 -0
- orchestrator_cli/example_templates/example-templates/test-generation-example.task.md +87 -0
- orchestrator_cli/example_templates/example-templates/worktree/workspace-alternatives-example.task.md +49 -0
- orchestrator_cli/example_templates/example-templates/worktree/workspace-inherited-worktree-example.task.md +42 -0
- orchestrator_cli/observability/__init__.py +66 -0
- orchestrator_cli/observability/dag_graph.py +334 -0
- orchestrator_cli/observability/dag_render.py +141 -0
- orchestrator_cli/observability/events/__init__.py +81 -0
- orchestrator_cli/observability/events/builders.py +215 -0
- orchestrator_cli/observability/events/dashboard_state.py +129 -0
- orchestrator_cli/observability/events/execution_event.py +80 -0
- orchestrator_cli/observability/events/log.py +28 -0
- orchestrator_cli/observability/events/payloads.py +199 -0
- orchestrator_cli/observability/events/reducer.py +214 -0
- orchestrator_cli/observability/events/types.py +40 -0
- orchestrator_cli/observability/layout.py +188 -0
- orchestrator_cli/observability/log_presentation/__init__.py +26 -0
- orchestrator_cli/observability/log_presentation/follow.py +105 -0
- orchestrator_cli/observability/log_presentation/formatters.py +380 -0
- orchestrator_cli/observability/log_presentation/json_extract.py +281 -0
- orchestrator_cli/observability/log_presentation/limits.py +47 -0
- orchestrator_cli/observability/log_presentation/models.py +47 -0
- orchestrator_cli/observability/log_presentation/sanitize.py +82 -0
- orchestrator_cli/observability/log_presentation/tail.py +144 -0
- orchestrator_cli/observability/log_presentation/throttle.py +68 -0
- orchestrator_cli/observability/log_stream.py +100 -0
- orchestrator_cli/observability/node_order.py +29 -0
- orchestrator_cli/observability/observer.py +22 -0
- orchestrator_cli/observability/observer_lifecycle.py +173 -0
- orchestrator_cli/observability/persistent.py +47 -0
- orchestrator_cli/observability/render/__init__.py +196 -0
- orchestrator_cli/observability/render/cells.py +193 -0
- orchestrator_cli/observability/render/header.py +23 -0
- orchestrator_cli/observability/render/text.py +26 -0
- orchestrator_cli/observability/render/timeline.py +137 -0
- orchestrator_cli/observability/render/viewport.py +124 -0
- orchestrator_cli/observability/run_summary/accumulator.py +76 -0
- orchestrator_cli/observability/run_summary/builder.py +177 -0
- orchestrator_cli/observability/run_summary/formatting.py +64 -0
- orchestrator_cli/observability/run_summary/issues.py +167 -0
- orchestrator_cli/observability/run_summary/logger.py +170 -0
- orchestrator_cli/observability/run_summary/markdown.py +391 -0
- orchestrator_cli/observability/run_summary/models.py +301 -0
- orchestrator_cli/observability/run_summary/spend.py +268 -0
- orchestrator_cli/observability/run_summary/terminal.py +204 -0
- orchestrator_cli/observability/run_summary/workspace.py +187 -0
- orchestrator_cli/observability/run_summary/workspace_readers.py +395 -0
- orchestrator_cli/observability/run_summary/workspace_state_paths.py +33 -0
- orchestrator_cli/observability/run_summary/workspace_values.py +124 -0
- orchestrator_cli/observability/runtime.py +376 -0
- orchestrator_cli/observability/status_icons.py +14 -0
- orchestrator_cli/observability/text_layout.py +111 -0
- orchestrator_cli/observability/timing.py +56 -0
- orchestrator_cli/observability/tmux/__init__.py +36 -0
- orchestrator_cli/observability/tmux/bindings.py +273 -0
- orchestrator_cli/observability/tmux/client.py +141 -0
- orchestrator_cli/observability/tmux/commands.py +374 -0
- orchestrator_cli/observability/tmux/compact.py +199 -0
- orchestrator_cli/observability/tmux/control_state.py +89 -0
- orchestrator_cli/observability/tmux/inspect_control.py +189 -0
- orchestrator_cli/observability/tmux/inspect_launcher.py +67 -0
- orchestrator_cli/observability/tmux/inspect_snapshot.py +71 -0
- orchestrator_cli/observability/tmux/labels.py +24 -0
- orchestrator_cli/observability/tmux/log_tail.py +165 -0
- orchestrator_cli/observability/tmux/refresh.py +379 -0
- orchestrator_cli/observability/tmux/rendering.py +334 -0
- orchestrator_cli/observability/tmux/runtime.py +15 -0
- orchestrator_cli/observability/tmux/runtime_files.py +88 -0
- orchestrator_cli/observability/tmux/selected_invocation.py +101 -0
- orchestrator_cli/observability/tmux/selection.py +126 -0
- orchestrator_cli/observability/tmux/selection_control.py +159 -0
- orchestrator_cli/observability/tmux/session.py +43 -0
- orchestrator_cli/observability/tmux/session_lifecycle.py +345 -0
- orchestrator_cli/observability/tmux/shell_commands.py +76 -0
- orchestrator_cli/observability/tmux/viewport.py +77 -0
- orchestrator_cli/observability/tmux/window.py +134 -0
- orchestrator_cli/observability/types.py +45 -0
- orchestrator_cli/py.typed +1 -0
- orchestrator_cli/runtime/__init__.py +3 -0
- orchestrator_cli/runtime/agent/__init__.py +5 -0
- orchestrator_cli/runtime/agent/failures/__init__.py +80 -0
- orchestrator_cli/runtime/agent/failures/classifier.py +22 -0
- orchestrator_cli/runtime/agent/failures/evidence.py +249 -0
- orchestrator_cli/runtime/agent/failures/formatting.py +108 -0
- orchestrator_cli/runtime/agent/failures/patterns.py +172 -0
- orchestrator_cli/runtime/agent/failures/types.py +73 -0
- orchestrator_cli/runtime/agent/invocation/claude_json.py +368 -0
- orchestrator_cli/runtime/agent/invocation/command.py +239 -0
- orchestrator_cli/runtime/agent/invocation/loop.py +395 -0
- orchestrator_cli/runtime/agent/invocation/output.py +295 -0
- orchestrator_cli/runtime/agent/invocation/retry.py +228 -0
- orchestrator_cli/runtime/agent/invocation/retry_reset.py +32 -0
- orchestrator_cli/runtime/agent/invocation/state.py +161 -0
- orchestrator_cli/runtime/agent/invocation/telemetry.py +166 -0
- orchestrator_cli/runtime/agent/invocation/transitions.py +181 -0
- orchestrator_cli/runtime/agent/invoker.py +131 -0
- orchestrator_cli/runtime/agent/process/diagnostics.py +70 -0
- orchestrator_cli/runtime/agent/process/log_rendering.py +18 -0
- orchestrator_cli/runtime/agent/process/runner.py +26 -0
- orchestrator_cli/runtime/agent/process/signals.py +84 -0
- orchestrator_cli/runtime/agent/process/stream_capture.py +105 -0
- orchestrator_cli/runtime/agent/process/streams.py +376 -0
- orchestrator_cli/runtime/agent/quota/__init__.py +5 -0
- orchestrator_cli/runtime/agent/quota/classifier.py +75 -0
- orchestrator_cli/runtime/agent/quota/evidence.py +124 -0
- orchestrator_cli/runtime/agent/quota/lexicons.py +251 -0
- orchestrator_cli/runtime/agent/quota/waits.py +208 -0
- orchestrator_cli/runtime/agent/retry_units.py +49 -0
- orchestrator_cli/runtime/agent/usage.py +224 -0
- orchestrator_cli/runtime/agent/usage_costs.py +143 -0
- orchestrator_cli/runtime/agent/usage_parsing.py +210 -0
- orchestrator_cli/runtime/agent/usage_types.py +54 -0
- orchestrator_cli/runtime/agent/workspace_environment.py +104 -0
- orchestrator_cli/runtime/execution/__init__.py +13 -0
- orchestrator_cli/runtime/execution/activity/__init__.py +8 -0
- orchestrator_cli/runtime/execution/activity/console.py +38 -0
- orchestrator_cli/runtime/execution/activity/events.py +361 -0
- orchestrator_cli/runtime/execution/activity/telemetry.py +65 -0
- orchestrator_cli/runtime/execution/common.py +70 -0
- orchestrator_cli/runtime/execution/consensus.py +54 -0
- orchestrator_cli/runtime/execution/deferred_cleanup.py +137 -0
- orchestrator_cli/runtime/execution/fragment_assembler.py +257 -0
- orchestrator_cli/runtime/execution/input.py +75 -0
- orchestrator_cli/runtime/execution/log_presentation.py +61 -0
- orchestrator_cli/runtime/execution/parallel.py +262 -0
- orchestrator_cli/runtime/execution/prompt_budgeting.py +191 -0
- orchestrator_cli/runtime/execution/provider_call/__init__.py +62 -0
- orchestrator_cli/runtime/execution/provider_call/display.py +116 -0
- orchestrator_cli/runtime/execution/provider_call/events.py +114 -0
- orchestrator_cli/runtime/execution/provider_call/generated_files.py +346 -0
- orchestrator_cli/runtime/execution/provider_call/lifecycle.py +442 -0
- orchestrator_cli/runtime/execution/provider_call/types.py +38 -0
- orchestrator_cli/runtime/execution/provider_call/workspace.py +133 -0
- orchestrator_cli/runtime/execution/resume.py +100 -0
- orchestrator_cli/runtime/execution/review_loop/__init__.py +360 -0
- orchestrator_cli/runtime/execution/review_loop/audit_round.py +289 -0
- orchestrator_cli/runtime/execution/review_loop/drift.py +152 -0
- orchestrator_cli/runtime/execution/review_loop/drift_detection.py +343 -0
- orchestrator_cli/runtime/execution/review_loop/drift_events.py +83 -0
- orchestrator_cli/runtime/execution/review_loop/executor_round.py +105 -0
- orchestrator_cli/runtime/execution/review_loop/policy.py +95 -0
- orchestrator_cli/runtime/execution/review_loop/prompts.py +146 -0
- orchestrator_cli/runtime/execution/review_loop/reviewer_round.py +330 -0
- orchestrator_cli/runtime/execution/review_loop/rounds.py +11 -0
- orchestrator_cli/runtime/execution/review_loop/state.py +313 -0
- orchestrator_cli/runtime/execution/review_loop/types.py +369 -0
- orchestrator_cli/runtime/execution/review_loop/validation.py +366 -0
- orchestrator_cli/runtime/execution/review_loop/workspace_state_paths.py +94 -0
- orchestrator_cli/runtime/execution/reviews/__init__.py +1 -0
- orchestrator_cli/runtime/execution/reviews/consensus.py +203 -0
- orchestrator_cli/runtime/execution/reviews/fingerprints.py +147 -0
- orchestrator_cli/runtime/execution/reviews/markdown.py +68 -0
- orchestrator_cli/runtime/execution/reviews/plain_language.py +124 -0
- orchestrator_cli/runtime/execution/reviews/structured.py +353 -0
- orchestrator_cli/runtime/execution/reviews/types.py +50 -0
- orchestrator_cli/runtime/execution/runtime_context.py +186 -0
- orchestrator_cli/runtime/execution/sequential.py +113 -0
- orchestrator_cli/runtime/execution/stage_finalize_events.py +62 -0
- orchestrator_cli/runtime/execution/stage_tasks.py +40 -0
- orchestrator_cli/runtime/execution/workflow/__init__.py +397 -0
- orchestrator_cli/runtime/execution/workflow/cleanup.py +170 -0
- orchestrator_cli/runtime/execution/workflow/node.py +128 -0
- orchestrator_cli/runtime/execution/workflow/state.py +94 -0
- orchestrator_cli/runtime/execution/workspace_files/__init__.py +425 -0
- orchestrator_cli/runtime/execution/workspace_files/generated.py +149 -0
- orchestrator_cli/runtime/workspace/__init__.py +8 -0
- orchestrator_cli/runtime/workspace/branch_export/__init__.py +389 -0
- orchestrator_cli/runtime/workspace/branch_export/checkpoint.py +245 -0
- orchestrator_cli/runtime/workspace/branch_export/fulfillment.py +194 -0
- orchestrator_cli/runtime/workspace/branch_export/git.py +141 -0
- orchestrator_cli/runtime/workspace/branch_export/records.py +233 -0
- orchestrator_cli/runtime/workspace/cleanup.py +254 -0
- orchestrator_cli/runtime/workspace/cleanup_notes.py +9 -0
- orchestrator_cli/runtime/workspace/git.py +73 -0
- orchestrator_cli/runtime/workspace/invocation.py +94 -0
- orchestrator_cli/runtime/workspace/locks.py +89 -0
- orchestrator_cli/runtime/workspace/materialization.py +42 -0
- orchestrator_cli/runtime/workspace/prepared_workspace.py +407 -0
- orchestrator_cli/runtime/workspace/service/__init__.py +64 -0
- orchestrator_cli/runtime/workspace/service/common.py +165 -0
- orchestrator_cli/runtime/workspace/service/snapshot.py +248 -0
- orchestrator_cli/runtime/workspace/service/types.py +80 -0
- orchestrator_cli/runtime/workspace/service/worktree.py +477 -0
- orchestrator_cli/runtime/workspace/service/worktree_failures.py +136 -0
- orchestrator_cli/runtime/workspace/setup.py +409 -0
- orchestrator_cli/runtime/workspace/snapshot.py +332 -0
- orchestrator_cli/runtime/workspace/state.py +364 -0
- orchestrator_cli/runtime/workspace/state_selection.py +267 -0
- orchestrator_cli/runtime/workspace/worktree/__init__.py +425 -0
- orchestrator_cli/runtime/workspace/worktree/attributes.py +33 -0
- orchestrator_cli/runtime/workspace/worktree/cache.py +291 -0
- orchestrator_cli/runtime/workspace/worktree/cleanup.py +222 -0
- orchestrator_cli/runtime/workspace/worktree/commit.py +52 -0
- orchestrator_cli/runtime/workspace/worktree/descriptors.py +184 -0
- orchestrator_cli/runtime/workspace/worktree/inspection.py +386 -0
- orchestrator_cli/runtime/workspace/worktree/lineage.py +434 -0
- orchestrator_cli/runtime/workspace/worktree/materialization.py +139 -0
- orchestrator_cli/runtime/workspace/worktree/policy.py +107 -0
- orchestrator_cli/runtime/workspace/worktree/protected_refs.py +63 -0
- orchestrator_cli/runtime/workspace/worktree/ref_cleanup.py +79 -0
- orchestrator_cli/runtime/workspace/worktree/refs.py +57 -0
- orchestrator_cli/runtime/workspace/worktree/reset.py +234 -0
- orchestrator_cli/runtime/workspace/worktree/result_validation.py +44 -0
- orchestrator_cli/runtime/workspace/worktree/reuse.py +95 -0
- orchestrator_cli/runtime/workspace/worktree/source_refs.py +89 -0
- orchestrator_cli/runtime/workspace/worktree/types.py +69 -0
- orchestrator_cli/version.py +5 -0
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: crewplane
|
|
3
|
+
Version: 0.1.0a1
|
|
4
|
+
Summary: A CLI orchestrator for AI agents
|
|
5
|
+
Project-URL: Homepage, https://github.com/crewplaneai/crewplane
|
|
6
|
+
Project-URL: Repository, https://github.com/crewplaneai/crewplane
|
|
7
|
+
Project-URL: Issues, https://github.com/crewplaneai/crewplane/issues
|
|
8
|
+
Project-URL: Documentation, https://github.com/crewplaneai/crewplane/blob/main/docs/index.md
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Requires-Python: >=3.13
|
|
12
|
+
Requires-Dist: click>=8.0.0
|
|
13
|
+
Requires-Dist: markdown-it-py>=4.0
|
|
14
|
+
Requires-Dist: pydantic>=2.0
|
|
15
|
+
Requires-Dist: pyyaml>=6.0
|
|
16
|
+
Requires-Dist: rich>=13.0
|
|
17
|
+
Requires-Dist: shellingham>=1.3.0
|
|
18
|
+
Requires-Dist: typer>=0.12.0
|
|
19
|
+
Requires-Dist: tzdata; platform_system == 'Windows'
|
|
20
|
+
Provides-Extra: dev
|
|
21
|
+
Requires-Dist: build>=1.3; extra == 'dev'
|
|
22
|
+
Requires-Dist: packaging>=24.0; extra == 'dev'
|
|
23
|
+
Requires-Dist: pytest>=7.4; extra == 'dev'
|
|
24
|
+
Requires-Dist: ruff>=0.6; extra == 'dev'
|
|
25
|
+
Requires-Dist: twine>=6.0; extra == 'dev'
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
# Crewplane / Orchestrator CLI
|
|
29
|
+
|
|
30
|
+
Crewplane runs AI coding CLIs through auditable Markdown workflows.
|
|
31
|
+
|
|
32
|
+
Define a DAG in a `.task.md` file, assign nodes to providers such as Claude,
|
|
33
|
+
Codex, Gemini, Copilot, Kilo, or any generic CLI, and let `orchestrator` run the
|
|
34
|
+
graph while preserving inputs, intermediate outputs, logs, manifests, and final
|
|
35
|
+
results under `.orchestrator/`.
|
|
36
|
+
|
|
37
|
+
Crewplane is built around three ideas:
|
|
38
|
+
|
|
39
|
+
- Workflows are Markdown files with explicit dependencies.
|
|
40
|
+
- Providers are external CLIs, not vendor SDK integrations.
|
|
41
|
+
- Execution state is written to disk as readable artifacts.
|
|
42
|
+
|
|
43
|
+
## Install
|
|
44
|
+
|
|
45
|
+
Recommended isolated install:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
uv tool install crewplane
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
The public package name is `crewplane`. The installed command is
|
|
52
|
+
`orchestrator`.
|
|
53
|
+
|
|
54
|
+
Provider CLIs are installed and authenticated separately. Crewplane does not install provider CLIs, does not manage provider credentials, and does not sandbox provider CLI execution.
|
|
55
|
+
|
|
56
|
+
## First Run
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
orchestrator init
|
|
60
|
+
orchestrator validate
|
|
61
|
+
orchestrator run --dry-run
|
|
62
|
+
orchestrator run
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
`orchestrator init` creates `.orchestrator/config.yml`, a default workflow, and
|
|
66
|
+
additional example templates under `.orchestrator/workflows/example-templates/`.
|
|
67
|
+
|
|
68
|
+
## Workflow Shape
|
|
69
|
+
|
|
70
|
+
```yaml
|
|
71
|
+
---
|
|
72
|
+
schema_version: "<current>"
|
|
73
|
+
name: "Quick Review"
|
|
74
|
+
nodes:
|
|
75
|
+
- id: review.context
|
|
76
|
+
mode: parallel
|
|
77
|
+
providers: ["claude", "codex"]
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## review.context
|
|
81
|
+
Review the current repository and report the highest-risk issues.
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Full workflow authoring docs are in the
|
|
85
|
+
[workflow syntax reference](https://github.com/crewplaneai/crewplane/blob/main/docs/reference/workflow-syntax.md).
|
|
86
|
+
|
|
87
|
+
## Safety Boundary
|
|
88
|
+
|
|
89
|
+
Crewplane coordinates provider CLIs; it is not a security sandbox. Provider CLIs
|
|
90
|
+
run with the permissions, approval mode, network access, and filesystem access
|
|
91
|
+
configured for those tools.
|
|
92
|
+
|
|
93
|
+
`{{file:path}}` template references are bounded to the project root by default.
|
|
94
|
+
External files must be explicitly allowlisted with
|
|
95
|
+
`settings.integrations.artifacts.options.allowed_template_paths`.
|
|
96
|
+
|
|
97
|
+
## Where Next
|
|
98
|
+
|
|
99
|
+
- [Documentation index](https://github.com/crewplaneai/crewplane/blob/main/docs/index.md)
|
|
100
|
+
- [Installation](https://github.com/crewplaneai/crewplane/blob/main/docs/getting-started/installation.md)
|
|
101
|
+
- [Quickstart](https://github.com/crewplaneai/crewplane/blob/main/docs/getting-started/quickstart.md)
|
|
102
|
+
- [Provider setup](https://github.com/crewplaneai/crewplane/blob/main/docs/getting-started/provider-setup.md)
|
|
103
|
+
- [Examples](https://github.com/crewplaneai/crewplane/blob/main/docs/examples/index.md)
|
|
104
|
+
- [Command reference](https://github.com/crewplaneai/crewplane/blob/main/docs/reference/commands.md)
|
|
105
|
+
- [Configuration reference](https://github.com/crewplaneai/crewplane/blob/main/docs/reference/configuration.md)
|
|
106
|
+
- [Workflow syntax reference](https://github.com/crewplaneai/crewplane/blob/main/docs/reference/workflow-syntax.md)
|
|
107
|
+
- [Artifact reference](https://github.com/crewplaneai/crewplane/blob/main/docs/reference/artifacts.md)
|
|
108
|
+
- [Security and trust](https://github.com/crewplaneai/crewplane/blob/main/docs/safety/security-and-trust.md)
|
|
109
|
+
- [Architecture](https://github.com/crewplaneai/crewplane/blob/main/docs/architecture/index.md)
|
|
110
|
+
- [Contributing and local development](https://github.com/crewplaneai/crewplane/blob/main/DEVELOPMENT.md)
|
|
@@ -0,0 +1,410 @@
|
|
|
1
|
+
orchestrator_cli/__init__.py,sha256=55JTdj_-4m5WEJwxyuhW2kXTybmRwzbVt1OJ6GTGUzQ,82
|
|
2
|
+
orchestrator_cli/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
orchestrator_cli/version.py,sha256=_4HRRfsYx113x59-4MJwzIsHK9TFpHugXsGw-mf32iw,94
|
|
4
|
+
orchestrator_cli/adapters/__init__.py,sha256=juqd9PbXs4yg45zMJ7BHAOPQjb7sgEbWE9InBtGZhfo,24
|
|
5
|
+
orchestrator_cli/adapters/artifacts/__init__.py,sha256=Spi0LaV9tY5x41aDdycldiT71b-E6o3vUy7jpF5bdWk,93
|
|
6
|
+
orchestrator_cli/adapters/artifacts/filesystem.py,sha256=QJR43amtvirDpYFbD8aFse_oPh3w4cF1bVXaXHp7_CE,2813
|
|
7
|
+
orchestrator_cli/adapters/invokers/__init__.py,sha256=J9MT5FMan5U_IT4Bf5mABq5vZBmWyJFmLRcr6q7W1KQ,127
|
|
8
|
+
orchestrator_cli/adapters/invokers/cli.py,sha256=n05q6TIX695z9bAgptFyALsIpNMAYFTuhgCdNIV3Zpw,4810
|
|
9
|
+
orchestrator_cli/adapters/invokers/mock.py,sha256=boeJzlWY0JT1g0WJwFSvnawwcuDq5w4vozhwCjn-D1s,2101
|
|
10
|
+
orchestrator_cli/adapters/invokers/cli_invoker/__init__.py,sha256=8-NBGpkqaaoRwQu9QNNGLIPx_ESdy8h6jb3Ls7VPsSM,299
|
|
11
|
+
orchestrator_cli/adapters/invokers/cli_invoker/capabilities.py,sha256=CKRSlNscestHN1SIQXImGSyUpoGM2z4ECg6yl7_v5PA,8328
|
|
12
|
+
orchestrator_cli/adapters/invokers/mock_invoker/__init__.py,sha256=2boStWxUiSZORU-wExEb96x4TBVuHJDMcaIHTGuwyYw,122
|
|
13
|
+
orchestrator_cli/adapters/invokers/mock_invoker/context.py,sha256=JjoKPYWm2Y83Njmye54LTJF3J4ViUK7bGP7eqi8rDx8,1161
|
|
14
|
+
orchestrator_cli/adapters/invokers/mock_invoker/fixtures.py,sha256=AL6jYNDRgWZLe0mf44aae75ZbwnbMlv16p3s3Wj1bcQ,1617
|
|
15
|
+
orchestrator_cli/adapters/invokers/mock_invoker/invoker.py,sha256=LPTPnV-bHcbAuUae_PcSnHSPW9EPVh1kwGdztrtIB4w,7986
|
|
16
|
+
orchestrator_cli/adapters/invokers/mock_invoker/logging.py,sha256=3TaLNYJvCUy4S7PTcqd5VP-449s6J6xBh1uVqNH1SqU,2998
|
|
17
|
+
orchestrator_cli/adapters/invokers/mock_invoker/mutations.py,sha256=xdMGRaS-3pX1O8ZPUryybZM9I1DJEKjpkj3YaEC1rHw,7006
|
|
18
|
+
orchestrator_cli/adapters/invokers/mock_invoker/options.py,sha256=hKJj2PO_lDFEE1iUzbq3myMp9bFYNknXVHBFFvppw2U,4843
|
|
19
|
+
orchestrator_cli/adapters/invokers/mock_invoker/outputs.py,sha256=2G2Wb1on6wI90PlGIIXyWpfDFhgif5Xrisqw9uw3O4g,1038
|
|
20
|
+
orchestrator_cli/adapters/invokers/mock_invoker/selectors.py,sha256=1esUPWPJftwDFHQ-JZ_W7jlRTy97oCoYsj2VHomW84A,2990
|
|
21
|
+
orchestrator_cli/adapters/ui/__init__.py,sha256=kI9ZzTxG3-prJfFCOqWUHp7zzYjjy4nMUbjvyCQ1EUY,110
|
|
22
|
+
orchestrator_cli/adapters/ui/null.py,sha256=XizFbdHN93Gwz4fVGb6yeeAtv1z4Gj0hZFJvfsKMqPM,2855
|
|
23
|
+
orchestrator_cli/adapters/ui/tmux.py,sha256=VIOrfoL_nFpjEOav8Yxd_0shNVVd9OlvENxQQC0J_mg,6028
|
|
24
|
+
orchestrator_cli/architecture/__init__.py,sha256=ylJng8ddyAy4Y8pe13qxEWrVfbmXOZiT1oRF9kARwys,253
|
|
25
|
+
orchestrator_cli/architecture/errors.py,sha256=zQh2foeqbJ5pJprQYDmuGYId96-YAWFr-fJ60I6YPTU,502
|
|
26
|
+
orchestrator_cli/architecture/loader.py,sha256=Y_ldMD6USnwpZQ6Y_Yp6GpA9g7yZlU0nwlmGCGxxEzk,7018
|
|
27
|
+
orchestrator_cli/architecture/registry.py,sha256=S3ZRE9tS3XvKyAiPj29m0SaaD75ZKfarZfbXED7b7nM,1141
|
|
28
|
+
orchestrator_cli/architecture/contracts/__init__.py,sha256=eD2l0J6cS0ufN8-um4UzMOs164C4OIfZ3WjMdjyB8CE,3449
|
|
29
|
+
orchestrator_cli/architecture/contracts/integration.py,sha256=FxQDqFPlJ0UqTJjXHjq8KHfJALvLYEsBQSIBVA1AD6E,3227
|
|
30
|
+
orchestrator_cli/architecture/contracts/integration_options.py,sha256=oQfvDKVPgQyvhpkuXSa_FLAV0Bjf9QH6hpeQ8cbhp8A,1308
|
|
31
|
+
orchestrator_cli/architecture/contracts/invocation.py,sha256=mNA6z5nqg22BBkL-RWJb1u45j_UKZzZEhnlG2zZ67qU,13788
|
|
32
|
+
orchestrator_cli/architecture/contracts/json.py,sha256=1RaCPI7T1EbywAnfqv7xlE97Dpf96M-Ve-wApRe-uk0,194
|
|
33
|
+
orchestrator_cli/architecture/contracts/observer.py,sha256=FzekkM_4EEuILf0RqU-XbFAW2ZOIvY25ekG44duou4s,1218
|
|
34
|
+
orchestrator_cli/architecture/ports/__init__.py,sha256=NGtCCZmoBojYznHoXM7ZM3XDJAbLqqovIBHxT8GFqIk,398
|
|
35
|
+
orchestrator_cli/architecture/ports/artifacts.py,sha256=gygEHXlHj0EBs50nxi5zt5bAgGPgR31U4HLLoJJJG6A,5589
|
|
36
|
+
orchestrator_cli/architecture/ports/invoker.py,sha256=oB9eEXewmRY57Tnl6rmb65w2qM57r7isiPePdXxfCME,801
|
|
37
|
+
orchestrator_cli/architecture/ports/runtime.py,sha256=c0BSevuRfTfPfyGFRCmHo1P8Pqg_zfFgmLkTCnU0uFk,1357
|
|
38
|
+
orchestrator_cli/architecture/ports/ui.py,sha256=uPZYamfVvHnIrVYgJn28pxHZypsILwPjOuAV_aLfwe8,1450
|
|
39
|
+
orchestrator_cli/artifacts/__init__.py,sha256=sNmDBmAJz3f-qTMuUm7SqZoLyTRFv9BQgf9QmviwAh8,594
|
|
40
|
+
orchestrator_cli/artifacts/atomic.py,sha256=ClXS6ijCW__1QNNP8Rij8LFv68ipr2bjo1LMxzkv4qk,2678
|
|
41
|
+
orchestrator_cli/artifacts/directory_manager.py,sha256=JI1t3xLD9vAwcjajvux0aRos2d4hWAniFCEgJO_yi8M,5313
|
|
42
|
+
orchestrator_cli/artifacts/failure_artifacts.py,sha256=6JrcJnLamnLZrgAfD6e7VAGIxyB-43vF3c4QPTa4obc,1191
|
|
43
|
+
orchestrator_cli/artifacts/manager.py,sha256=h43YzXzDRhrDbGLlf_b9Oatx0TdwhRg-rmsH8Hqmy_c,8821
|
|
44
|
+
orchestrator_cli/artifacts/naming.py,sha256=_LDzP63SlUHOgoeW8nHHF_KRwL8jVcblKE1HPyAXLn4,4672
|
|
45
|
+
orchestrator_cli/artifacts/run_history.py,sha256=uZfA_rlDKywAYoOilc8WEh_UMhcukk8fMEOLmtlOWQU,6682
|
|
46
|
+
orchestrator_cli/artifacts/safe_files.py,sha256=lojFCABI33eo5xBnu-8e4JAFESjcw0woX6ta2U-oOu4,1584
|
|
47
|
+
orchestrator_cli/artifacts/generated_files/__init__.py,sha256=juqd9PbXs4yg45zMJ7BHAOPQjb7sgEbWE9InBtGZhfo,24
|
|
48
|
+
orchestrator_cli/artifacts/generated_files/catalog.py,sha256=Urju2-50kctf8R62U0upWSBgQvR-TvpGCklNvKrjFps,10470
|
|
49
|
+
orchestrator_cli/artifacts/generated_files/detection.py,sha256=ZQnpHjcUyF4TSWzDBgXnxIkknxqX6Pr0DkCGaPUDB8E,9803
|
|
50
|
+
orchestrator_cli/artifacts/locks/__init__.py,sha256=30f3asIrSwt3eLgpgM9C8VHeRLp_Xl2S-KGllaH9cJ4,10172
|
|
51
|
+
orchestrator_cli/artifacts/locks/manifest.py,sha256=_oyvvV2mZ5wKcpRtAjUvGRi4Unnk-uow0dlB9mWsDQ4,5899
|
|
52
|
+
orchestrator_cli/artifacts/locks/process_identity.py,sha256=MWo3X6Qto8ZE9iAjBVtMHZWqD1wx8jinsKb8E1fYZIk,1548
|
|
53
|
+
orchestrator_cli/artifacts/results/__init__.py,sha256=juqd9PbXs4yg45zMJ7BHAOPQjb7sgEbWE9InBtGZhfo,24
|
|
54
|
+
orchestrator_cli/artifacts/results/aggregation.py,sha256=ZD_jdfrSu_CQDcSdXJNryIKr0SA0rpaoJZBJ7JjwVTw,3614
|
|
55
|
+
orchestrator_cli/artifacts/results/findings.py,sha256=JWg0OntziCtSwA51Tw9pGNsJIG5YMdGGUmUGkgUyu9c,2931
|
|
56
|
+
orchestrator_cli/artifacts/results/review_loop_status.py,sha256=SgdKTQku7-US8qFKoOE6J48BVF1pIHLX4jOsROAp0D8,6679
|
|
57
|
+
orchestrator_cli/artifacts/results/selection.py,sha256=4pZFvTveKulcFj6SFnNI6tlFPVKC_BW44UCq3l5ULso,2655
|
|
58
|
+
orchestrator_cli/artifacts/results/stage_document.py,sha256=OJDC2Iqn3Tuygrytqy4UEgv2QyRH6tD0yiw0hyzx938,2455
|
|
59
|
+
orchestrator_cli/artifacts/results/stage_outputs.py,sha256=t6Ixx0-J488-kzbcAzyRYNXNsj_3lpXYAtmNFDgcpdU,627
|
|
60
|
+
orchestrator_cli/artifacts/results/writer.py,sha256=8Y6XJHzXVq2qxQQBXQB71ffI-LCcNAjXbvJQw3Ccz5E,6029
|
|
61
|
+
orchestrator_cli/artifacts/resume/__init__.py,sha256=juqd9PbXs4yg45zMJ7BHAOPQjb7sgEbWE9InBtGZhfo,24
|
|
62
|
+
orchestrator_cli/artifacts/resume/decision.py,sha256=8deqZzA99jOnLngwA4s_ZnP4UzBXFldIXJfj91pPrSw,1077
|
|
63
|
+
orchestrator_cli/artifacts/resume/generated_files.py,sha256=7OjNL6dXjSe1NRxQJoQBNXdpdGbMe-Pg_HpRvRqLtWw,2460
|
|
64
|
+
orchestrator_cli/artifacts/resume/hydration.py,sha256=VUEu1yN3zVekgimmItS6kr1yyDBCqsjSUlR_jonVZ54,16078
|
|
65
|
+
orchestrator_cli/artifacts/resume/validation.py,sha256=xgjKwCEFfAnWjMnxNA8eOm7y5gt_SbFGNueBWYoC_Bk,11014
|
|
66
|
+
orchestrator_cli/artifacts/workspace/__init__.py,sha256=juqd9PbXs4yg45zMJ7BHAOPQjb7sgEbWE9InBtGZhfo,24
|
|
67
|
+
orchestrator_cli/artifacts/workspace/bundle_validation.py,sha256=ty2xaDMSlY_TY0yjsucMoiQNEcpGmiKyp_54SVhDx7Q,13045
|
|
68
|
+
orchestrator_cli/artifacts/workspace/git_blob_hash.py,sha256=jGAT0ffbKpNUoFc-u6_p8lkNPhpIVuI1H7OYaJXjJCw,2804
|
|
69
|
+
orchestrator_cli/artifacts/workspace/node_state.py,sha256=MrLFOW7FmI-YzcB4ZMkOERjreI8j4fIXfR7rVJStrUU,11412
|
|
70
|
+
orchestrator_cli/artifacts/workspace/rendered_file_validation.py,sha256=SZKKj50DF8tE2LimSqjDI6VAd-4jUesik5XPXeTobp4,10798
|
|
71
|
+
orchestrator_cli/artifacts/workspace/source_validation.py,sha256=uXAbHHeNwycVQ1UwSjvOyDqPbWHZuxRfcVPcLLumlAg,12584
|
|
72
|
+
orchestrator_cli/artifacts/workspace/state/__init__.py,sha256=qN30flrflh4DtANOLTk_V59FtB3EYeVoq0ns1VvxabA,106
|
|
73
|
+
orchestrator_cli/artifacts/workspace/state/expected_set.py,sha256=Oc2p89wLCqSGwIax7UZtHsB1Sh5heMxYc7FN20454mI,5704
|
|
74
|
+
orchestrator_cli/artifacts/workspace/state/fields.py,sha256=ZJ_pLLoifiaZDlCGH0qkysn5scBJo_yHe4CHLGkSH34,1274
|
|
75
|
+
orchestrator_cli/artifacts/workspace/state/invocations.py,sha256=-23muP9NV_wPSAtbUw5xiPlqfKi9z6hgZ0OdPzFn77s,8827
|
|
76
|
+
orchestrator_cli/artifacts/workspace/state/validation.py,sha256=MTmSLfcx632Ap_gKfXUlP6e15nat9UrSWPqyL53_kqE,16500
|
|
77
|
+
orchestrator_cli/bootstrap/__init__.py,sha256=pmyyFRvb8DPmvPHxwUwyAtwO83bkLa4PMYAkQ269n-k,277
|
|
78
|
+
orchestrator_cli/bootstrap/container.py,sha256=0gcwmw9A7dPCGzC5JdoTLC458ld7t_gWKTuM-ggz7j8,4191
|
|
79
|
+
orchestrator_cli/bootstrap/runtime_config.py,sha256=hseiHhh1x4P9gWl9SQYpofcrEDMa4_Hrx4pyu9xMyrI,4633
|
|
80
|
+
orchestrator_cli/cli/__init__.py,sha256=6QhwyeIB7_X9wASr6kjfHetzWfCmYqv8UA-N0ilIZHI,44
|
|
81
|
+
orchestrator_cli/cli/app.py,sha256=VqIbLBmnlyMpnobwJPc9ByOs1sW4oYlLAxTCunrhISw,12137
|
|
82
|
+
orchestrator_cli/cli/cleanup.py,sha256=dQzaT_KzAcA3GWm1cG60zdhyUu9FpC7khcN8icKdsYc,10027
|
|
83
|
+
orchestrator_cli/cli/dry_run.py,sha256=ECIa39wImvQrDIWQ6QW8U10T9IaVNzbRG4aw-lbVN7g,6309
|
|
84
|
+
orchestrator_cli/cli/paths.py,sha256=eJcbTQFZ0gYoImn2gRRPDIwJTO5Y99JV5aP5wC8CSPs,1871
|
|
85
|
+
orchestrator_cli/cli/templates.py,sha256=V8JmSDijjC1aRmuENJKgaOy0fMO8uZfr24sO8pjcPAE,2357
|
|
86
|
+
orchestrator_cli/cli/workflow_runner.py,sha256=pjPkCM64SEmDvfAMV2EXRg-s-l3b9j_9bBep_CTxz40,597
|
|
87
|
+
orchestrator_cli/cli/run/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
88
|
+
orchestrator_cli/cli/run/best_effort_thread.py,sha256=kOxQNru33FpiIbyoiv_mz2iXcVYP028CD9vfKJ5gLB4,1073
|
|
89
|
+
orchestrator_cli/cli/run/branch_export_output.py,sha256=NQUGY347xv7vF3EvO00n5ixs4A3mevqOi25-0d2r7Kg,3501
|
|
90
|
+
orchestrator_cli/cli/run/components.py,sha256=IpTBG4qmEmy5TqmXN9z5XloveDnIfxBBtNqqpjThuOI,2371
|
|
91
|
+
orchestrator_cli/cli/run/context.py,sha256=c7meTPvhmi1oQWD34uOI4r750-s0bFQFNgGdLXPJgIM,1860
|
|
92
|
+
orchestrator_cli/cli/run/execution.py,sha256=qnWmVkqcdTqBqFiD_GooorUx6xGMXHhQIXpN6gH_JCY,10104
|
|
93
|
+
orchestrator_cli/cli/run/execution_helpers.py,sha256=4GB9ZKF0410sdzaheCQwAec2Z2ruSp6YfYXmmN4uMiY,5659
|
|
94
|
+
orchestrator_cli/cli/run/historical_summary.py,sha256=UfPmJrYXbmKINgzKQw0xXerRNoVXqIjOMYbPLsBDEkg,12636
|
|
95
|
+
orchestrator_cli/cli/run/manifest.py,sha256=mRTHjJQP_tebbK9M3VH-gmmvyJnViUhvmQ4pNwAQZ-I,3233
|
|
96
|
+
orchestrator_cli/cli/run/observability.py,sha256=J185oQuYimIxTb6F5tP4Mn_q88h5xwAsh4INjfPgh1M,13026
|
|
97
|
+
orchestrator_cli/cli/run/preflight.py,sha256=FzMZjkLkXoE3n2h4sNs-mjdHcEbIgdS5ftVK26D926E,12101
|
|
98
|
+
orchestrator_cli/cli/run/preflight_success.py,sha256=WpyAZGxePK4wAPs9MQfjcY7AgOBIstWqzmhZ1vCo-OU,3602
|
|
99
|
+
orchestrator_cli/cli/run/resume.py,sha256=Fo5UOPbl2aH3X5eophejG101BABbhlx3FzC1NNjir5k,10587
|
|
100
|
+
orchestrator_cli/cli/run/topology.py,sha256=bhCeeHJ00m3pmr4Gm9wC9zKUo2EqjzzRiOSB6az1mtc,1512
|
|
101
|
+
orchestrator_cli/cli/run/workspace/__init__.py,sha256=juqd9PbXs4yg45zMJ7BHAOPQjb7sgEbWE9InBtGZhfo,24
|
|
102
|
+
orchestrator_cli/cli/run/workspace/cache_policy.py,sha256=CTPdhpXVF0eO9V-IUL0110EP3Hqy940XWtx9MGl2OAo,2261
|
|
103
|
+
orchestrator_cli/cli/run/workspace/disk_policy.py,sha256=-5bVBE69-_j2w-YM1E0EtEr3J463ZSSEKWmcvxiRUTg,6559
|
|
104
|
+
orchestrator_cli/cli/run/workspace/filesystem_policy.py,sha256=i7w-yjZV1waxyZa4VCdmVQuMAoiOZByubH3JSQRbMic,3174
|
|
105
|
+
orchestrator_cli/cli/run/workspace/git_attributes.py,sha256=ZOR3k2BMR2P0FSKTdn9B4hQAuTrSMBPgvJaPubYZhN0,4771
|
|
106
|
+
orchestrator_cli/cli/run/workspace/git_index.py,sha256=wRdQZ_jqm250MTDDivcBEV-eNHcqRieMd9GBW0wwBB8,5627
|
|
107
|
+
orchestrator_cli/cli/run/workspace/git_source.py,sha256=m1JG91Hrk8d-XzRb-WP5Jk3_CZ-OwfhYo6k9YO136tE,11098
|
|
108
|
+
orchestrator_cli/cli/run/workspace/preflight_diagnostics.py,sha256=v8PPrV8ioSZ3o4EU4dZc-yB31RQj7xVuC3NGRgvjM3Y,1653
|
|
109
|
+
orchestrator_cli/cli/run/workspace/repo_policy.py,sha256=Vvu1AMBrXpWtMJRiPXZ8nN3O-3rnnrEdeCseM6Wo8V0,14878
|
|
110
|
+
orchestrator_cli/cli/run/workspace/source_policy.py,sha256=pDc2ioui_SbxHkrBY_2anO0NK-Q5ILgjDtEhEo4FvKc,10908
|
|
111
|
+
orchestrator_cli/cli/run/workspace/source_types.py,sha256=rILw7FMTydBD-a3WvFtfRhyV00DdsahKsg7XbolkIbI,812
|
|
112
|
+
orchestrator_cli/core/__init__.py,sha256=mKLPTCWb0djMDHJ6Dy1cCrBmCt4Z9oeGK3301IaPJZ8,140
|
|
113
|
+
orchestrator_cli/core/config.py,sha256=7FMX3zPYq4ELFu0P2batMKSQm99JZnLNxfBesJizH8E,11803
|
|
114
|
+
orchestrator_cli/core/config_workspace.py,sha256=fl6LbIJBBFS8Bh2n11VJLorwnibXrM4c_LXeSG5d9j0,5823
|
|
115
|
+
orchestrator_cli/core/execution_state.py,sha256=F8v-y3EGHbr0v1kUgolDGFLGy7M6hpdvgbptA9UeFKE,6521
|
|
116
|
+
orchestrator_cli/core/file_hashing.py,sha256=i_UmmMaGYbu8ciNdPSmG11RquH9Ky49dEdnN5Ykvepk,465
|
|
117
|
+
orchestrator_cli/core/platform.py,sha256=PjMkhqjSHA8Ak35cRTKgfGnbG1-AuxEOufzFQJeIVhs,216
|
|
118
|
+
orchestrator_cli/core/prompt_segments.py,sha256=5_rsCKUM-duc1eKiDKsX3aQ3kkZrOVK3bs9zhKSN_is,1313
|
|
119
|
+
orchestrator_cli/core/provider_names.py,sha256=TEbqpg97KVBBT1Ve3lBT778fxsGX-Ti1ZAuFydBE-CU,386
|
|
120
|
+
orchestrator_cli/core/review_contract.py,sha256=fzDl1F9yOZxoVu7gKZ2cfy0CBJJEDB9Bt0Ow_rncxJk,1590
|
|
121
|
+
orchestrator_cli/core/token_budget.py,sha256=t8HxpaJ_JTkelFkSNlV47EO8m4RmPpoE_F_1FDdHmYo,3206
|
|
122
|
+
orchestrator_cli/core/value_checks.py,sha256=itcs1e_SlRXct_otIEDsSD7CgiTPEML8md4geXGXQos,281
|
|
123
|
+
orchestrator_cli/core/workflow_diagnostics.py,sha256=mUZTZ75L95zSX3qT0mrUnzORAZ3AWBlHXDcF6AmCFUI,1100
|
|
124
|
+
orchestrator_cli/core/workflow_graph.py,sha256=wTeWdBBg-9lEfh_HhsoCYo4nbhg0SZDRHQTwSKtJiJU,2701
|
|
125
|
+
orchestrator_cli/core/workflow_keywords.py,sha256=pMKM1omT9d1vRxIP0bTBYfLevVHx9ZSjSMGKYZ6n8-M,1529
|
|
126
|
+
orchestrator_cli/core/workflow_loader.py,sha256=YO1OgoXM7wghNDwJ_YM0_k2DSGCr7Yz5UbxWG24OzbI,3731
|
|
127
|
+
orchestrator_cli/core/workflow_models.py,sha256=m_UUUB7ffb6qz7ec9JHVF4fajT2VDtcstYtN22ZSjjk,10618
|
|
128
|
+
orchestrator_cli/core/workflow_syntax.py,sha256=h213vxIB1pDT0nTy5TCo-mBJloD2S7fiPPQy2jwRvn0,568
|
|
129
|
+
orchestrator_cli/core/workflow_validation.py,sha256=2j1cuhboHa3-jKFgCJfsQhrXnH6uo2IkfvT6cF-Pqmc,4577
|
|
130
|
+
orchestrator_cli/core/workflow_validation_node_modes.py,sha256=HHK2G-YIdQfJaPZ_haYGG1uGrzz2KOBlrnwAVy5NVT8,9884
|
|
131
|
+
orchestrator_cli/core/workflow_validation_nodes.py,sha256=xSNqMB3lRu6tBAkhtPFoHGfjuiI0DGC3VpK2xBTkgls,5229
|
|
132
|
+
orchestrator_cli/core/workflow_validation_policies.py,sha256=rd6NQyjFgCVaERCLJsHzreEA11zcD7UQtYJoKBbHQFw,3637
|
|
133
|
+
orchestrator_cli/core/workflow_validation_templates.py,sha256=kOcpJRLX9LZwPar-erIR_rtrnsQOtQ09JxuJVSJSJNA,7786
|
|
134
|
+
orchestrator_cli/core/workflow_validation_workspace.py,sha256=QvWV6d6L2THZXRhrO9osnq9Ss-jCURwh8SYaCR_gin0,6992
|
|
135
|
+
orchestrator_cli/core/workflow_workspace_diagnostics.py,sha256=MviD1tL1OY_g2BXGd0E3hOj94YD-5CXNUfI2L0Ceks8,11868
|
|
136
|
+
orchestrator_cli/core/workspace_cache.py,sha256=MJphr3_BHGZR8K4ZNuJ3VL4YfsWqX2Xe_kGF6br_vxA,431
|
|
137
|
+
orchestrator_cli/core/workspace_git_policy.py,sha256=LwH-80YzfSk4Y20k5N4ASC3x848hGGgxoFox6NAz5i8,5632
|
|
138
|
+
orchestrator_cli/core/workspace_policy.py,sha256=PnmGMi652yo4W4npAaCrGSgdEuTCehFR4ubdu5Hg4os,6991
|
|
139
|
+
orchestrator_cli/core/workspace_selection.py,sha256=cwtQJ-6SFmeWrc6WnDjJVGh92scyb-QnL9D9sExLfxI,725
|
|
140
|
+
orchestrator_cli/core/yaml_loader.py,sha256=efbD_3DmyKD4i_f3aGRRe5f2Pz8Rr4OQRmZ9WtWT3vQ,1725
|
|
141
|
+
orchestrator_cli/core/preflight/__init__.py,sha256=Mou1q1zExKyY6V3dJNGtX8LS9H6SH8BFolBkCnLoC2Y,1907
|
|
142
|
+
orchestrator_cli/core/preflight/compile_state.py,sha256=VPG547wXsEk8M361igQlpYSXe4ACHijC0DDlD75cBx8,9107
|
|
143
|
+
orchestrator_cli/core/preflight/compiler.py,sha256=OxwfnXt8jw04WbPsjpPY8GV6Jj3B8GGVA1CZc8YNmKw,13087
|
|
144
|
+
orchestrator_cli/core/preflight/dependency_edges.py,sha256=KDbnDOCVlG0G0RaXqHKFCQvT83g1NUlz2KCpD7ey5kE,1640
|
|
145
|
+
orchestrator_cli/core/preflight/diagnostics.py,sha256=RxpgF4Wu94qaPrwMDvWPQWPgA3AXaNlK1uY_Zjp_BHc,2018
|
|
146
|
+
orchestrator_cli/core/preflight/execution_nodes.py,sha256=enYLdHScw2Kgrqe4RNcTN-neal767_yBZi_RlCYcC_U,6200
|
|
147
|
+
orchestrator_cli/core/preflight/fragment_handlers.py,sha256=gEpNI6VFWxkepzpLmM3ZgNgg2-wkMr76hrr1GfajTcQ,13449
|
|
148
|
+
orchestrator_cli/core/preflight/input_sources.py,sha256=28j6Liy-zP0JyJEbEJkl1pTPHTQ9wkWX62o1uGehl2I,7067
|
|
149
|
+
orchestrator_cli/core/preflight/models.py,sha256=pchXT8tDH4nTil_AjKQ4Y0rUApJhrxFeJt-H3xIBWHw,13192
|
|
150
|
+
orchestrator_cli/core/preflight/plan_contract.py,sha256=ybSdidskTmM0i4XOrh2nY2y7DfTCZwRZT2J-fdCiTuc,4251
|
|
151
|
+
orchestrator_cli/core/preflight/plan_signatures.py,sha256=FGZIKNFu-jIxYe9EytndBDeNKvExmUFSR3V6YlECGP4,5492
|
|
152
|
+
orchestrator_cli/core/preflight/prompt_transport_warnings.py,sha256=Uw3g1yPTnYDSJFF4Ei0w_syX9uRnfAyqTWeiGNFsOGs,1040
|
|
153
|
+
orchestrator_cli/core/preflight/references.py,sha256=Hd3Ku-9bv_DUO8gthSG3KTu5eZ3vv2gpilHEDe9lmk0,2387
|
|
154
|
+
orchestrator_cli/core/preflight/render_plans.py,sha256=8odC68X2YXd0t4jTKYtgAN6EmL0SPDI950tg_YPdKWM,11619
|
|
155
|
+
orchestrator_cli/core/preflight/runner.py,sha256=xpq8vXBGAssMc0eC2P4khPe3JfTIBXbLPCLx3Um4380,409
|
|
156
|
+
orchestrator_cli/core/preflight/secrets.py,sha256=HBk6EQPOvVGaOjhUCSnETSnw6KuyxwOqqusnzy2_skw,7090
|
|
157
|
+
orchestrator_cli/core/preflight/serialization.py,sha256=bWhc53alvB5L3CEP875eCxqYvHHSuPcaBcQsqtWSoLg,1386
|
|
158
|
+
orchestrator_cli/core/preflight/signatures.py,sha256=oIndPvhya4SUfrWDGuOVOaumFdxDn3F4wrO1WjYkK9I,276
|
|
159
|
+
orchestrator_cli/core/preflight/source.py,sha256=a-v2vKSpyR5Ku4VAYNG5fFjiGNy2anmk3Nfq1IX24no,5270
|
|
160
|
+
orchestrator_cli/core/preflight/static_resources.py,sha256=HRqGtNwn2ohxMoseCv67h1OAnRH7FbruZj4afmLjoMc,4517
|
|
161
|
+
orchestrator_cli/core/preflight/token_catalog.py,sha256=aJxG8jNOgpq_GfFGrnW5Db4atUnn8ImJkKaE5yX8lB0,1612
|
|
162
|
+
orchestrator_cli/core/preflight/validation.py,sha256=T6cOnRIddmWQiBr3QAFiQYeS07eoMaYu4X8dir2FM_s,3822
|
|
163
|
+
orchestrator_cli/core/preflight/value_fingerprints.py,sha256=9o3j0RMDIOL8Ed5wvKe1EWJIibDVOC8C54blq83sTxA,2653
|
|
164
|
+
orchestrator_cli/core/preflight/variables.py,sha256=KJ8kdHzPiauxIqGhviUhP9wXM1ZC3UTCfGnuUJsjULI,196
|
|
165
|
+
orchestrator_cli/core/preflight/runtime_config/__init__.py,sha256=jYg19sq-_rN_T9i73mojHUrLJVqvb5IdTbEYV8XkK7U,14778
|
|
166
|
+
orchestrator_cli/core/preflight/runtime_config/redaction.py,sha256=WlfWTDIDzHo_62f5kIRy4ohjHW_XywaUhjNzcVLdw4w,9890
|
|
167
|
+
orchestrator_cli/core/preflight/workspace/__init__.py,sha256=juqd9PbXs4yg45zMJ7BHAOPQjb7sgEbWE9InBtGZhfo,24
|
|
168
|
+
orchestrator_cli/core/preflight/workspace/models.py,sha256=72TQlORZUcoUnKH1MexE5Bg1lORGwa5q_Zo63UG38fo,2944
|
|
169
|
+
orchestrator_cli/core/preflight/workspace/observability.py,sha256=4ckn-bI7PaAJ4GuxEarOdbMSX4olZroISQir5ElrteM,7677
|
|
170
|
+
orchestrator_cli/core/preflight/workspace/records.py,sha256=gT1eMQxcZpt1tv5256xmyuqjB4aY8z6fzV6Mz8IZ7UM,2045
|
|
171
|
+
orchestrator_cli/core/preflight/workspace/snapshot_guard.py,sha256=eWfb9RXUmUphHAWlxNgjYo8xI7WdF1PDenXHRJkZSko,1438
|
|
172
|
+
orchestrator_cli/core/preflight/workspace/files/__init__.py,sha256=juqd9PbXs4yg45zMJ7BHAOPQjb7sgEbWE9InBtGZhfo,24
|
|
173
|
+
orchestrator_cli/core/preflight/workspace/files/git_reads.py,sha256=dBZHi-_PMZwPm_U8ZaD9Sm8168mQ-wKahjGOXzdFJOk,4219
|
|
174
|
+
orchestrator_cli/core/preflight/workspace/files/locators.py,sha256=ARGlcHuWOpPKIhya-hzA5zOPBdKwJD04_q0_m5mAGSc,13531
|
|
175
|
+
orchestrator_cli/core/preflight/workspace/files/paths.py,sha256=kr9SJiqm8Ev8dUkDDFTCn5uckHlYrGgUU2JEgAixqMI,1749
|
|
176
|
+
orchestrator_cli/core/preflight/workspace/files/selection.py,sha256=PuY7PcopJxYHCefXItDoFa1j2KsieZS-1S3WmwIWYx0,2424
|
|
177
|
+
orchestrator_cli/core/workflow_composition/__init__.py,sha256=qmZznjxSRto8yTvCSRk7KgzTeuwgKAUfuvqB5hWr-Sw,372
|
|
178
|
+
orchestrator_cli/core/workflow_composition/imports.py,sha256=Qgk4qopxP62K4bkQgVM2jiScdePbF2KJK1Opf1-Igrc,2412
|
|
179
|
+
orchestrator_cli/core/workflow_composition/models.py,sha256=qtLIfnFWoQGYhxPjhrXF5gyKrnmM2nZ7fHM288ws5Qk,1976
|
|
180
|
+
orchestrator_cli/core/workflow_composition/nodes.py,sha256=HBMURudl9CH0GFVpVO_3_5VX9LSZmwMn0HwepXRV8v8,3818
|
|
181
|
+
orchestrator_cli/core/workflow_composition/parsing.py,sha256=lWjgjazwhz-LImOET-nbsBlqSMt2F0f9lnYaFmCQy6U,2663
|
|
182
|
+
orchestrator_cli/core/workflow_composition/rewrites.py,sha256=Mn-vDqvL3XzsakfkdVV65s3Fuhm9VzBmRGDLXpwcXnY,2928
|
|
183
|
+
orchestrator_cli/core/workflow_composition/traversal.py,sha256=-hj1xjUiKL96_K-hjDuXGLhxjj02xxDrUQGGCaye_Kg,13543
|
|
184
|
+
orchestrator_cli/core/workflow_markdown/__init__.py,sha256=2LQQH_OJItTtGqLDC_sYkkhqwor5a-UBZWuSW0s6KK0,2736
|
|
185
|
+
orchestrator_cli/core/workflow_markdown/frontmatter.py,sha256=VEpXYHGfvXc9Mg5fw5UJ-blGZCzxKXIMeIuqAX_Pfj4,2199
|
|
186
|
+
orchestrator_cli/core/workflow_markdown/markers.py,sha256=xHMyQapXE3k8HJfdDzcAuVWQmI4s2vc3zeY2KcPjNV8,6203
|
|
187
|
+
orchestrator_cli/core/workflow_markdown/models.py,sha256=V8zr66Sy39zmHkoAqRrjZzvtsZcxnfV1kdOWHVZ4ROg,9456
|
|
188
|
+
orchestrator_cli/core/workflow_markdown/payloads.py,sha256=aMNe6STaW5QAais7IO5cvi1gbaNsMkmwqepa0FF2a00,3529
|
|
189
|
+
orchestrator_cli/core/workflow_markdown/sections.py,sha256=9FWL8_Dksaev74p2n2y7G9K7d5y8qIyXsuta4i1ggfw,4221
|
|
190
|
+
orchestrator_cli/example_templates/code-review-example.task.md,sha256=aKoOg0cnLdm3Cran891vTvYPRi20_rQVrJk72FXtczs,2698
|
|
191
|
+
orchestrator_cli/example_templates/config.yml,sha256=Vy534AD23r_kKbTbh1V66wyfL0jiXUM4pmpdLo-48ss,8582
|
|
192
|
+
orchestrator_cli/example_templates/example-templates/design-review-example.task.md,sha256=edlZ3LinXJblTrg0EDITpqKEeaGDBHPf8YiveZuAe8U,2094
|
|
193
|
+
orchestrator_cli/example_templates/example-templates/feature-implement-example.task.md,sha256=gFiPrUEDZ9epM3gAuIkv1AV2my60L-un_fCrTpt6KpE,2455
|
|
194
|
+
orchestrator_cli/example_templates/example-templates/multi-executor-review-chain-example.task.md,sha256=wQ10arp78MPhLQCrCMdNzhDhNEhHW5d8z3P436JzC-k,1963
|
|
195
|
+
orchestrator_cli/example_templates/example-templates/refactoring-example.task.md,sha256=MMmmRixTecGGEtdCF9ETUEcQQsgbKBpEvQ14L1P2Ugg,2307
|
|
196
|
+
orchestrator_cli/example_templates/example-templates/test-generation-example.task.md,sha256=qUED80ixli0aL39CtJx9gpFSDEgsktf7esC_O0Aum9k,2191
|
|
197
|
+
orchestrator_cli/example_templates/example-templates/composition/review-findings-producer-example.task.md,sha256=LpFOUxx-bqsvZk_Md2VNqC2Q-WTBmpHGjRH7toyAZVc,540
|
|
198
|
+
orchestrator_cli/example_templates/example-templates/composition/review-fix-composed-example.task.md,sha256=zoWVrWhMPCcR3ab6NwRTgqGnU5SMw2VovsnwKo3LApQ,1126
|
|
199
|
+
orchestrator_cli/example_templates/example-templates/composition/review-fix-consumer-example.task.md,sha256=vOalKmv1_yuU7YQ_VNWqtF8WxoRKcsKrWMwGdPzvAwM,1434
|
|
200
|
+
orchestrator_cli/example_templates/example-templates/sample-inputs/coding-standards.md,sha256=XvzkQnRWgz7UiQf6qtHYGfQqsBYCvsMJoLSvlJX4YeQ,236
|
|
201
|
+
orchestrator_cli/example_templates/example-templates/sample-inputs/feature-brief.md,sha256=6xWyj85uYaCT0-8F0T7F4NSXaV17lRghFGlj8faWzUs,281
|
|
202
|
+
orchestrator_cli/example_templates/example-templates/sample-inputs/review-findings.md,sha256=LhOER8uCFIkMRtA_NCn7DFREVakWEkHs1AK6Pidi028,318
|
|
203
|
+
orchestrator_cli/example_templates/example-templates/worktree/workspace-alternatives-example.task.md,sha256=x9iqKvffL7KP7cGxq1XlZcu5_4AsZ17lT6g9NiaMqQQ,1386
|
|
204
|
+
orchestrator_cli/example_templates/example-templates/worktree/workspace-inherited-worktree-example.task.md,sha256=w0LuYbfdd7VKCFUwSxIXc5etYNIathEUcSPnASUcLcM,1099
|
|
205
|
+
orchestrator_cli/observability/__init__.py,sha256=nJp3kALyTT3ih3-QI42wzfPrG6Za7rF0cZG_pA0dTdw,1803
|
|
206
|
+
orchestrator_cli/observability/dag_graph.py,sha256=f2jROz59EDefxaLFoBb3nKH6TdcRSHciYCBRjCoSCQY,9876
|
|
207
|
+
orchestrator_cli/observability/dag_render.py,sha256=kVbjWsH59qa2PfkQOs4dISoH_FoAQUmnChqtD0JRPwo,4661
|
|
208
|
+
orchestrator_cli/observability/layout.py,sha256=n2gxLQlqNdBuoVRfY_WZkxY7BiVGdZSfMtdj9lZfVjw,6051
|
|
209
|
+
orchestrator_cli/observability/log_stream.py,sha256=p1d-Ote6OqiyEKtrwKVtBs94wZBZW-BE5kYy627gOMc,3365
|
|
210
|
+
orchestrator_cli/observability/node_order.py,sha256=bz_ke4c3b8K3yn76ogGtQsBAs9U9Cyi19SMMp2DY00M,913
|
|
211
|
+
orchestrator_cli/observability/observer.py,sha256=oDlJ2gegx5G3yyWVZTp6QeVvC7s_01-jsmi1uFEZLLA,501
|
|
212
|
+
orchestrator_cli/observability/observer_lifecycle.py,sha256=oC-JEdcEqtzBfQ84SAx8k52PbzaiwOa1w8oCk8VttMQ,5238
|
|
213
|
+
orchestrator_cli/observability/persistent.py,sha256=gvM_G7JO2qsuLjugVelakbqeqttaXYjhx4ujQ-r7dU8,1376
|
|
214
|
+
orchestrator_cli/observability/runtime.py,sha256=Nf5JhrytPXJQwAIplSrMdZq55M4RGJNKjM0tK874dNI,12931
|
|
215
|
+
orchestrator_cli/observability/status_icons.py,sha256=CJQhZqjeBiewKfCt4w4PE6dv9cZz4Ofrx858CscsWpE,302
|
|
216
|
+
orchestrator_cli/observability/text_layout.py,sha256=BJstPB4vJf3MIeczDwOIMRTq2mv3CAv5FdEY_jyFC6Y,3194
|
|
217
|
+
orchestrator_cli/observability/timing.py,sha256=YcB4fmy2vLiRabQuLyyry48rV0H--o6fdv3CK3-xClU,1596
|
|
218
|
+
orchestrator_cli/observability/types.py,sha256=FuLJy6iExzoiGWJsFErbIZwm8zjaKFrI_4hNU0k9WD4,1220
|
|
219
|
+
orchestrator_cli/observability/events/__init__.py,sha256=7zvf2mADFQdIvzWoryPXbZbiwn08I51g7yTBjZ00yeI,1976
|
|
220
|
+
orchestrator_cli/observability/events/builders.py,sha256=wb2c55rCr2fxakmoUfmo_Re8lC5CZEkQgsAVLuPPKLU,6582
|
|
221
|
+
orchestrator_cli/observability/events/dashboard_state.py,sha256=AXtQsPe9F6fY6mqkvpP5G-knQkJ2F1S4vLJ5j9P4onU,3847
|
|
222
|
+
orchestrator_cli/observability/events/execution_event.py,sha256=wqbRBJJodBK3nhWWrGXE7aDLHmpLTlp-WPOEPm47nwU,2572
|
|
223
|
+
orchestrator_cli/observability/events/log.py,sha256=gIdM7kNHjOVkHv6AEqggPvuk69UD1hFELp0Az5xlIFE,852
|
|
224
|
+
orchestrator_cli/observability/events/payloads.py,sha256=AnlDc4YZpKrUIgQ3P1ucHuGAu6cL6pUsxaNF4_97P8g,7235
|
|
225
|
+
orchestrator_cli/observability/events/reducer.py,sha256=1nEGP9xIt--kH5JkCgMPM-6R22PfzO0R3GmNtd9iufg,8115
|
|
226
|
+
orchestrator_cli/observability/events/types.py,sha256=qnlLgJO7UuyOMnTk7Jn97HTQBv4j3dD-R0feGnjZdi4,1088
|
|
227
|
+
orchestrator_cli/observability/log_presentation/__init__.py,sha256=IpTLaa75fAyz4pCbzDDkr9L3ubccdxrTIrwQM1mijMM,659
|
|
228
|
+
orchestrator_cli/observability/log_presentation/follow.py,sha256=Jn3s0Cn-nH8V-R8Gasl-p-LoNxlvRoUb6bXqXyxM1p4,3406
|
|
229
|
+
orchestrator_cli/observability/log_presentation/formatters.py,sha256=w209OqRbnOvepvs4IUOQThr35BNuk_LPSLhIqo0uL48,12563
|
|
230
|
+
orchestrator_cli/observability/log_presentation/json_extract.py,sha256=wVQFDY7wvU60ZjwOrZ8RMloCFJnO70oZ-ZNKmeMn-XY,8756
|
|
231
|
+
orchestrator_cli/observability/log_presentation/limits.py,sha256=63_YT--FT_5WhbfCkiVguo89zkruKPDcImtzRopdV8g,1881
|
|
232
|
+
orchestrator_cli/observability/log_presentation/models.py,sha256=CriU44xtx5-0ZQWNFwTNvaDLAEbN1ctUp8i_mTJRVgg,1129
|
|
233
|
+
orchestrator_cli/observability/log_presentation/sanitize.py,sha256=Wgdz1_muA6iGB1oYyUEivL5HmlCSaHyQYe5LASaMG7A,2070
|
|
234
|
+
orchestrator_cli/observability/log_presentation/tail.py,sha256=TVl_XRd85JoQsyb4zlfX-vJzOIVWKpw96KYWCy4dPLU,4117
|
|
235
|
+
orchestrator_cli/observability/log_presentation/throttle.py,sha256=2WGPFW89IgyxtRsUiQautYkZ_7889xkYubepXxuTFFA,1806
|
|
236
|
+
orchestrator_cli/observability/render/__init__.py,sha256=Ac4_-lboIB8PkctJdsb2T-IR1LZqssD5lnh3rgYqvzk,6714
|
|
237
|
+
orchestrator_cli/observability/render/cells.py,sha256=TLPAS2-moceRWKQW3yddFc686R3YkuSrb8qGr8j8zXo,6277
|
|
238
|
+
orchestrator_cli/observability/render/header.py,sha256=n3SBHAZvf0CBsHa6fLztchgzurac0V9C2VEA-NCntVM,756
|
|
239
|
+
orchestrator_cli/observability/render/text.py,sha256=NOWQYnZ-SMFbQUOKgQgNRDC3nrfU5gXO3B9-I7EHnTc,888
|
|
240
|
+
orchestrator_cli/observability/render/timeline.py,sha256=n9cmqzpZQj6XeROiML0bieFFfbcmFURFtzJM1uQhqn0,4670
|
|
241
|
+
orchestrator_cli/observability/render/viewport.py,sha256=0GvKKNZAqmUY0o0TohDYZ23M9BNIJXb2sDLs9PdMm4E,3788
|
|
242
|
+
orchestrator_cli/observability/run_summary/accumulator.py,sha256=W2CjWpU3OO7ZopSptOhgqISzcQrN9Hn7dkt00sI6cTQ,3088
|
|
243
|
+
orchestrator_cli/observability/run_summary/builder.py,sha256=R20dJCFGWchfyrihVF0E7YFFN6KJ2HcphDco9BMrtOw,6121
|
|
244
|
+
orchestrator_cli/observability/run_summary/formatting.py,sha256=z1VJtDsOrdNDXCLW2Ll4jV-qnKlkhpeo6ep5NXFQsr8,1992
|
|
245
|
+
orchestrator_cli/observability/run_summary/issues.py,sha256=d2Ra3yr9MVe39h1pteoKTwqkZAOA7ZrWzAQbWf49gTo,5695
|
|
246
|
+
orchestrator_cli/observability/run_summary/logger.py,sha256=ymwyT5iQ_x3IF30tCu6JIT4wc-JbQgAIPVWkVXWRZq4,6271
|
|
247
|
+
orchestrator_cli/observability/run_summary/markdown.py,sha256=ZPASbD37k4lVcrzO6366SWKdKa3iqjw8iflRqkdEsAQ,14564
|
|
248
|
+
orchestrator_cli/observability/run_summary/models.py,sha256=sXGhG4wBcDVF0BqjwVm81h9pp1-USAtYAYZqrXkuygI,8718
|
|
249
|
+
orchestrator_cli/observability/run_summary/spend.py,sha256=iWd4jELhkko8m9jiAE3NYcstfUSiq1b9N8IphuJcWAY,10383
|
|
250
|
+
orchestrator_cli/observability/run_summary/terminal.py,sha256=UhoaqImXKMukUTncuSKJ5eRVaCmlcIx9UB2gkRvZ50w,8066
|
|
251
|
+
orchestrator_cli/observability/run_summary/workspace.py,sha256=y3ytdHOZwZjlQP74bx7TgqZGqMmagDTO2PBjflNTMFA,6600
|
|
252
|
+
orchestrator_cli/observability/run_summary/workspace_readers.py,sha256=hkHiZdFoPvb3VoIwoEGIOC4_MOlvTHLAczUEZtH9YNM,13727
|
|
253
|
+
orchestrator_cli/observability/run_summary/workspace_state_paths.py,sha256=y0e7CoFYGVBB98gWSFdWKqw9WC0MJ2tF00wzTODO76A,972
|
|
254
|
+
orchestrator_cli/observability/run_summary/workspace_values.py,sha256=aDbEtSlnWUYy2wAIpf_bBCe3WhSuBimc336pbLRDssQ,3558
|
|
255
|
+
orchestrator_cli/observability/tmux/__init__.py,sha256=JY8GwDoiOmMNDHgkj9O02igZkunbyGXqK8PyL8quvgk,1124
|
|
256
|
+
orchestrator_cli/observability/tmux/bindings.py,sha256=xNYg9IwEgPy2NsBpvXbEF563riyd0kZDBjOjjHullQM,8991
|
|
257
|
+
orchestrator_cli/observability/tmux/client.py,sha256=aM4yof1CDyd1irso-p8Jb4ZXXTHY3nXJlyz6i_0erIM,4248
|
|
258
|
+
orchestrator_cli/observability/tmux/commands.py,sha256=aQBUPdBlvSOds8-M3i3VQvXmfQ72Ufbqr4M-bWepyLY,11182
|
|
259
|
+
orchestrator_cli/observability/tmux/compact.py,sha256=WqZK3UwiklM30bskCzti4uOI3dLKksvww8jVG5RUsDY,7397
|
|
260
|
+
orchestrator_cli/observability/tmux/control_state.py,sha256=fOnSIdFL1pbVBLsz85iNsXnmS2jTBY_C0lPWTkrg3Mo,2637
|
|
261
|
+
orchestrator_cli/observability/tmux/inspect_control.py,sha256=-qoxtiOvs3WNXUTjI68WcMz_HEwv0f3KPrFTlW3u3_k,5459
|
|
262
|
+
orchestrator_cli/observability/tmux/inspect_launcher.py,sha256=qqpHYpt7q0EgTY7WGO-XfoQfN0af3_sqVLB_ngwu3QQ,2028
|
|
263
|
+
orchestrator_cli/observability/tmux/inspect_snapshot.py,sha256=QgfVWT-PUQfpbt6SeVWtexi2z_whmwjhHoSWLD0uLh0,2098
|
|
264
|
+
orchestrator_cli/observability/tmux/labels.py,sha256=v1dbwlDMST3ALR6t_1W4CpsNXWQA8e7t7oDNkDZJVAE,824
|
|
265
|
+
orchestrator_cli/observability/tmux/log_tail.py,sha256=OxmUFhzZVnzAbctdbwAKw7z5Xqu7LfuegaEQYMXafz8,4710
|
|
266
|
+
orchestrator_cli/observability/tmux/refresh.py,sha256=vc2W9M8dm0k0_yowzS8-94RrL-Z46-3pvaIj440IxMU,13057
|
|
267
|
+
orchestrator_cli/observability/tmux/rendering.py,sha256=kIwXsAP3oEPlhjgP1Dxx1bV3uA8pYuH4goxJm3dM_i4,10484
|
|
268
|
+
orchestrator_cli/observability/tmux/runtime.py,sha256=FyAIsG-QO1xkjf9mvQS1_BAGCI_hpQoghh7Uk3YGDio,334
|
|
269
|
+
orchestrator_cli/observability/tmux/runtime_files.py,sha256=56ykfRtO4QTvfsNtsBY07lJaX6rPtN9YbZVU6ZesY5E,2509
|
|
270
|
+
orchestrator_cli/observability/tmux/selected_invocation.py,sha256=xvwE-P6Uu49RAEShrHduBKN9n5CejyIgPjIA-YgeTpc,3157
|
|
271
|
+
orchestrator_cli/observability/tmux/selection.py,sha256=0la0wSSGRkv6M5twznBM2cXddSsm9oPaGvnpn6piZDY,3671
|
|
272
|
+
orchestrator_cli/observability/tmux/selection_control.py,sha256=r07JdX7MTxjU_D84qpuUa_xwd-Um7Bq4523VMj_-sMc,4963
|
|
273
|
+
orchestrator_cli/observability/tmux/session.py,sha256=cVxmSUz8q3S6T6GG9M_TcoOcTJ0HN3YF7GG43eNr5KI,1087
|
|
274
|
+
orchestrator_cli/observability/tmux/session_lifecycle.py,sha256=0es3ldZIUhGkgXzRZVo--lKGLUPJv4l-VZw8WAd0nks,11403
|
|
275
|
+
orchestrator_cli/observability/tmux/shell_commands.py,sha256=WPMPUg3J8T10Tn_TsZ38RchABhj77OVRa5X8HfRCpz4,2094
|
|
276
|
+
orchestrator_cli/observability/tmux/viewport.py,sha256=0d3cwY1eTk9E9hQqqr9ng1KwUuiFh-sSBDk6zmUaBRI,2377
|
|
277
|
+
orchestrator_cli/observability/tmux/window.py,sha256=iDAMeaNKpaCnDzESaZ5utOQ-o0N4NCChamhvk1tn5r4,4141
|
|
278
|
+
orchestrator_cli/runtime/__init__.py,sha256=Yt7P1ukvvD2kQkHU9qKUJyaUus0yApjVmSGnxAZKOhM,63
|
|
279
|
+
orchestrator_cli/runtime/agent/__init__.py,sha256=krFVB3-cQ0_reKUq2a6d0NjIbIQWLwSxT_pdDzn0WJ4,73
|
|
280
|
+
orchestrator_cli/runtime/agent/invoker.py,sha256=AOcXEbMe0vd9KQ_kO4SeGChmZwv2Umfi9u7rEf4sqF4,3749
|
|
281
|
+
orchestrator_cli/runtime/agent/retry_units.py,sha256=QdpnLNi6Ua7S4WT3J8jufK2aFAeaKNWKMFUjloIjHas,1453
|
|
282
|
+
orchestrator_cli/runtime/agent/usage.py,sha256=Vu9wAuiUR5y3OcQi5v3Zmed1uJoPUbyp2H7Ipg33_08,7204
|
|
283
|
+
orchestrator_cli/runtime/agent/usage_costs.py,sha256=Sv8b7eH9vLVcDzMyI7mOHBhRS5HQCAD1ipaVSxXU2V8,4293
|
|
284
|
+
orchestrator_cli/runtime/agent/usage_parsing.py,sha256=H05LkqiarM4BYTEDQIgn_AqGqV7fqILw3y7NS5OqICw,6851
|
|
285
|
+
orchestrator_cli/runtime/agent/usage_types.py,sha256=5EFPRS3Bvrh8KrAgoSMOL3myRsv7p8N4mhEyvmFx6ks,1576
|
|
286
|
+
orchestrator_cli/runtime/agent/workspace_environment.py,sha256=fAEG_Agbwp7QFHMnGRBOeOBZ6IB-ooPBNpsizBQCggY,3182
|
|
287
|
+
orchestrator_cli/runtime/agent/failures/__init__.py,sha256=kMcE7dwykLedvsbRWtyV6KtroMLSl7e0T10iupZ3FNQ,2165
|
|
288
|
+
orchestrator_cli/runtime/agent/failures/classifier.py,sha256=Wn8TEOtQlmPOitORrJC0qlME-NjoICz7eH8DosJ9HBw,786
|
|
289
|
+
orchestrator_cli/runtime/agent/failures/evidence.py,sha256=e5Fxo4G8oumQDEUhBVJuoj_DbWl-eFmVOe3JLI4GXA0,8261
|
|
290
|
+
orchestrator_cli/runtime/agent/failures/formatting.py,sha256=IcEj_wp4CAv0GVIOfvFtupn7vqr0Dif4DS5_GnG4bpg,3067
|
|
291
|
+
orchestrator_cli/runtime/agent/failures/patterns.py,sha256=FvxhXZcuvLjyQVdvQcC6SuU6gbCusV9fVuL68mbLIyw,4998
|
|
292
|
+
orchestrator_cli/runtime/agent/failures/types.py,sha256=pkYl68uThX1gHjFx9o4Mi0j397gjO-gfdvl1x0SI_E0,1756
|
|
293
|
+
orchestrator_cli/runtime/agent/invocation/claude_json.py,sha256=7Eyd7Nng2G5L10TNmaj5z57xvIKXEnJlY16ketsAZmw,12261
|
|
294
|
+
orchestrator_cli/runtime/agent/invocation/command.py,sha256=P-UxhqYuXu_vVje0p35j27tZ74XYy24qGWn0j-dlEIA,7752
|
|
295
|
+
orchestrator_cli/runtime/agent/invocation/loop.py,sha256=Wm_WNrh6ruMUDHLERXQDiA6NllYSZfMCfXgEQO67m7k,13037
|
|
296
|
+
orchestrator_cli/runtime/agent/invocation/output.py,sha256=foSo1SwXYtNgWJ_vU2bDC8AR5j5bwI-G_LsPt-3oeIE,10204
|
|
297
|
+
orchestrator_cli/runtime/agent/invocation/retry.py,sha256=JS1uzdt1Xtm8F2x4yRc5SMo3By08BnhIbQfdb4QYsGc,7481
|
|
298
|
+
orchestrator_cli/runtime/agent/invocation/retry_reset.py,sha256=pK3fDABwOw644RNdxVgf5ALd7rnhvFvgZ2c1WSLgvdI,1176
|
|
299
|
+
orchestrator_cli/runtime/agent/invocation/state.py,sha256=TlV3b6HNaAmHjOhoZqu-WMzAf3QIgiLDcs15gT6nocg,4768
|
|
300
|
+
orchestrator_cli/runtime/agent/invocation/telemetry.py,sha256=TSYquNXlBvZil8uQ3F9nc5AQiT18j6OnaRH6asNaois,5453
|
|
301
|
+
orchestrator_cli/runtime/agent/invocation/transitions.py,sha256=4PgESEJVNsoTfRtD6gpV5cT0a6rH8CV7XD7Q2rwXLvI,7516
|
|
302
|
+
orchestrator_cli/runtime/agent/process/diagnostics.py,sha256=XVIbLYjkbx_Dk5xT5cj71iFxmOuvPZA6TuB9D17KPeQ,2046
|
|
303
|
+
orchestrator_cli/runtime/agent/process/log_rendering.py,sha256=txLaFtEF5MSqQXAEUQy74Ef5_4aCeOTkziT5DnpGvDo,603
|
|
304
|
+
orchestrator_cli/runtime/agent/process/runner.py,sha256=DtPkchkrax83WXjVVfP1DYY3ufDFcM6Xeh-UkwIu0KA,669
|
|
305
|
+
orchestrator_cli/runtime/agent/process/signals.py,sha256=za54tZikGYr7WQ6kxNwao2rLijlF5MlMnW_w5ebr2KI,2580
|
|
306
|
+
orchestrator_cli/runtime/agent/process/stream_capture.py,sha256=B9OtkDlrixyqaJzFq7-nt6cxExuLs7p9wqynLzre5JU,2896
|
|
307
|
+
orchestrator_cli/runtime/agent/process/streams.py,sha256=LPD3AYmCcY_9pS2jX32ZQPGKSCkVRULXykIL1SRJ7Mg,11956
|
|
308
|
+
orchestrator_cli/runtime/agent/quota/__init__.py,sha256=ptop2Nt2yJLzV7QP58VkLq-pvIy7luYxyPUdCBHFFjM,163
|
|
309
|
+
orchestrator_cli/runtime/agent/quota/classifier.py,sha256=NgUCvMWQyDu6MwujSKONrLMrgrq4IgFQs5iCgJUoePw,2234
|
|
310
|
+
orchestrator_cli/runtime/agent/quota/evidence.py,sha256=Sx8BUeIuZURApse3VBEAJnkJPV11_nD0xT2vxdpmGNA,3884
|
|
311
|
+
orchestrator_cli/runtime/agent/quota/lexicons.py,sha256=vWyxJba-oZPNqF5FNdKylhPfi_OCP6LIchDSJ-Ma6P0,6790
|
|
312
|
+
orchestrator_cli/runtime/agent/quota/waits.py,sha256=JkgMF99cPEiUhDjfwZJYCvNskSseaK53_TlBRAqZukQ,6586
|
|
313
|
+
orchestrator_cli/runtime/execution/__init__.py,sha256=NMI4SyiwrvvTb3z2seZXgtrf0XmvS04eiw5RNvUK8fM,362
|
|
314
|
+
orchestrator_cli/runtime/execution/common.py,sha256=NLL7MTX9mKdpQqsjr1kVpxC2NKPdRwgz2P2mV1zxqMY,1889
|
|
315
|
+
orchestrator_cli/runtime/execution/consensus.py,sha256=bDNDuRk3HsTryWHwqMHd_t4ijdIX8hKBNhkey8MKhoE,1332
|
|
316
|
+
orchestrator_cli/runtime/execution/deferred_cleanup.py,sha256=pdx4xn77Q5t-sOLmTXz6JQJr9S3eNSASJ4hdlzJ-cx0,4991
|
|
317
|
+
orchestrator_cli/runtime/execution/fragment_assembler.py,sha256=2FBS3dXSz3713oObpi9SDZBFPPPN7VmyYIL-zjWBH-s,9017
|
|
318
|
+
orchestrator_cli/runtime/execution/input.py,sha256=L1K903pc7OWI4v9ZocERoRWMJnKuH2yDYHuzcOWBl2E,2362
|
|
319
|
+
orchestrator_cli/runtime/execution/log_presentation.py,sha256=LiigUti-9UxSQKwGO6d76O8TG0jaLp4npqJjAqRWdYk,1655
|
|
320
|
+
orchestrator_cli/runtime/execution/parallel.py,sha256=MucCuC4cPZEy8qrTr5OIu0sW0zZ2_Py3itYmNQPXolw,8807
|
|
321
|
+
orchestrator_cli/runtime/execution/prompt_budgeting.py,sha256=Ptyeq8DMu_fAzEcJ2iHUFkP3JKgn9GWxGry6c1-HOUU,6773
|
|
322
|
+
orchestrator_cli/runtime/execution/resume.py,sha256=HUpWOCBUIMlfmOiP6Xms_7mlkDgL_DSLKiC5W3SVsuQ,3148
|
|
323
|
+
orchestrator_cli/runtime/execution/runtime_context.py,sha256=QEuhv-dBJd1UQOE82Vyy97qzTYDZarO5N4YXtEOoH3E,7152
|
|
324
|
+
orchestrator_cli/runtime/execution/sequential.py,sha256=ORY0nIhnWjOdeiF1XCDPvxtzFfqt5wUWhOdfWbkVWec,3708
|
|
325
|
+
orchestrator_cli/runtime/execution/stage_finalize_events.py,sha256=33wCguwcq4MJAsVzKHNxY_7OCIgVRO7b0S3Xdqp1tr4,2102
|
|
326
|
+
orchestrator_cli/runtime/execution/stage_tasks.py,sha256=66Sciqg_flttLqoJvN9Y42f1Zf4yLzuWPDl96bQal6k,968
|
|
327
|
+
orchestrator_cli/runtime/execution/activity/__init__.py,sha256=gdw4FhhLqoKgy86BjDtBqjRqm4KX7hKDaSYCWQ6hf0s,192
|
|
328
|
+
orchestrator_cli/runtime/execution/activity/console.py,sha256=KCp3-VFxutXhTSnSvy4eCWgMwLUi544wW6NLSSb_TcQ,999
|
|
329
|
+
orchestrator_cli/runtime/execution/activity/events.py,sha256=JTzZgI2yTEgqfsw5AIDCaphfqFczSPXzFxyofUdQQMQ,12215
|
|
330
|
+
orchestrator_cli/runtime/execution/activity/telemetry.py,sha256=8SSRKUYkFx0PMgMmC1XiT01NSPz_uZVI-3CaCbCtIgc,1820
|
|
331
|
+
orchestrator_cli/runtime/execution/provider_call/__init__.py,sha256=T-iFRcEVnQI5EfrH90hg6y41h3MzCKqI9xgPxPAnVBs,1763
|
|
332
|
+
orchestrator_cli/runtime/execution/provider_call/display.py,sha256=M4QNjLFqPgPQ_HkPAeEX5opAUUwjXGFqcZOpLmMldCs,3066
|
|
333
|
+
orchestrator_cli/runtime/execution/provider_call/events.py,sha256=VCvkWzICHfGABGMMTAjN5IL-UDs5sKCYW6cPLJuMd9A,3428
|
|
334
|
+
orchestrator_cli/runtime/execution/provider_call/generated_files.py,sha256=cToRGfjDa4CdobJFJ3Z1HAA0xAv25xLdUk0Qtclmrck,10834
|
|
335
|
+
orchestrator_cli/runtime/execution/provider_call/lifecycle.py,sha256=DaOYSiwTcFKVDtiKN-ETu0N6aSVLET8rzoPXHwvhXgs,14356
|
|
336
|
+
orchestrator_cli/runtime/execution/provider_call/types.py,sha256=lecJRsgWRxNiJN00GBiPgsB7YRJeqdScpwmUReXtoY8,1130
|
|
337
|
+
orchestrator_cli/runtime/execution/provider_call/workspace.py,sha256=8ue9ZmCUFguo7M9uwMGsMRI9VPN4EM8bqm43VgJ6jaM,4319
|
|
338
|
+
orchestrator_cli/runtime/execution/review_loop/__init__.py,sha256=BlovLdLo4xrBKm0ZzR9jWuUbpmNFMIqCFQGe71npAxo,12774
|
|
339
|
+
orchestrator_cli/runtime/execution/review_loop/audit_round.py,sha256=eC6QwIF35yj2T9qdMSfdnZYguHfsCEomyW3tebUHx9k,10136
|
|
340
|
+
orchestrator_cli/runtime/execution/review_loop/drift.py,sha256=HJMZsJINAQ4Zpbal3mzPnvVSpcRIeRjpfHLa9_eNrsM,5074
|
|
341
|
+
orchestrator_cli/runtime/execution/review_loop/drift_detection.py,sha256=6Z2ZFPlYmrxIL1q2drF0d5wsxsycNJqnx3bniOXYIQc,10618
|
|
342
|
+
orchestrator_cli/runtime/execution/review_loop/drift_events.py,sha256=YMRJgsCeuNfCyvZDQiWA_JpLtxucEccCWbqdF6GCMaM,2630
|
|
343
|
+
orchestrator_cli/runtime/execution/review_loop/executor_round.py,sha256=Ksp5F-LVel6OwtdYukNsdiU-cZZT7SkuF_4D_G322ng,3878
|
|
344
|
+
orchestrator_cli/runtime/execution/review_loop/policy.py,sha256=mNDag9DJaa0T8AYMpi8c561HcJtZw2rtrR6QHM-J87w,3109
|
|
345
|
+
orchestrator_cli/runtime/execution/review_loop/prompts.py,sha256=LEBPlIVj46tYn9HQ98xUh2rE6dj-gg7EcgysMx1ix1c,5308
|
|
346
|
+
orchestrator_cli/runtime/execution/review_loop/reviewer_round.py,sha256=p6kc_H-7-yY61d9yo_JvHthY85pseIT9lVdRd4OR2NM,11640
|
|
347
|
+
orchestrator_cli/runtime/execution/review_loop/rounds.py,sha256=ofQl5AkMSckM2U3Vk2SIoytbrusp7TCiPc9w_l51ro0,283
|
|
348
|
+
orchestrator_cli/runtime/execution/review_loop/state.py,sha256=OwJKr4jn0EfFwuYKfn8OTE8ak5gnwDRum2SCtsC1In4,10456
|
|
349
|
+
orchestrator_cli/runtime/execution/review_loop/types.py,sha256=W6SLvsp3Bldg8MBqJt3LwZmIfe3cffZ_aOk9TL1Z_Vw,11375
|
|
350
|
+
orchestrator_cli/runtime/execution/review_loop/validation.py,sha256=NKIHfp5uf9GBnY6R-bfUsLetk5vB3inYFHlpn0_iohk,11519
|
|
351
|
+
orchestrator_cli/runtime/execution/review_loop/workspace_state_paths.py,sha256=okKTUumo89otCmOtemP83JQXkUKjDY6jc-WqYHaN85E,2967
|
|
352
|
+
orchestrator_cli/runtime/execution/reviews/__init__.py,sha256=juqd9PbXs4yg45zMJ7BHAOPQjb7sgEbWE9InBtGZhfo,24
|
|
353
|
+
orchestrator_cli/runtime/execution/reviews/consensus.py,sha256=fAgdvNxAWxudfs8KOb2alDo2ZDbl6w4Gr9_a7TKcqRg,7119
|
|
354
|
+
orchestrator_cli/runtime/execution/reviews/fingerprints.py,sha256=ydHk8gdBxmZfMDrnIDQmejkYTUkdS5PgJMbDlCN2Q-I,4208
|
|
355
|
+
orchestrator_cli/runtime/execution/reviews/markdown.py,sha256=NmX1xELvZnHoqYTYs9bbPGD2eFGR-tRMA4xYDpbheqE,1952
|
|
356
|
+
orchestrator_cli/runtime/execution/reviews/plain_language.py,sha256=QYHSMihVMQHmMkjlCdpqeEcI39wBtjK6gf8XrA0Dwto,3424
|
|
357
|
+
orchestrator_cli/runtime/execution/reviews/structured.py,sha256=kBKwewDRe88Q7iOD-b-KWqz9cwycU7e8RA9KrEpo0NE,11609
|
|
358
|
+
orchestrator_cli/runtime/execution/reviews/types.py,sha256=SsOILyKY9yTvkvqU5hAZNjACqTZBUWa7GX9acgwynQo,1448
|
|
359
|
+
orchestrator_cli/runtime/execution/workflow/__init__.py,sha256=MYKuMBeXmDF7XBVvYg8PNKnEDgrq66BzMzQ2KKmSzRo,12814
|
|
360
|
+
orchestrator_cli/runtime/execution/workflow/cleanup.py,sha256=aKZbfv0_1wV6ZapVcyv2GnCYxEZW0ayKF9pVqrBRdww,5136
|
|
361
|
+
orchestrator_cli/runtime/execution/workflow/node.py,sha256=ZshHHYhdWnGlo4M8TbpPdG3vu659FFClSDbOz7gFuVs,3974
|
|
362
|
+
orchestrator_cli/runtime/execution/workflow/state.py,sha256=NQWEFBihho8Fcgsn66FwT2EWB3gM7VlN0SqMSwblgrM,3276
|
|
363
|
+
orchestrator_cli/runtime/execution/workspace_files/__init__.py,sha256=vKTq2zy8QH5HlX1FROqKS_0FK5iGHpocKyyq-x1lmCk,14906
|
|
364
|
+
orchestrator_cli/runtime/execution/workspace_files/generated.py,sha256=T6ZR7D9X46uF_KMAwLlcPfpIuFxyJtBfR5xafngnbjU,5134
|
|
365
|
+
orchestrator_cli/runtime/workspace/__init__.py,sha256=WPPNRpqidea2nqBUoShC_TlFXVZtT-5gOaZE99cRnkI,238
|
|
366
|
+
orchestrator_cli/runtime/workspace/cleanup.py,sha256=_13Qiqb_y86jz4JIhmCfFmRQx4kGxMIUvmVv7jsIOG8,8277
|
|
367
|
+
orchestrator_cli/runtime/workspace/cleanup_notes.py,sha256=NUn85MuDRT6bSuwrsKSZUVtV1gGyxkIUDjGqIRCrers,211
|
|
368
|
+
orchestrator_cli/runtime/workspace/git.py,sha256=XcqToB4Gm_6vHpq1J9VbiRxkwSspIfZsMOlCthstxPo,2096
|
|
369
|
+
orchestrator_cli/runtime/workspace/invocation.py,sha256=sd2d6jMXt0Af_2volFIEyw-9vacb-BvP4QFncUBpgRw,2867
|
|
370
|
+
orchestrator_cli/runtime/workspace/locks.py,sha256=hishik8uoGwGwqekcZSlgCOe4sjEV3YpS31BfbsEvSA,2805
|
|
371
|
+
orchestrator_cli/runtime/workspace/materialization.py,sha256=QB1d2tsW2MfAl1pr8GPBz8Jb3MW5UC2J9IMUk7PGAmw,1260
|
|
372
|
+
orchestrator_cli/runtime/workspace/prepared_workspace.py,sha256=y5acwskH87hi0SeEHmN0xPa1ojjFi-5Ukpmpb-HcYbc,15196
|
|
373
|
+
orchestrator_cli/runtime/workspace/setup.py,sha256=Hc37tGWY31vWytsXKzwYrfNd93o7TWdcRhu0Rx8A2xk,13162
|
|
374
|
+
orchestrator_cli/runtime/workspace/snapshot.py,sha256=LGqQOAJRpo5PLje2Uk_9se8fjFKlXfm1gu-zO4mkpA8,10099
|
|
375
|
+
orchestrator_cli/runtime/workspace/state.py,sha256=U0M8rmQ-0RNBut6VIQ6FfdvpJEGgXszf8H84BYEJd6E,13030
|
|
376
|
+
orchestrator_cli/runtime/workspace/state_selection.py,sha256=vqDJKUrvIySNaDeRjsdEXWWb9uPH2CBCi8cgZ7wtuqs,9185
|
|
377
|
+
orchestrator_cli/runtime/workspace/branch_export/__init__.py,sha256=OEIo8_1UGSV83wi5b98FxbEdf9_ZJEWN5lgYs7yW_MI,11306
|
|
378
|
+
orchestrator_cli/runtime/workspace/branch_export/checkpoint.py,sha256=0ycNqbua1wDcf4zopjiOBhWP6mpzTujWV8kbgBXLiIA,8393
|
|
379
|
+
orchestrator_cli/runtime/workspace/branch_export/fulfillment.py,sha256=8OkPqSp28uWXzmHjymBuaI1TieziSHZFuz2MfMfpi8I,6142
|
|
380
|
+
orchestrator_cli/runtime/workspace/branch_export/git.py,sha256=Hmq4_CrTY2kdKFwrLy_wSU2eSJsg4f-CmuPULohbOj0,4801
|
|
381
|
+
orchestrator_cli/runtime/workspace/branch_export/records.py,sha256=jNw50TYDuKHDzGDXToltJSyi5K57AoQhc9HjtwaHL9I,7453
|
|
382
|
+
orchestrator_cli/runtime/workspace/service/__init__.py,sha256=4_ph60-zDMUd8JlHm6vAjC2yfDruAyigQpTilYnVUn8,2103
|
|
383
|
+
orchestrator_cli/runtime/workspace/service/common.py,sha256=gXfxrU0-98Ly2SGDvNYRXJJTEtc9Ywx0_HLNIC-8GiA,5086
|
|
384
|
+
orchestrator_cli/runtime/workspace/service/snapshot.py,sha256=ZDo7uXvaKrAMcRDCBOhz-mlHrzm6XahEpryGpdOIj2E,8811
|
|
385
|
+
orchestrator_cli/runtime/workspace/service/types.py,sha256=kLJO1drqyn7iv3JJsmpsiknNshdkFRhCbYl-SPpVUKk,2542
|
|
386
|
+
orchestrator_cli/runtime/workspace/service/worktree.py,sha256=X3ojc5nJFIOVsqYYW1AccxmaSSsToJMk7Wmf5RPh0wI,16043
|
|
387
|
+
orchestrator_cli/runtime/workspace/service/worktree_failures.py,sha256=wYALTTIxN0aJBkW5fvvIYyuti3leqXseFToQw4CTW_A,4357
|
|
388
|
+
orchestrator_cli/runtime/workspace/worktree/__init__.py,sha256=eAciXXZ6S0BzBb7u60jd0WYEqamcbIxijIgKIQXRHVM,14500
|
|
389
|
+
orchestrator_cli/runtime/workspace/worktree/attributes.py,sha256=hBzNXAghs_vVtBcxcjDbn_rOKCkyVwx0fG4yJPHlAig,832
|
|
390
|
+
orchestrator_cli/runtime/workspace/worktree/cache.py,sha256=gdRwkIwJigpzS_UbN4_5W9S0rSgrsg3YW3GUxmCFkYc,10522
|
|
391
|
+
orchestrator_cli/runtime/workspace/worktree/cleanup.py,sha256=17hoerR9hqdRE8L2XtTbBqzSw7uEf_Gmz85leMszTzE,6617
|
|
392
|
+
orchestrator_cli/runtime/workspace/worktree/commit.py,sha256=a3CBY6gVVRYQ7hgNoR1K8diXIZM-j-P-sDZzu_hSAgY,1402
|
|
393
|
+
orchestrator_cli/runtime/workspace/worktree/descriptors.py,sha256=6izFY-ls7W9geDaMzNpk6QasNTHKw0a-kPxILg7HSzE,6147
|
|
394
|
+
orchestrator_cli/runtime/workspace/worktree/inspection.py,sha256=WHstaCkljT4eAdOEFDnDcLAywYi59wbfSbSQ9j1SmEM,11433
|
|
395
|
+
orchestrator_cli/runtime/workspace/worktree/lineage.py,sha256=354yVucvZJX0_rsZu-sd-zxjeLVp7Pq_h2QgH7MOKSg,15080
|
|
396
|
+
orchestrator_cli/runtime/workspace/worktree/materialization.py,sha256=Sq_HNak6_ZxvLFElbf3tiTxQzwKZa1PxI90WzIpdlHw,3909
|
|
397
|
+
orchestrator_cli/runtime/workspace/worktree/policy.py,sha256=VcZjUycqx998GKi7Rq9Hvi6-CHWUtRI8nM4xbQrPcZg,3945
|
|
398
|
+
orchestrator_cli/runtime/workspace/worktree/protected_refs.py,sha256=BS9_hZThXEAtMCnwZ7PmnbcAvnsJJ5eHCv3qz6667SE,1979
|
|
399
|
+
orchestrator_cli/runtime/workspace/worktree/ref_cleanup.py,sha256=iTNlRlztrfv-lro2c6Vq8vHbxVPTNp2foDdTXM1ypRI,2450
|
|
400
|
+
orchestrator_cli/runtime/workspace/worktree/refs.py,sha256=Cf9ywmFE0hiA3bseaPgbtocz8u0VjgbCIhL_tlnFJBk,1529
|
|
401
|
+
orchestrator_cli/runtime/workspace/worktree/reset.py,sha256=UweQwcvcJWWEZzETq-SQmN8BdzBECLgFRRukq5ofCjU,8398
|
|
402
|
+
orchestrator_cli/runtime/workspace/worktree/result_validation.py,sha256=0Ho4tRsBCpfbfNACi0aOjhNuDgIwVnSa0DdJF2lj_7c,1437
|
|
403
|
+
orchestrator_cli/runtime/workspace/worktree/reuse.py,sha256=95fKSLqS3Thy-gUFr5KgqtcqEDwS7KIJ2MxJZ2DpGh0,3384
|
|
404
|
+
orchestrator_cli/runtime/workspace/worktree/source_refs.py,sha256=ydKQxQcBs118aE03I_DcpjpA1QRuK-8Yqil-IUuxrBg,2750
|
|
405
|
+
orchestrator_cli/runtime/workspace/worktree/types.py,sha256=BC-y7fW3GhGK4mOpP1GcT9wLiS89lCSM-DtnK-GM3r4,1632
|
|
406
|
+
crewplane-0.1.0a1.dist-info/METADATA,sha256=KIv9XCwMUQNVCyn7zSjOEllq-aXwrSbMfyM8ftF2IKM,4290
|
|
407
|
+
crewplane-0.1.0a1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
408
|
+
crewplane-0.1.0a1.dist-info/entry_points.txt,sha256=WE3jywTR9JFjLm7hnGX58AVb2EAh8svUdtRUAxNhUw8,62
|
|
409
|
+
crewplane-0.1.0a1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
410
|
+
crewplane-0.1.0a1.dist-info/RECORD,,
|