devflow-engine 1.1.27__tar.gz → 1.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.
- devflow_engine-1.2.0/.gitignore +8 -0
- devflow_engine-1.2.0/PKG-INFO +18 -0
- devflow_engine-1.2.0/README.md +5 -0
- devflow_engine-1.2.0/pyproject.toml +34 -0
- devflow_engine-1.2.0/src/devflow_engine/__init__.py +5 -0
- devflow_engine-1.2.0/src/devflow_engine/agentic/__init__.py +1 -0
- devflow_engine-1.2.0/src/devflow_engine/agentic/service.py +87 -0
- devflow_engine-1.2.0/src/devflow_engine/agentic/tier_config.py +87 -0
- devflow_engine-1.2.0/src/devflow_engine/agentic/tier_verifier.py +103 -0
- devflow_engine-1.2.0/src/devflow_engine/auth/__init__.py +3 -0
- devflow_engine-1.2.0/src/devflow_engine/auth/keychain.py +104 -0
- devflow_engine-1.2.0/src/devflow_engine/cli/__init__.py +1 -0
- devflow_engine-1.2.0/src/devflow_engine/cli/app.py +510 -0
- devflow_engine-1.2.0/src/devflow_engine/core/__init__.py +1 -0
- devflow_engine-1.2.0/src/devflow_engine/core/dag.py +307 -0
- devflow_engine-1.2.0/src/devflow_engine/core/playground.py +192 -0
- devflow_engine-1.2.0/src/devflow_engine/error_story/__init__.py +3 -0
- devflow_engine-1.2.0/src/devflow_engine/error_story/dag.py +427 -0
- devflow_engine-1.2.0/src/devflow_engine/error_story/models.py +81 -0
- devflow_engine-1.2.0/src/devflow_engine/execution/__init__.py +1 -0
- devflow_engine-1.2.0/src/devflow_engine/execution/artifacts.py +52 -0
- devflow_engine-1.2.0/src/devflow_engine/execution/eval_runner.py +1389 -0
- devflow_engine-1.2.0/src/devflow_engine/execution/primitives.py +322 -0
- devflow_engine-1.2.0/src/devflow_engine/execution/store.py +526 -0
- devflow_engine-1.2.0/src/devflow_engine/execution/transitions.py +159 -0
- devflow_engine-1.2.0/src/devflow_engine/execution/types.py +15 -0
- devflow_engine-1.2.0/src/devflow_engine/execution/worker.py +79 -0
- devflow_engine-1.2.0/src/devflow_engine/idea/__init__.py +5 -0
- devflow_engine-1.2.0/src/devflow_engine/idea/dag.py +18 -0
- devflow_engine-1.2.0/src/devflow_engine/idea/models.py +113 -0
- devflow_engine-1.2.0/src/devflow_engine/idea/paths.py +20 -0
- devflow_engine-1.2.0/src/devflow_engine/idea/story_pipeline.py +1075 -0
- devflow_engine-1.2.0/src/devflow_engine/implementation/__init__.py +1 -0
- devflow_engine-1.2.0/src/devflow_engine/implementation/dag.py +1046 -0
- devflow_engine-1.2.0/src/devflow_engine/integration/__init__.py +8 -0
- devflow_engine-1.2.0/src/devflow_engine/integration/dag.py +989 -0
- devflow_engine-1.2.0/src/devflow_engine/llm/__init__.py +1 -0
- devflow_engine-1.2.0/src/devflow_engine/llm/http_transport.py +115 -0
- devflow_engine-1.2.0/src/devflow_engine/llm/provider_capabilities.py +100 -0
- devflow_engine-1.2.0/src/devflow_engine/llm/provider_service.py +163 -0
- devflow_engine-1.2.0/src/devflow_engine/llm/subscription_adapters.py +213 -0
- devflow_engine-1.2.0/src/devflow_engine/project/__init__.py +3 -0
- devflow_engine-1.2.0/src/devflow_engine/project/runtime.py +73 -0
- devflow_engine-1.2.0/src/devflow_engine/quick_action/__init__.py +3 -0
- devflow_engine-1.2.0/src/devflow_engine/quick_action/executor.py +81 -0
- devflow_engine-1.2.0/src/devflow_engine/quick_action/models.py +66 -0
- devflow_engine-1.2.0/src/devflow_engine/story/__init__.py +3 -0
- devflow_engine-1.2.0/src/devflow_engine/story/models.py +68 -0
- devflow_engine-1.2.0/src/devflow_engine/support/__init__.py +15 -0
- devflow_engine-1.2.0/src/devflow_engine/support/blocked.py +43 -0
- devflow_engine-1.2.0/src/devflow_engine/support/devin.py +126 -0
- devflow_engine-1.2.0/tests/__init__.py +1 -0
- devflow_engine-1.2.0/tests/error_solver_agentic_fakes.py +60 -0
- devflow_engine-1.2.0/tests/fixtures/__init__.py +1 -0
- devflow_engine-1.2.0/tests/fixtures/integration_playground_nodes.py +47 -0
- devflow_engine-1.2.0/tests/fixtures/playground_nodes.py +69 -0
- devflow_engine-1.2.0/tests/full_pipeline_agentic_fakes.py +23 -0
- devflow_engine-1.2.0/tests/idea_story_agentic_fakes.py +113 -0
- devflow_engine-1.2.0/tests/implementation_agentic_fakes.py +153 -0
- devflow_engine-1.2.0/tests/integration_agentic_fakes.py +150 -0
- devflow_engine-1.2.0/tests/test_agentic_service.py +139 -0
- devflow_engine-1.2.0/tests/test_agentic_tier_config.py +99 -0
- devflow_engine-1.2.0/tests/test_agentic_tier_verifier.py +81 -0
- devflow_engine-1.2.0/tests/test_blocked_handoff.py +28 -0
- devflow_engine-1.2.0/tests/test_cli_contract.py +388 -0
- devflow_engine-1.2.0/tests/test_core_primitive_input_models.py +66 -0
- devflow_engine-1.2.0/tests/test_dag_node_types.py +177 -0
- devflow_engine-1.2.0/tests/test_devin_handoff.py +96 -0
- devflow_engine-1.2.0/tests/test_error_solver_dag.py +99 -0
- devflow_engine-1.2.0/tests/test_execution_eval.py +311 -0
- devflow_engine-1.2.0/tests/test_execution_spine.py +493 -0
- devflow_engine-1.2.0/tests/test_http_provider_transport.py +111 -0
- devflow_engine-1.2.0/tests/test_idea_dag_core.py +131 -0
- devflow_engine-1.2.0/tests/test_idea_input_model.py +64 -0
- devflow_engine-1.2.0/tests/test_idea_story_pipeline.py +90 -0
- devflow_engine-1.2.0/tests/test_integration_dag.py +289 -0
- devflow_engine-1.2.0/tests/test_keychain_service.py +87 -0
- devflow_engine-1.2.0/tests/test_llm_provider_service.py +200 -0
- devflow_engine-1.2.0/tests/test_playground_harness.py +133 -0
- devflow_engine-1.2.0/tests/test_project_runtime.py +55 -0
- devflow_engine-1.2.0/tests/test_provider_capabilities.py +38 -0
- devflow_engine-1.2.0/tests/test_quick_action_executor.py +88 -0
- devflow_engine-1.2.0/tests/test_story_implementation_dag.py +309 -0
- devflow_engine-1.2.0/tests/test_subscription_adapters.py +142 -0
- devflow_engine-1.2.0/tests/test_worker_cli_e2e.py +147 -0
- devflow_engine-1.2.0/uv.lock +599 -0
- devflow_engine-1.1.27/.github/workflows/devflow-enforce.yml +0 -38
- devflow_engine-1.1.27/.gitignore +0 -22
- devflow_engine-1.1.27/.pi/agents/filemaker-expert/filemaker-expert.md +0 -49
- devflow_engine-1.1.27/.pi/agents/goldilocks-advisor/goldilocks-advisor.md +0 -69
- devflow_engine-1.1.27/.pi/agents/idea-compliance-advisor/idea-compliance-advisor.md +0 -145
- devflow_engine-1.1.27/.pi/npm/.gitignore +0 -2
- devflow_engine-1.1.27/.pi/settings.json +0 -9
- devflow_engine-1.1.27/.pi-lens/cache/session-start-guidance.json +0 -1
- devflow_engine-1.1.27/.pi-lens/cache/session-start-guidance.meta.json +0 -3
- devflow_engine-1.1.27/.pi-lens/cache/todo-baseline.json +0 -3
- devflow_engine-1.1.27/.pi-lens/cache/todo-baseline.meta.json +0 -3
- devflow_engine-1.1.27/DESIGN_NOTES.md +0 -256
- devflow_engine-1.1.27/OPERATOR.md +0 -492
- devflow_engine-1.1.27/PKG-INFO +0 -220
- devflow_engine-1.1.27/README.md +0 -201
- devflow_engine-1.1.27/ai_docs/context/source_docs/assumptions_registry.json +0 -412
- devflow_engine-1.1.27/ai_docs/context/source_docs/domain_entities.json +0 -5
- devflow_engine-1.1.27/ai_docs/context/source_docs/product_brief.json +0 -14
- devflow_engine-1.1.27/ai_docs/context/source_docs/user_workflows.json +0 -7
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/devflow-bootstrap-answer.md +0 -38
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/idea_to_devflow_story_dag_contract.md +0 -76
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/ideation-dag-contract.md +0 -276
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/pencil_bridge_and_code_to_design_plan.md +0 -246
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/scope-to-idea-enrichment-dag-contract.md +0 -831
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/source-doc-mutation-dag-contract.md +0 -799
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/source-docs-to-scopes-dag-contract.md +0 -829
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/ui-grounding-runtime-implementation-plan.md +0 -548
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/ui-grounding-workflow-note.md +0 -91
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/ui_grounding_code_to_design_opportunity_map.md +0 -335
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/ui_grounding_next_sprint_checklist.md +0 -174
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/ui_grounding_phase1_pitfalls_review.md +0 -436
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/notes/ui_grounding_workflow_dag_contract.md +0 -489
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/source_docs/architecture.md +0 -187
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/source_docs/delivery_plan.md +0 -201
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/source_docs/index.md +0 -9
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/source_docs/prd.md +0 -179
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/source_docs/project_charter.md +0 -111
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/source_docs/ux_design.md +0 -261
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-ARCH-1010_arch_decisions_cli.md +0 -46
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-ARCH-1013_validate_architecture_gate.md +0 -39
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-INV-1003_architecture_inventory_registry.md +0 -48
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-PIPE-1002_production_pipeline_story_entrypoint.md +0 -45
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-PIPE-1011_pipeline_runner_cli.md +0 -43
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-PROC-1001_ideation_planning_loop.md +0 -50
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-REG-1030_registry_db_perfect_registration.md +0 -53
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-REG-1031_init_dedupe_and_strict_refactor.md +0 -56
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/cli-typer-command-surface.md +0 -55
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/config-hierarchy-discovery.md +0 -62
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/green-gate-quality-script.md +0 -55
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/logging-baseline.md +0 -53
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/repo-bootstrap-uv-typer-skeleton.md +0 -62
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.10_project_init_registry_db.md +0 -63
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.1_project_init.md +0 -68
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.3_project_registry_list.md +0 -52
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.4_project_remove.md +0 -53
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.5_project_workspace_layout_hashing.md +0 -61
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.6_config_hierarchy_resolution.md +0 -59
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.7_project_import_clone_register.md +0 -68
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.8_project_import_init_blank_repo.md +0 -76
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.9_project_import_story_synthesis.md +0 -53
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.1_execution-store_sqlite-bootstrap.md +0 -99
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.2_execution-store_schema_core-tables.md +0 -157
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.3_execution-store_run-lifecycle-persistence.md +0 -76
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.4_execution-store_node-execution-persistence.md +0 -67
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.5_execution-store_artifacts-errors-review-packets.md +0 -86
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.6_logging_layout_correlation-ids_tool-logs.md +0 -94
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-canonical-md.md +0 -63
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-contract-hash.md +0 -66
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-indexer.md +0 -72
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-optional-artifacts.md +0 -60
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-validation.md +0 -77
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-502_repo-analysis-capture-evidence.md +0 -97
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-503_generate-baseline-draft-stories-per-plane.md +0 -77
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-504_draft-storage-provenance-and-non-canonical-separation.md +0 -71
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-505_promote-drafts-to-canonical-with-traceability.md +0 -86
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-506_review-and-diff-drafts-vs-canonical.md +0 -63
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/DF2-IMPL-620_genai_workflow_engine_conversion.md +0 -54
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/implementation-dag-core.md +0 -78
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-git-commit-green.md +0 -68
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-green-implement-and-gate.md +0 -77
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-red-failing-tests.md +0 -98
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-testdesign-oracle-anchor.md +0 -67
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-validate-stories.md +0 -69
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-validate-tests.md +0 -70
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area8_errors/US-8.1_error-queue_core-model.md +0 -106
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area8_errors/US-8.3_error-queue_dedupe-fingerprints.md +0 -94
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-901_playground-preflight-contract.md +0 -52
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-902_preflight-check-catalog-and-config.md +0 -41
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-903_scenario-registry-and-discovery.md +0 -44
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-904_scenario-runner-and-artifacts.md +0 -45
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-905_failures-create-error-tasks.md +0 -45
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-906_preflight-scenarios-respect-story-planes.md +0 -45
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-907_parallel-batch-run-and-summary.md +0 -45
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-908_node-devflow-parity-preflight-json.md +0 -40
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area2_projects/US2.2_project_register_existing.md +0 -62
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area4_story_system/story-system-draft-vs-canonical.md +0 -66
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area5_planning_idea_tool/DF2-IDEA-501_idea-init-and-structure.md +0 -89
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area5_planning_idea_tool/DF2-IDEA-507_list-and-inspect-ideas-analyses-drafts.md +0 -64
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area5_planning_idea_tool/DF2-IDEA-508_link-idea-artifacts-to-execution-runs.md +0 -61
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area6_implementation_dag/stage-git-commit-refactor.md +0 -61
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area6_implementation_dag/stage-normalize.md +0 -97
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area6_implementation_dag/stage-refactor-and-verify.md +0 -73
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.1_review-packet_schema-and-loader.md +0 -99
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.2_review-runner_core-workflow.md +0 -102
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.3_review-findings_persistence_execution-store.md +0 -100
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.4_remediation-run-spec_generation.md +0 -85
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.5_security-and-safety_review-policies.md +0 -87
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.6_contract-compliance-and-soundness_checks.md +0 -86
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.7_cli-review-command_and_artifacts.md +0 -80
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.2_error-queue_claiming-concurrency.md +0 -79
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.4_remediation-runs_model-and-linkage.md +0 -75
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.5_error-solver_workflow-orchestration.md +0 -114
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.6_github-issues_ingestion-watcher.md +0 -86
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.7_execution-errors_to_error-tasks-ingestion.md +0 -81
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.8_error-cli_minimal-commands.md +0 -72
- devflow_engine-1.1.27/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.9_node-devflow-semantics_compatibility.md +0 -67
- devflow_engine-1.1.27/docs/control-plane-source-of-truth-sketch.md +0 -170
- devflow_engine-1.1.27/docs/devflow-queue-ops-skill-tree.md +0 -134
- devflow_engine-1.1.27/docs/devflow-skill-overlays.md +0 -42
- devflow_engine-1.1.27/docs/devflow-skill-registry-spec.md +0 -383
- devflow_engine-1.1.27/docs/devin-ideation-source-docs.md +0 -351
- devflow_engine-1.1.27/docs/devin-intake-ideation-boundary.md +0 -74
- devflow_engine-1.1.27/docs/error-solving-dag-note.md +0 -49
- devflow_engine-1.1.27/docs/evals/source-doc-sparse-input-eval.md +0 -173
- devflow_engine-1.1.27/docs/evals/source-doc-targeted-mutation-eval.md +0 -138
- devflow_engine-1.1.27/docs/llm-invocation-architecture.md +0 -282
- devflow_engine-1.1.27/docs/production-happy-path.md +0 -190
- devflow_engine-1.1.27/docs/project-doc-agent-contracts.md +0 -130
- devflow_engine-1.1.27/docs/project-doc-cross-reference-rules.md +0 -72
- devflow_engine-1.1.27/docs/project-doc-richness-contract.md +0 -156
- devflow_engine-1.1.27/docs/prompts/anti-patterns.md +0 -42
- devflow_engine-1.1.27/docs/prompts/devin-agent-prompt.md +0 -55
- devflow_engine-1.1.27/docs/prompts/devin2-agent-prompt.md +0 -81
- devflow_engine-1.1.27/docs/prompts/examples/devin-vapi-clone-reference-exchange.json +0 -85
- devflow_engine-1.1.27/docs/queue-worker-infra.md +0 -268
- devflow_engine-1.1.27/docs/recovery-dag-contract.md +0 -68
- devflow_engine-1.1.27/docs/registry-doctrine.md +0 -108
- devflow_engine-1.1.27/docs/scope-idea-agentification.md +0 -40
- devflow_engine-1.1.27/docs/source-doc-coherence-node-contract.md +0 -90
- devflow_engine-1.1.27/docs/source-doc-mutation-acceptance-matrix.md +0 -150
- devflow_engine-1.1.27/docs/source-doc-mutation-real-eval.md +0 -120
- devflow_engine-1.1.27/docs/source-doc-mutation-support-index-contract.md +0 -56
- devflow_engine-1.1.27/docs/source-doc-section-agent-contracts.md +0 -191
- devflow_engine-1.1.27/docs/source-doc-section-richness-contract.md +0 -309
- devflow_engine-1.1.27/docs/source-to-project-doc-impact-map.md +0 -142
- devflow_engine-1.1.27/docs/source-to-project-doc-reference-map.md +0 -160
- devflow_engine-1.1.27/docs/story-implementation-planning-node.md +0 -276
- devflow_engine-1.1.27/docs/support/source_doc_mutation/cross_sourceXproject.json +0 -26
- devflow_engine-1.1.27/docs/support/source_doc_mutation/internal_project.json +0 -33
- devflow_engine-1.1.27/docs/support/source_doc_mutation/internal_source.json +0 -50
- devflow_engine-1.1.27/docs/ui-grounding-curtis-medium-tier-doctrine.md +0 -274
- devflow_engine-1.1.27/docs/ui-grounding-curtis-structural-integration-note.md +0 -135
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/project_docs/architecture.md +0 -165
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/project_docs/delivery_plan.md +0 -174
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/project_docs/index.md +0 -9
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/project_docs/prd.md +0 -238
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/project_docs/project_charter.md +0 -102
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/project_docs/ux_design.md +0 -200
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/source_docs/assumptions_registry.json +0 -256
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/source_docs/domain_entities.json +0 -22
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/source_docs/product_brief.json +0 -24
- devflow_engine-1.1.27/evals/20260322T195349Z/ai_docs/context/source_docs/user_workflows.json +0 -26
- devflow_engine-1.1.27/evals/20260322T195349Z/eval_manifest.json +0 -48
- devflow_engine-1.1.27/evals/20260322T195349Z/indexes/project_docs_index.json +0 -116
- devflow_engine-1.1.27/evals/20260322T195349Z/indexes/source_docs_index.json +0 -66
- devflow_engine-1.1.27/evals/20260322T195349Z/metrics/completeness.json +0 -59
- devflow_engine-1.1.27/evals/20260322T195349Z/metrics/quality.json +0 -59
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/project_docs/architecture.md +0 -142
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/project_docs/delivery_plan.md +0 -149
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/project_docs/index.md +0 -9
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/project_docs/prd.md +0 -216
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/project_docs/project_charter.md +0 -78
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/project_docs/ux_design.md +0 -190
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/source_docs/assumptions_registry.json +0 -81
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/source_docs/domain_entities.json +0 -65
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/source_docs/product_brief.json +0 -57
- devflow_engine-1.1.27/evals/20260322T211128Z/ai_docs/context/source_docs/user_workflows.json +0 -82
- devflow_engine-1.1.27/evals/20260322T211128Z/eval_manifest.json +0 -48
- devflow_engine-1.1.27/evals/20260322T211128Z/indexes/project_docs_index.json +0 -114
- devflow_engine-1.1.27/evals/20260322T211128Z/indexes/source_docs_index.json +0 -74
- devflow_engine-1.1.27/evals/20260322T211128Z/metrics/completeness.json +0 -59
- devflow_engine-1.1.27/evals/20260322T211128Z/metrics/quality.json +0 -59
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/project_docs/architecture.md +0 -202
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/project_docs/delivery_plan.md +0 -206
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/project_docs/index.md +0 -9
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/project_docs/prd.md +0 -274
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/project_docs/project_charter.md +0 -97
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/project_docs/ux_design.md +0 -245
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/source_docs/assumptions_registry.json +0 -503
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/source_docs/domain_entities.json +0 -116
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/source_docs/product_brief.json +0 -61
- devflow_engine-1.1.27/evals/20260322T214046Z/ai_docs/context/source_docs/user_workflows.json +0 -106
- devflow_engine-1.1.27/evals/20260322T214046Z/eval_manifest.json +0 -48
- devflow_engine-1.1.27/evals/20260322T214046Z/indexes/project_docs_index.json +0 -107
- devflow_engine-1.1.27/evals/20260322T214046Z/indexes/source_docs_index.json +0 -82
- devflow_engine-1.1.27/evals/20260322T214046Z/metrics/completeness.json +0 -62
- devflow_engine-1.1.27/evals/20260322T214046Z/metrics/quality.json +0 -62
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/project_docs/architecture.md +0 -187
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/project_docs/delivery_plan.md +0 -201
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/project_docs/index.md +0 -9
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/project_docs/prd.md +0 -179
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/project_docs/project_charter.md +0 -111
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/project_docs/ux_design.md +0 -261
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/source_docs/assumptions_registry.json +0 -127
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/source_docs/domain_entities.json +0 -14
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/source_docs/product_brief.json +0 -14
- devflow_engine-1.1.27/evals/20260322T223518Z/ai_docs/context/source_docs/user_workflows.json +0 -15
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/project_docs/architecture.md +0 -202
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/project_docs/delivery_plan.md +0 -206
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/project_docs/index.md +0 -9
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/project_docs/prd.md +0 -274
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/project_docs/project_charter.md +0 -97
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/project_docs/ux_design.md +0 -245
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/source_docs/assumptions_registry.json +0 -503
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/source_docs/domain_entities.json +0 -116
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/source_docs/product_brief.json +0 -61
- devflow_engine-1.1.27/evals/20260322T223518Z/baseline/source_docs/user_workflows.json +0 -106
- devflow_engine-1.1.27/evals/20260322T223518Z/eval_manifest.json +0 -87
- devflow_engine-1.1.27/evals/20260322T223518Z/indexes/project_docs_index.json +0 -93
- devflow_engine-1.1.27/evals/20260322T223518Z/indexes/source_docs_index.json +0 -78
- devflow_engine-1.1.27/evals/20260322T223518Z/matrices/accuracy.json +0 -59
- devflow_engine-1.1.27/evals/20260322T223518Z/matrices/appropriate_update.json +0 -58
- devflow_engine-1.1.27/evals/20260322T223518Z/matrices/thoroughness.json +0 -58
- devflow_engine-1.1.27/evals/20260322T223518Z/metrics/completeness.json +0 -57
- devflow_engine-1.1.27/evals/20260322T223518Z/metrics/quality.json +0 -57
- devflow_engine-1.1.27/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/devin_agent_loop_terminal.json +0 -264
- devflow_engine-1.1.27/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/devin_intake.json +0 -36
- devflow_engine-1.1.27/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/devin_response.json +0 -261
- devflow_engine-1.1.27/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/devin_response_post.json +0 -73
- devflow_engine-1.1.27/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/idea_context_resolution.json +0 -77
- devflow_engine-1.1.27/evals/devin/20260322T211631Z/basic_new_idea_sparse/eval_manifest.json +0 -43
- devflow_engine-1.1.27/evals/devin/20260322T211631Z/basic_new_idea_sparse/metrics/scores.json +0 -36
- devflow_engine-1.1.27/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/devin_agent_loop_terminal.json +0 -262
- devflow_engine-1.1.27/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/devin_intake.json +0 -36
- devflow_engine-1.1.27/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/devin_response.json +0 -259
- devflow_engine-1.1.27/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/devin_response_post.json +0 -69
- devflow_engine-1.1.27/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/idea_context_resolution.json +0 -77
- devflow_engine-1.1.27/evals/devin/20260322T213939Z/basic_new_idea_sparse/eval_manifest.json +0 -43
- devflow_engine-1.1.27/evals/devin/20260322T213939Z/basic_new_idea_sparse/metrics/scores.json +0 -37
- devflow_engine-1.1.27/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/devin_agent_loop_terminal.json +0 -262
- devflow_engine-1.1.27/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/devin_intake.json +0 -36
- devflow_engine-1.1.27/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/devin_response.json +0 -259
- devflow_engine-1.1.27/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/devin_response_post.json +0 -69
- devflow_engine-1.1.27/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/idea_context_resolution.json +0 -77
- devflow_engine-1.1.27/evals/devin/20260322T214440Z/extend_existing_codebase_feature/eval_manifest.json +0 -41
- devflow_engine-1.1.27/evals/devin/20260322T214440Z/extend_existing_codebase_feature/metrics/scores.json +0 -35
- devflow_engine-1.1.27/evals/devin/20260322T215138Z/drive_devflow_commands_queue/artifacts/devin_agent_loop_terminal.json +0 -167
- devflow_engine-1.1.27/evals/devin/20260322T215138Z/drive_devflow_commands_queue/artifacts/devin_intake.json +0 -38
- devflow_engine-1.1.27/evals/devin/20260322T215138Z/drive_devflow_commands_queue/artifacts/devin_response.json +0 -164
- devflow_engine-1.1.27/evals/devin/20260322T215138Z/drive_devflow_commands_queue/artifacts/devin_response_post.json +0 -59
- devflow_engine-1.1.27/evals/devin/20260322T215138Z/drive_devflow_commands_queue/eval_manifest.json +0 -42
- devflow_engine-1.1.27/evals/devin/20260322T215138Z/drive_devflow_commands_queue/metrics/scores.json +0 -35
- devflow_engine-1.1.27/evals/devin/20260322T222040Z/drive_devflow_commands_queue/artifacts/devin_agent_loop_terminal.json +0 -215
- devflow_engine-1.1.27/evals/devin/20260322T222040Z/drive_devflow_commands_queue/artifacts/devin_intake.json +0 -38
- devflow_engine-1.1.27/evals/devin/20260322T222040Z/drive_devflow_commands_queue/artifacts/devin_response.json +0 -212
- devflow_engine-1.1.27/evals/devin/20260322T222040Z/drive_devflow_commands_queue/artifacts/devin_response_post.json +0 -57
- devflow_engine-1.1.27/evals/devin/20260322T222040Z/drive_devflow_commands_queue/eval_manifest.json +0 -42
- devflow_engine-1.1.27/evals/devin/20260322T222040Z/drive_devflow_commands_queue/metrics/scores.json +0 -35
- devflow_engine-1.1.27/evals/devin/20260322T222316Z/drive_devflow_commands_queue/artifacts/devin_agent_loop_terminal.json +0 -215
- devflow_engine-1.1.27/evals/devin/20260322T222316Z/drive_devflow_commands_queue/artifacts/devin_intake.json +0 -38
- devflow_engine-1.1.27/evals/devin/20260322T222316Z/drive_devflow_commands_queue/artifacts/devin_response.json +0 -212
- devflow_engine-1.1.27/evals/devin/20260322T222316Z/drive_devflow_commands_queue/artifacts/devin_response_post.json +0 -57
- devflow_engine-1.1.27/evals/devin/20260322T222316Z/drive_devflow_commands_queue/eval_manifest.json +0 -42
- devflow_engine-1.1.27/evals/devin/20260322T222316Z/drive_devflow_commands_queue/metrics/scores.json +0 -36
- devflow_engine-1.1.27/evals/devin/20260322T223619Z/drive_devflow_commands_queue/artifacts/devin_agent_loop_terminal.json +0 -212
- devflow_engine-1.1.27/evals/devin/20260322T223619Z/drive_devflow_commands_queue/artifacts/devin_intake.json +0 -38
- devflow_engine-1.1.27/evals/devin/20260322T223619Z/drive_devflow_commands_queue/artifacts/devin_response.json +0 -209
- devflow_engine-1.1.27/evals/devin/20260322T223619Z/drive_devflow_commands_queue/artifacts/devin_response_post.json +0 -53
- devflow_engine-1.1.27/evals/devin/20260322T223619Z/drive_devflow_commands_queue/eval_manifest.json +0 -42
- devflow_engine-1.1.27/evals/devin/20260322T223619Z/drive_devflow_commands_queue/metrics/scores.json +0 -36
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -185
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -44
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -24
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/eval_manifest.json +0 -173
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/eval_manifest.json +0 -216
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/turn_result.json +0 -34
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/eval_manifest.json +0 -43
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T183244Z/suite_summary.json +0 -43
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -196
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_activation_decision.json +0 -175
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -78
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -131
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -39
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_assumption_completion.json +0 -9
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_readiness_contract.json +0 -58
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_activation_decision.json +0 -124
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_assumption_completion.json +0 -9
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_readiness_contract.json +0 -58
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -39
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/eval_manifest.json +0 -179
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -54
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -94
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_intake.json +0 -47
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/route.json +0 -27
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_assumption_completion.json +0 -9
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_readiness_contract.json +0 -40
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/eval_manifest.json +0 -223
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -90
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -44
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -82
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_assumption_completion.json +0 -53
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_readiness_contract.json +0 -93
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/eval_manifest.json +0 -43
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184333Z/suite_summary.json +0 -43
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -194
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -54
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -94
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -47
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_assumption_completion.json +0 -9
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_readiness_contract.json +0 -40
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -27
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_assumption_completion.json +0 -74
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_readiness_contract.json +0 -119
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/eval_manifest.json +0 -179
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -54
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -94
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_intake.json +0 -47
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/route.json +0 -27
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_assumption_completion.json +0 -9
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_readiness_contract.json +0 -40
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/eval_manifest.json +0 -223
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -44
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -82
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_response_post.json +0 -94
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_assumption_completion.json +0 -55
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_readiness_contract.json +0 -97
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/eval_manifest.json +0 -43
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T184800Z/suite_summary.json +0 -43
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -195
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -90
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -54
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -94
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -47
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_assumption_completion.json +0 -76
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_readiness_contract.json +0 -122
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -27
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_activation_decision.json +0 -121
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_assumption_completion.json +0 -9
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_readiness_contract.json +0 -55
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -39
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/eval_manifest.json +0 -23
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185050Z/suite_summary.json +0 -23
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -195
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -54
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -94
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_assumption_completion.json +0 -9
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/idea_readiness_contract.json +0 -40
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_activation_decision.json +0 -121
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_assumption_completion.json +0 -9
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_readiness_contract.json +0 -55
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -39
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/eval_manifest.json +0 -178
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -54
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -94
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_intake.json +0 -47
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/route.json +0 -27
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_assumption_completion.json +0 -74
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_readiness_contract.json +0 -119
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/turn_result.json +0 -37
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/eval_manifest.json +0 -223
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -44
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -82
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_response_post.json +0 -86
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_response_post.json +0 -94
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/turn_result.json +0 -35
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/devin_intake.json +0 -46
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/devin_response_post.json +0 -92
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_assumption_completion.json +0 -53
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_context_resolution.json +0 -371
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/idea_readiness_contract.json +0 -93
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/route.json +0 -26
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/turn_result.json +0 -38
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/eval_manifest.json +0 -43
- devflow_engine-1.1.27/evals/devin_multi_turn/20260412T185255Z/suite_summary.json +0 -43
- devflow_engine-1.1.27/evals/project_bootstrap/dataset.yaml +0 -97
- devflow_engine-1.1.27/evals/project_bootstrap/run_eval.py +0 -716
- devflow_engine-1.1.27/evals/project_bootstrap/schema.md +0 -99
- devflow_engine-1.1.27/playground/evals/source-doc-sparse-input-scenario.json +0 -9
- devflow_engine-1.1.27/playground/evals/source-doc-targeted-mutation-scenario.json +0 -10
- devflow_engine-1.1.27/playground/ideation_arm_playground.py +0 -239
- devflow_engine-1.1.27/playground/ideation_scenarios_template.json +0 -19
- devflow_engine-1.1.27/playground/iterate_arm_playground.py +0 -669
- devflow_engine-1.1.27/playground/run_ideation_arm_scenarios.py +0 -67
- devflow_engine-1.1.27/playground/run_iterate_scenarios.sh +0 -12
- devflow_engine-1.1.27/playground/source_doc_mutation_eval.py +0 -116
- devflow_engine-1.1.27/prompts/devin/generic/prompt.md +0 -6
- devflow_engine-1.1.27/prompts/devin/ideation/prompt.md +0 -263
- devflow_engine-1.1.27/prompts/devin/ideation/scenarios.md +0 -5
- devflow_engine-1.1.27/prompts/devin/ideation_loop/prompt.md +0 -6
- devflow_engine-1.1.27/prompts/devin/insight/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/devin/insight/scenarios.md +0 -5
- devflow_engine-1.1.27/prompts/devin/intake/prompt.md +0 -15
- devflow_engine-1.1.27/prompts/devin/iterate/prompt.md +0 -12
- devflow_engine-1.1.27/prompts/devin/shared/eval_doctrine.md +0 -9
- devflow_engine-1.1.27/prompts/devin/shared/principles.md +0 -246
- devflow_engine-1.1.27/prompts/devin_eval/assessment/prompt.md +0 -18
- devflow_engine-1.1.27/prompts/idea/api_ideation_agent/prompt.md +0 -8
- devflow_engine-1.1.27/prompts/idea/api_insight_agent/prompt.md +0 -8
- devflow_engine-1.1.27/prompts/idea/response_doctrine/prompt.md +0 -18
- devflow_engine-1.1.27/prompts/implementation/dependency_assessment/prompt.md +0 -12
- devflow_engine-1.1.27/prompts/implementation/green/green/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/implementation/green/node_config/prompt.md +0 -3
- devflow_engine-1.1.27/prompts/implementation/green_review/outcome_review/prompt.md +0 -5
- devflow_engine-1.1.27/prompts/implementation/green_review/prior_run_review/prompt.md +0 -5
- devflow_engine-1.1.27/prompts/implementation/red/prompt.md +0 -20
- devflow_engine-1.1.27/prompts/implementation/redreview/prompt.md +0 -17
- devflow_engine-1.1.27/prompts/implementation/redreview_repair/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/implementation/setupdoc/prompt.md +0 -10
- devflow_engine-1.1.27/prompts/implementation/story_planning/prompt.md +0 -13
- devflow_engine-1.1.27/prompts/implementation/test_design/prompt.md +0 -20
- devflow_engine-1.1.27/prompts/integration/README.md +0 -185
- devflow_engine-1.1.27/prompts/integration/green/example.md +0 -67
- devflow_engine-1.1.27/prompts/integration/green/green/prompt.md +0 -10
- devflow_engine-1.1.27/prompts/integration/green/node_config/prompt.md +0 -42
- devflow_engine-1.1.27/prompts/integration/green/past_prompts/20260417T212300/green/prompt.md +0 -15
- devflow_engine-1.1.27/prompts/integration/green/past_prompts/20260417T212300/node_config/prompt.md +0 -42
- devflow_engine-1.1.27/prompts/integration/green_enrich/example.md +0 -79
- devflow_engine-1.1.27/prompts/integration/green_enrich/green_enrich/prompt.md +0 -9
- devflow_engine-1.1.27/prompts/integration/green_enrich/node_config/prompt.md +0 -41
- devflow_engine-1.1.27/prompts/integration/green_enrich/past_prompts/20260417T212300/green_enrich/prompt.md +0 -14
- devflow_engine-1.1.27/prompts/integration/green_enrich/past_prompts/20260417T212300/node_config/prompt.md +0 -41
- devflow_engine-1.1.27/prompts/integration/red/code_repair/prompt.md +0 -12
- devflow_engine-1.1.27/prompts/integration/red/example.md +0 -152
- devflow_engine-1.1.27/prompts/integration/red/node_config/prompt.md +0 -86
- devflow_engine-1.1.27/prompts/integration/red/past_prompts/20260417T212300/code_repair/prompt.md +0 -19
- devflow_engine-1.1.27/prompts/integration/red/past_prompts/20260417T212300/node_config/prompt.md +0 -84
- devflow_engine-1.1.27/prompts/integration/red/past_prompts/20260417T212300/red/prompt.md +0 -16
- devflow_engine-1.1.27/prompts/integration/red/past_prompts/20260417T212300/red_repair/prompt.md +0 -15
- devflow_engine-1.1.27/prompts/integration/red/past_prompts/20260417T215032/code_repair/prompt.md +0 -10
- devflow_engine-1.1.27/prompts/integration/red/past_prompts/20260417T215032/node_config/prompt.md +0 -84
- devflow_engine-1.1.27/prompts/integration/red/past_prompts/20260417T215032/red_repair/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/integration/red/red/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/integration/red/red_repair/prompt.md +0 -12
- devflow_engine-1.1.27/prompts/integration/red_review/example.md +0 -71
- devflow_engine-1.1.27/prompts/integration/red_review/node_config/prompt.md +0 -41
- devflow_engine-1.1.27/prompts/integration/red_review/past_prompts/20260417T212300/node_config/prompt.md +0 -41
- devflow_engine-1.1.27/prompts/integration/red_review/past_prompts/20260417T212300/red_review/prompt.md +0 -15
- devflow_engine-1.1.27/prompts/integration/red_review/red_review/prompt.md +0 -9
- devflow_engine-1.1.27/prompts/integration/resolve/example.md +0 -111
- devflow_engine-1.1.27/prompts/integration/resolve/node_config/prompt.md +0 -64
- devflow_engine-1.1.27/prompts/integration/resolve/past_prompts/20260417T212300/node_config/prompt.md +0 -64
- devflow_engine-1.1.27/prompts/integration/resolve/past_prompts/20260417T212300/resolve_implicated_users/prompt.md +0 -15
- devflow_engine-1.1.27/prompts/integration/resolve/past_prompts/20260417T212300/resolve_side_effects/prompt.md +0 -15
- devflow_engine-1.1.27/prompts/integration/resolve/resolve_implicated_users/prompt.md +0 -10
- devflow_engine-1.1.27/prompts/integration/resolve/resolve_side_effects/prompt.md +0 -10
- devflow_engine-1.1.27/prompts/integration/validate/build_idea_acceptance_coverage/prompt.md +0 -12
- devflow_engine-1.1.27/prompts/integration/validate/code_repair/prompt.md +0 -13
- devflow_engine-1.1.27/prompts/integration/validate/example.md +0 -143
- devflow_engine-1.1.27/prompts/integration/validate/node_config/prompt.md +0 -87
- devflow_engine-1.1.27/prompts/integration/validate/past_prompts/20260417T212300/code_repair/prompt.md +0 -19
- devflow_engine-1.1.27/prompts/integration/validate/past_prompts/20260417T212300/node_config/prompt.md +0 -67
- devflow_engine-1.1.27/prompts/integration/validate/past_prompts/20260417T212300/validate_enrich_gate/prompt.md +0 -17
- devflow_engine-1.1.27/prompts/integration/validate/past_prompts/20260417T212300/validate_repair/prompt.md +0 -16
- devflow_engine-1.1.27/prompts/integration/validate/past_prompts/20260417T215032/code_repair/prompt.md +0 -10
- devflow_engine-1.1.27/prompts/integration/validate/past_prompts/20260417T215032/node_config/prompt.md +0 -67
- devflow_engine-1.1.27/prompts/integration/validate/past_prompts/20260417T215032/validate_repair/prompt.md +0 -9
- devflow_engine-1.1.27/prompts/integration/validate/validate_enrich_gate/prompt.md +0 -10
- devflow_engine-1.1.27/prompts/integration/validate/validate_repair/prompt.md +0 -20
- devflow_engine-1.1.27/prompts/integration/write_workflows/example.md +0 -100
- devflow_engine-1.1.27/prompts/integration/write_workflows/node_config/prompt.md +0 -44
- devflow_engine-1.1.27/prompts/integration/write_workflows/past_prompts/20260417T212300/node_config/prompt.md +0 -44
- devflow_engine-1.1.27/prompts/integration/write_workflows/past_prompts/20260417T212300/write_workflows/prompt.md +0 -17
- devflow_engine-1.1.27/prompts/integration/write_workflows/write_workflows/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/iterate/README.md +0 -7
- devflow_engine-1.1.27/prompts/iterate/coder/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/iterate/framer/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/iterate/iterator/prompt.md +0 -13
- devflow_engine-1.1.27/prompts/iterate/observer/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/recovery/diagnosis/prompt.md +0 -7
- devflow_engine-1.1.27/prompts/recovery/execution/prompt.md +0 -8
- devflow_engine-1.1.27/prompts/recovery/execution_verification/prompt.md +0 -7
- devflow_engine-1.1.27/prompts/recovery/failure_investigation/prompt.md +0 -10
- devflow_engine-1.1.27/prompts/recovery/preflight_health_repo_repair/prompt.md +0 -8
- devflow_engine-1.1.27/prompts/recovery/remediation_execution/prompt.md +0 -11
- devflow_engine-1.1.27/prompts/recovery/root_cause_investigation/prompt.md +0 -12
- devflow_engine-1.1.27/prompts/scope_idea/doctrine/prompt.md +0 -7
- devflow_engine-1.1.27/prompts/source_doc_eval/document/prompt.md +0 -6
- devflow_engine-1.1.27/prompts/source_doc_eval/targeted_mutation/prompt.md +0 -9
- devflow_engine-1.1.27/prompts/source_doc_mutation/domain_entities/prompt.md +0 -6
- devflow_engine-1.1.27/prompts/source_doc_mutation/product_brief/prompt.md +0 -6
- devflow_engine-1.1.27/prompts/source_doc_mutation/project_doc_coherence/prompt.md +0 -7
- devflow_engine-1.1.27/prompts/source_doc_mutation/project_doc_render/prompt.md +0 -9
- devflow_engine-1.1.27/prompts/source_doc_mutation/source_doc_coherence/prompt.md +0 -5
- devflow_engine-1.1.27/prompts/source_doc_mutation/source_doc_enrichment_coherence/prompt.md +0 -6
- devflow_engine-1.1.27/prompts/source_doc_mutation/user_workflows/prompt.md +0 -6
- devflow_engine-1.1.27/prompts/source_scope/doctrine/prompt.md +0 -10
- devflow_engine-1.1.27/prompts/ui_grounding/doctrine/prompt.md +0 -7
- devflow_engine-1.1.27/pyproject.toml +0 -77
- devflow_engine-1.1.27/scripts/audit_llm_invocations.py +0 -529
- devflow_engine-1.1.27/scripts/audit_story_ideas.py +0 -155
- devflow_engine-1.1.27/scripts/dump_run_node_outputs.py +0 -376
- devflow_engine-1.1.27/scripts/green.sh +0 -58
- devflow_engine-1.1.27/scripts/purge_implemented_story_queue.py +0 -75
- devflow_engine-1.1.27/scripts/reconcile_story_queue.py +0 -58
- devflow_engine-1.1.27/scripts/replay_scope_draft_idea.py +0 -70
- devflow_engine-1.1.27/scripts/replay_scope_goldilocks.py +0 -121
- devflow_engine-1.1.27/scripts/run_api_key_transport_smoke.py +0 -49
- devflow_engine-1.1.27/scripts/run_gitcommit_refactor_node.py +0 -123
- devflow_engine-1.1.27/scripts/run_green_node.py +0 -139
- devflow_engine-1.1.27/scripts/run_once_no_recovery.py +0 -87
- devflow_engine-1.1.27/scripts/run_preflight_node.py +0 -157
- devflow_engine-1.1.27/scripts/run_red_node.py +0 -249
- devflow_engine-1.1.27/scripts/run_refactor_node.py +0 -127
- devflow_engine-1.1.27/scripts/run_security_node.py +0 -137
- devflow_engine-1.1.27/scripts/run_with_recovery.py +0 -87
- devflow_engine-1.1.27/scripts/validate_architecture.py +0 -116
- devflow_engine-1.1.27/scripts/validate_stories.py +0 -5
- devflow_engine-1.1.27/scripts/validate_tests.py +0 -353
- devflow_engine-1.1.27/scripts/validate_tests_story.py +0 -5
- devflow_engine-1.1.27/src/devflow_engine/__init__.py +0 -3
- devflow_engine-1.1.27/src/devflow_engine/agentic_prompts.py +0 -90
- devflow_engine-1.1.27/src/devflow_engine/agentic_runtime.py +0 -398
- devflow_engine-1.1.27/src/devflow_engine/api_key_flow_harness.py +0 -539
- devflow_engine-1.1.27/src/devflow_engine/api_keys.py +0 -357
- devflow_engine-1.1.27/src/devflow_engine/bootstrap/__init__.py +0 -2
- devflow_engine-1.1.27/src/devflow_engine/bootstrap/provision_from_template.py +0 -84
- devflow_engine-1.1.27/src/devflow_engine/cli/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/cli/app.py +0 -6671
- devflow_engine-1.1.27/src/devflow_engine/core/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/core/config.py +0 -86
- devflow_engine-1.1.27/src/devflow_engine/core/logging.py +0 -29
- devflow_engine-1.1.27/src/devflow_engine/core/paths.py +0 -45
- devflow_engine-1.1.27/src/devflow_engine/core/toml_kv.py +0 -33
- devflow_engine-1.1.27/src/devflow_engine/devflow_event_worker.py +0 -1347
- devflow_engine-1.1.27/src/devflow_engine/devflow_state.py +0 -201
- devflow_engine-1.1.27/src/devflow_engine/devin2/__init__.py +0 -9
- devflow_engine-1.1.27/src/devflow_engine/devin2/agent_definition.py +0 -117
- devflow_engine-1.1.27/src/devflow_engine/devin2/pi_runner.py +0 -207
- devflow_engine-1.1.27/src/devflow_engine/devin_orchestration.py +0 -69
- devflow_engine-1.1.27/src/devflow_engine/error/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/error/remediation.py +0 -21
- devflow_engine-1.1.27/src/devflow_engine/errors/error_solver_dag.py +0 -1155
- devflow_engine-1.1.27/src/devflow_engine/errors/question_classifier.py +0 -250
- devflow_engine-1.1.27/src/devflow_engine/errors/repo_quality_judge.py +0 -256
- devflow_engine-1.1.27/src/devflow_engine/errors/runtime_observability.py +0 -580
- devflow_engine-1.1.27/src/devflow_engine/errors/user_report_fix.py +0 -297
- devflow_engine-1.1.27/src/devflow_engine/errors/vision.py +0 -138
- devflow_engine-1.1.27/src/devflow_engine/idea/__init__.py +0 -4
- devflow_engine-1.1.27/src/devflow_engine/idea/actors.py +0 -609
- devflow_engine-1.1.27/src/devflow_engine/idea/agentic.py +0 -465
- devflow_engine-1.1.27/src/devflow_engine/idea/analyze.py +0 -93
- devflow_engine-1.1.27/src/devflow_engine/idea/devin_chat_dag.py +0 -1
- devflow_engine-1.1.27/src/devflow_engine/idea/diff.py +0 -99
- devflow_engine-1.1.27/src/devflow_engine/idea/drafts.py +0 -446
- devflow_engine-1.1.27/src/devflow_engine/idea/idea_creation_dag.py +0 -643
- devflow_engine-1.1.27/src/devflow_engine/idea/ideation_enrichment.py +0 -355
- devflow_engine-1.1.27/src/devflow_engine/idea/ideation_enrichment_worker.py +0 -19
- devflow_engine-1.1.27/src/devflow_engine/idea/paths.py +0 -28
- devflow_engine-1.1.27/src/devflow_engine/idea/promote.py +0 -53
- devflow_engine-1.1.27/src/devflow_engine/idea/redaction.py +0 -27
- devflow_engine-1.1.27/src/devflow_engine/idea/repo_tools.py +0 -1240
- devflow_engine-1.1.27/src/devflow_engine/idea/response_mode.py +0 -30
- devflow_engine-1.1.27/src/devflow_engine/idea/story_pipeline.py +0 -1592
- devflow_engine-1.1.27/src/devflow_engine/idea/sufficiency.py +0 -376
- devflow_engine-1.1.27/src/devflow_engine/idea/traditional_stories.py +0 -1271
- devflow_engine-1.1.27/src/devflow_engine/implementation/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/implementation/alembic_preflight.py +0 -700
- devflow_engine-1.1.27/src/devflow_engine/implementation/dag.py +0 -8673
- devflow_engine-1.1.27/src/devflow_engine/implementation/green_gate.py +0 -93
- devflow_engine-1.1.27/src/devflow_engine/implementation/prompts.py +0 -93
- devflow_engine-1.1.27/src/devflow_engine/implementation/test_runtime.py +0 -623
- devflow_engine-1.1.27/src/devflow_engine/integration/__init__.py +0 -19
- devflow_engine-1.1.27/src/devflow_engine/integration/agentic.py +0 -66
- devflow_engine-1.1.27/src/devflow_engine/integration/dag.py +0 -3430
- devflow_engine-1.1.27/src/devflow_engine/integration/prompts.py +0 -99
- devflow_engine-1.1.27/src/devflow_engine/integration/supabase_schema.sql +0 -31
- devflow_engine-1.1.27/src/devflow_engine/integration/supabase_sync.py +0 -177
- devflow_engine-1.1.27/src/devflow_engine/llm/__init__.py +0 -1
- devflow_engine-1.1.27/src/devflow_engine/llm/cli_one_shot.py +0 -84
- devflow_engine-1.1.27/src/devflow_engine/llm/cli_stream.py +0 -371
- devflow_engine-1.1.27/src/devflow_engine/llm/execution_context.py +0 -26
- devflow_engine-1.1.27/src/devflow_engine/llm/invoke.py +0 -1445
- devflow_engine-1.1.27/src/devflow_engine/llm/provider_api.py +0 -446
- devflow_engine-1.1.27/src/devflow_engine/orchestration.py +0 -62
- devflow_engine-1.1.27/src/devflow_engine/planning/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/planning/analyze_repo.py +0 -92
- devflow_engine-1.1.27/src/devflow_engine/planning/render_drafts.py +0 -133
- devflow_engine-1.1.27/src/devflow_engine/playground/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/playground/hooks.py +0 -26
- devflow_engine-1.1.27/src/devflow_engine/process/__init__.py +0 -5
- devflow_engine-1.1.27/src/devflow_engine/process/dag.py +0 -64
- devflow_engine-1.1.27/src/devflow_engine/project_registration/__init__.py +0 -3
- devflow_engine-1.1.27/src/devflow_engine/project_registration/dag.py +0 -1581
- devflow_engine-1.1.27/src/devflow_engine/project_registry.py +0 -109
- devflow_engine-1.1.27/src/devflow_engine/recovery/__init__.py +0 -3
- devflow_engine-1.1.27/src/devflow_engine/recovery/dag.py +0 -2685
- devflow_engine-1.1.27/src/devflow_engine/recovery/models.py +0 -220
- devflow_engine-1.1.27/src/devflow_engine/refactor.py +0 -93
- devflow_engine-1.1.27/src/devflow_engine/registry/__init__.py +0 -1
- devflow_engine-1.1.27/src/devflow_engine/registry/cards.py +0 -238
- devflow_engine-1.1.27/src/devflow_engine/registry/domain_normalize.py +0 -60
- devflow_engine-1.1.27/src/devflow_engine/registry/effects.py +0 -65
- devflow_engine-1.1.27/src/devflow_engine/registry/enforce_report.py +0 -150
- devflow_engine-1.1.27/src/devflow_engine/registry/module_cards_classify.py +0 -164
- devflow_engine-1.1.27/src/devflow_engine/registry/module_cards_draft.py +0 -184
- devflow_engine-1.1.27/src/devflow_engine/registry/module_cards_gate.py +0 -59
- devflow_engine-1.1.27/src/devflow_engine/registry/packages.py +0 -347
- devflow_engine-1.1.27/src/devflow_engine/registry/pathways.py +0 -323
- devflow_engine-1.1.27/src/devflow_engine/review/__init__.py +0 -11
- devflow_engine-1.1.27/src/devflow_engine/review/dag.py +0 -588
- devflow_engine-1.1.27/src/devflow_engine/review/review_story.py +0 -67
- devflow_engine-1.1.27/src/devflow_engine/scope_idea/__init__.py +0 -3
- devflow_engine-1.1.27/src/devflow_engine/scope_idea/agentic.py +0 -39
- devflow_engine-1.1.27/src/devflow_engine/scope_idea/dag.py +0 -1069
- devflow_engine-1.1.27/src/devflow_engine/scope_idea/models.py +0 -175
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devflow/queue_failure_investigation/SKILL.md +0 -112
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devflow/queue_idea_to_story/SKILL.md +0 -120
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devflow/queue_integration/SKILL.md +0 -105
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devflow/queue_recovery/SKILL.md +0 -108
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devflow/queue_runtime_core/SKILL.md +0 -155
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devflow/queue_story_implementation/SKILL.md +0 -122
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devin/idea_to_story_handoff/SKILL.md +0 -120
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devin/ideation/SKILL.md +0 -168
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devin/ideation/state-and-phrasing-reference.md +0 -18
- devflow_engine-1.1.27/src/devflow_engine/skills/builtins/devin/insight/SKILL.md +0 -22
- devflow_engine-1.1.27/src/devflow_engine/skills/registry.example.yaml +0 -42
- devflow_engine-1.1.27/src/devflow_engine/source_doc_assumptions.py +0 -291
- devflow_engine-1.1.27/src/devflow_engine/source_doc_mutation_dag.py +0 -1606
- devflow_engine-1.1.27/src/devflow_engine/source_doc_mutation_eval.py +0 -417
- devflow_engine-1.1.27/src/devflow_engine/source_doc_mutation_worker.py +0 -25
- devflow_engine-1.1.27/src/devflow_engine/source_docs_schema.py +0 -207
- devflow_engine-1.1.27/src/devflow_engine/source_docs_updater.py +0 -309
- devflow_engine-1.1.27/src/devflow_engine/source_scope/__init__.py +0 -15
- devflow_engine-1.1.27/src/devflow_engine/source_scope/agentic.py +0 -45
- devflow_engine-1.1.27/src/devflow_engine/source_scope/dag.py +0 -1626
- devflow_engine-1.1.27/src/devflow_engine/source_scope/models.py +0 -177
- devflow_engine-1.1.27/src/devflow_engine/stores/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/stores/execution_store.py +0 -4193
- devflow_engine-1.1.27/src/devflow_engine/story/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/story/contracts.py +0 -160
- devflow_engine-1.1.27/src/devflow_engine/story/discovery.py +0 -47
- devflow_engine-1.1.27/src/devflow_engine/story/evidence.py +0 -118
- devflow_engine-1.1.27/src/devflow_engine/story/hashing.py +0 -27
- devflow_engine-1.1.27/src/devflow_engine/story/implemented_queue_purge.py +0 -148
- devflow_engine-1.1.27/src/devflow_engine/story/indexer.py +0 -105
- devflow_engine-1.1.27/src/devflow_engine/story/io.py +0 -20
- devflow_engine-1.1.27/src/devflow_engine/story/markdown_contracts.py +0 -298
- devflow_engine-1.1.27/src/devflow_engine/story/reconciliation.py +0 -408
- devflow_engine-1.1.27/src/devflow_engine/story/validate_stories.py +0 -149
- devflow_engine-1.1.27/src/devflow_engine/story/validate_tests_story.py +0 -512
- devflow_engine-1.1.27/src/devflow_engine/story/validation.py +0 -133
- devflow_engine-1.1.27/src/devflow_engine/story_validation.py +0 -250
- devflow_engine-1.1.27/src/devflow_engine/ui_grounding/__init__.py +0 -11
- devflow_engine-1.1.27/src/devflow_engine/ui_grounding/agentic.py +0 -31
- devflow_engine-1.1.27/src/devflow_engine/ui_grounding/dag.py +0 -874
- devflow_engine-1.1.27/src/devflow_engine/ui_grounding/models.py +0 -224
- devflow_engine-1.1.27/src/devflow_engine/ui_grounding/pencil_bridge.py +0 -247
- devflow_engine-1.1.27/src/devflow_engine/vendor/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/__init__.py +0 -11
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/exceptions.py +0 -9
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/nodes/__init__.py +0 -0
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/nodes/agent.py +0 -48
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/nodes/agent_streaming_node.py +0 -26
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/nodes/base.py +0 -89
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/nodes/concurrent.py +0 -30
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/nodes/router.py +0 -69
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/schema.py +0 -72
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/task.py +0 -52
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/validate.py +0 -139
- devflow_engine-1.1.27/src/devflow_engine/vendor/datalumina_genai/core/workflow.py +0 -200
- devflow_engine-1.1.27/src/devflow_engine/worker.py +0 -1122
- devflow_engine-1.1.27/src/devflow_engine/worker_guard.py +0 -273
- devflow_engine-1.1.27/src/devin/__init__.py +0 -6
- devflow_engine-1.1.27/src/devin/dag.py +0 -58
- devflow_engine-1.1.27/src/devin/dag_two_arm.py +0 -138
- devflow_engine-1.1.27/src/devin/devin_chat_scenario_catalog.json +0 -588
- devflow_engine-1.1.27/src/devin/devin_eval.py +0 -677
- devflow_engine-1.1.27/src/devin/nodes/__init__.py +0 -0
- devflow_engine-1.1.27/src/devin/nodes/ideation/__init__.py +0 -0
- devflow_engine-1.1.27/src/devin/nodes/ideation/node.py +0 -195
- devflow_engine-1.1.27/src/devin/nodes/ideation/playground.py +0 -267
- devflow_engine-1.1.27/src/devin/nodes/ideation/prompt.md +0 -65
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/continue_refinement.py +0 -13
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/continue_refinement_evals.py +0 -18
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/idea_fits_existing_patterns.py +0 -17
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/idea_fits_existing_patterns_evals.py +0 -16
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/large_idea_split.py +0 -4
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/large_idea_split_evals.py +0 -17
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/source_documentation_added.py +0 -4
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/source_documentation_added_evals.py +0 -16
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/user_says_create_it.py +0 -30
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/user_says_create_it_evals.py +0 -23
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/vague_idea.py +0 -16
- devflow_engine-1.1.27/src/devin/nodes/ideation/scenarios/vague_idea_evals.py +0 -47
- devflow_engine-1.1.27/src/devin/nodes/ideation/tools.json +0 -312
- devflow_engine-1.1.27/src/devin/nodes/insight/__init__.py +0 -0
- devflow_engine-1.1.27/src/devin/nodes/insight/node.py +0 -49
- devflow_engine-1.1.27/src/devin/nodes/insight/playground.py +0 -154
- devflow_engine-1.1.27/src/devin/nodes/insight/prompt.md +0 -61
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/architecture_pattern_query.py +0 -15
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/architecture_pattern_query_evals.py +0 -25
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/codebase_exploration.py +0 -15
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/codebase_exploration_evals.py +0 -23
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/devin_ideation_routing.py +0 -19
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/devin_ideation_routing_evals.py +0 -39
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/devin_insight_routing.py +0 -20
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/devin_insight_routing_evals.py +0 -40
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/operational_debugging.py +0 -15
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/operational_debugging_evals.py +0 -23
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/operational_question.py +0 -9
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/operational_question_evals.py +0 -8
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/queue_status.py +0 -15
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/queue_status_evals.py +0 -23
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/source_doc_explanation.py +0 -14
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/source_doc_explanation_evals.py +0 -21
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/worker_state_check.py +0 -15
- devflow_engine-1.1.27/src/devin/nodes/insight/scenarios/worker_state_check_evals.py +0 -22
- devflow_engine-1.1.27/src/devin/nodes/insight/tools.json +0 -126
- devflow_engine-1.1.27/src/devin/nodes/intake/__init__.py +0 -0
- devflow_engine-1.1.27/src/devin/nodes/intake/node.py +0 -27
- devflow_engine-1.1.27/src/devin/nodes/intake/playground.py +0 -47
- devflow_engine-1.1.27/src/devin/nodes/intake/prompt.md +0 -12
- devflow_engine-1.1.27/src/devin/nodes/intake/scenarios/ideation_routing.py +0 -4
- devflow_engine-1.1.27/src/devin/nodes/intake/scenarios/ideation_routing_evals.py +0 -5
- devflow_engine-1.1.27/src/devin/nodes/intake/scenarios/insight_routing.py +0 -4
- devflow_engine-1.1.27/src/devin/nodes/intake/scenarios/insight_routing_evals.py +0 -5
- devflow_engine-1.1.27/src/devin/nodes/iterate/README.md +0 -44
- devflow_engine-1.1.27/src/devin/nodes/iterate/__init__.py +0 -1
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/01-objectives-requirements.md +0 -112
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/02-evals.md +0 -131
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/03-tools-and-boundaries.md +0 -110
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/04-harness-and-playground.md +0 -32
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/05-prompt-deferred.md +0 -11
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/coder_agent_design/01-objectives-requirements.md +0 -20
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/coder_agent_design/02-evals.md +0 -8
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/coder_agent_design/03-tools-and-boundaries.md +0 -14
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/coder_agent_design/04-harness-and-playground.md +0 -12
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/framer_agent_design/01-objectives-requirements.md +0 -20
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/framer_agent_design/02-evals.md +0 -8
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/framer_agent_design/03-tools-and-boundaries.md +0 -13
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/framer_agent_design/04-harness-and-playground.md +0 -12
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/iterator_agent_design/01-objectives-requirements.md +0 -25
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/iterator_agent_design/02-evals.md +0 -9
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/iterator_agent_design/03-tools-and-boundaries.md +0 -14
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/iterator_agent_design/04-harness-and-playground.md +0 -12
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/observer_agent_design/01-objectives-requirements.md +0 -20
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/observer_agent_design/02-evals.md +0 -8
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/observer_agent_design/03-tools-and-boundaries.md +0 -14
- devflow_engine-1.1.27/src/devin/nodes/iterate/_archived_design_stages/observer_agent_design/04-harness-and-playground.md +0 -13
- devflow_engine-1.1.27/src/devin/nodes/iterate/agent-roles.md +0 -89
- devflow_engine-1.1.27/src/devin/nodes/iterate/agents/README.md +0 -10
- devflow_engine-1.1.27/src/devin/nodes/iterate/artifacts.md +0 -504
- devflow_engine-1.1.27/src/devin/nodes/iterate/contract.md +0 -100
- devflow_engine-1.1.27/src/devin/nodes/iterate/eval-plan.md +0 -74
- devflow_engine-1.1.27/src/devin/nodes/iterate/node.py +0 -100
- devflow_engine-1.1.27/src/devin/nodes/iterate/pipeline/README.md +0 -13
- devflow_engine-1.1.27/src/devin/nodes/iterate/playground-contract.md +0 -76
- devflow_engine-1.1.27/src/devin/nodes/iterate/prompt.md +0 -11
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/README.md +0 -38
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/artifact-and-loop-scenarios.md +0 -101
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/coder_artifact_alignment.py +0 -32
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/coder_artifact_alignment_evals.py +0 -45
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/coder_bounded_fix.py +0 -27
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/coder_bounded_fix_evals.py +0 -45
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/devin_iterate_routing.py +0 -21
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/devin_iterate_routing_evals.py +0 -36
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/framer_scope_boundary.py +0 -25
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/framer_scope_boundary_evals.py +0 -57
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/framer_task_framing.py +0 -25
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/framer_task_framing_evals.py +0 -58
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/iterate_error_fix.py +0 -21
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/iterate_error_fix_evals.py +0 -39
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/iterate_quick_change.py +0 -21
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/iterate_quick_change_evals.py +0 -35
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/iterate_to_idea_promotion.py +0 -23
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/iterate_to_idea_promotion_evals.py +0 -53
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/iterate_to_insight_reroute.py +0 -23
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/iterate_to_insight_reroute_evals.py +0 -53
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/observer_evidence_seam.py +0 -28
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/observer_evidence_seam_evals.py +0 -55
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/observer_repro_creation.py +0 -28
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/observer_repro_creation_evals.py +0 -45
- devflow_engine-1.1.27/src/devin/nodes/iterate/scenarios/routing-matrix.md +0 -45
- devflow_engine-1.1.27/src/devin/nodes/shared/__init__.py +0 -0
- devflow_engine-1.1.27/src/devin/nodes/shared/filemaker_expert.md +0 -80
- devflow_engine-1.1.27/src/devin/nodes/shared/filemaker_expert.py +0 -354
- devflow_engine-1.1.27/src/devin/nodes/shared/filemaker_expert_eval/runner.py +0 -176
- devflow_engine-1.1.27/src/devin/nodes/shared/filemaker_expert_eval/scenarios.json +0 -65
- devflow_engine-1.1.27/src/devin/nodes/shared/goldilocks_advisor_eval/runner.py +0 -214
- devflow_engine-1.1.27/src/devin/nodes/shared/goldilocks_advisor_eval/scenarios.json +0 -58
- devflow_engine-1.1.27/src/devin/nodes/shared/helpers.py +0 -156
- devflow_engine-1.1.27/src/devin/nodes/shared/idea_compliance_advisor_eval/runner.py +0 -252
- devflow_engine-1.1.27/src/devin/nodes/shared/idea_compliance_advisor_eval/scenarios.json +0 -75
- devflow_engine-1.1.27/src/devin/nodes/shared/models.py +0 -44
- devflow_engine-1.1.27/src/devin/nodes/shared/post.py +0 -40
- devflow_engine-1.1.27/src/devin/nodes/shared/router.py +0 -107
- devflow_engine-1.1.27/src/devin/nodes/shared/tools.py +0 -191
- devflow_engine-1.1.27/src/devin/shared/devin-chat-rubric.md +0 -237
- devflow_engine-1.1.27/src/devin/shared/devin-chat-scenario-suite.md +0 -90
- devflow_engine-1.1.27/src/devin/shared/eval_doctrine.md +0 -9
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_devflow_insight_cli_red.py +0 -234
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_df2_arch_1010_decisions_cli_red.py +0 -71
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_df2_arch_1013_validate_architecture_red.py +0 -67
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_df2_proc_1001_idea_story_dag_red.py +0 -1322
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_df2_reg_1031_init_dedupe_strict_refactor_red.py +0 -128
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_failure_recovery_dag.py +0 -799
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_handoff_resume_and_recovery.py +0 -182
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_pipeline_worker_e2e_integration.py +0 -301
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_recovery_dag_model_tier.py +0 -320
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_recovery_queue_normalization.py +0 -603
- devflow_engine-1.1.27/tests/area10_process_pipeline/test_worker_story_queue_red.py +0 -990
- devflow_engine-1.1.27/tests/area12_scope_idea/conftest.py +0 -418
- devflow_engine-1.1.27/tests/area12_scope_idea/test_scope_to_idea_dag.py +0 -639
- devflow_engine-1.1.27/tests/area13_source_scope/test_source_docs_to_scopes_dag.py +0 -446
- devflow_engine-1.1.27/tests/area13_source_scope/test_source_scope_cli_e2e.py +0 -203
- devflow_engine-1.1.27/tests/area13_source_scope/test_source_to_scope_dag.py +0 -485
- devflow_engine-1.1.27/tests/area14_ui_grounding/test_pencil_bridge.py +0 -83
- devflow_engine-1.1.27/tests/area14_ui_grounding/test_pencil_preflight_cli.py +0 -38
- devflow_engine-1.1.27/tests/area14_ui_grounding/test_ui_grounding_cli_e2e.py +0 -103
- devflow_engine-1.1.27/tests/area14_ui_grounding/test_ui_grounding_dag.py +0 -296
- devflow_engine-1.1.27/tests/area1_bootstrap/test_df2_boot_001_repo_bootstrap.py +0 -109
- devflow_engine-1.1.27/tests/area1_bootstrap/test_df2_boot_002_cli_surface.py +0 -87
- devflow_engine-1.1.27/tests/area1_bootstrap/test_df2_boot_003_config_hierarchy.py +0 -91
- devflow_engine-1.1.27/tests/area1_bootstrap/test_df2_boot_004_logging_baseline.py +0 -69
- devflow_engine-1.1.27/tests/area1_bootstrap/test_df2_boot_005_green_gate.py +0 -52
- devflow_engine-1.1.27/tests/area1_bootstrap/test_project_bootstrap_eval_scaffold.py +0 -104
- devflow_engine-1.1.27/tests/area2_projects/test_us2_10_project_init_registry_db_red.py +0 -83
- devflow_engine-1.1.27/tests/area5_planning_idea_tool/test_actor_label_guardrails.py +0 -71
- devflow_engine-1.1.27/tests/area5_planning_idea_tool/test_df2_idea_502_repo_analysis_capture_evidence_red.py +0 -157
- devflow_engine-1.1.27/tests/area5_planning_idea_tool/test_df2_idea_503_generate_drafts_per_plane_red.py +0 -325
- devflow_engine-1.1.27/tests/area5_planning_idea_tool/test_df2_idea_504_draft_storage_separation_red.py +0 -118
- devflow_engine-1.1.27/tests/area5_planning_idea_tool/test_df2_idea_505_promote_drafts_non_destructive_red.py +0 -155
- devflow_engine-1.1.27/tests/area5_planning_idea_tool/test_df2_idea_506_diff_review_stable_ids_red.py +0 -185
- devflow_engine-1.1.27/tests/area5_planning_idea_tool/test_dfe_command_1_ideation_sufficiency_red.py +0 -373
- devflow_engine-1.1.27/tests/area5_planning_idea_tool/test_dfe_command_2_traditional_user_story_generation_red.py +0 -420
- devflow_engine-1.1.27/tests/area5_planning_idea_tool/test_idea_repo_tools.py +0 -648
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_alembic_preflight_normalization.py +0 -462
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_620_genai_workflow_red.py +0 -75
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_area6_red.py +0 -2786
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_claude_permissions_flag.py +0 -22
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_commit_refactor_fallback.py +0 -35
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_commit_retains_devflow_refactor.py +0 -9
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_devflow_cli_fallback.py +0 -47
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_gitcommit_green_gate_fallback.py +0 -77
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_gitcommit_refactor_harness.py +0 -15
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_green_harness.py +0 -52
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_green_prompt_packaging.py +0 -394
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_mixed_runtime_bundles.py +0 -2120
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_red_harness.py +0 -136
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_red_preflight.py +0 -104
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_red_prompt_contract.py +0 -53
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_redreview_registration.py +0 -674
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_refactor_attempt_prepares_enforce.py +0 -29
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_refactor_command_usage.py +0 -10
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_refactor_commit_flow.py +0 -237
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_refactor_harness.py +0 -17
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_refactor_prompt_packaging.py +0 -189
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_security_harness.py +0 -16
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_security_prompt_packaging.py +0 -151
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_streaming_path_usage.py +0 -11
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_df2_impl_validate_gates_red.py +0 -102
- devflow_engine-1.1.27/tests/area6_implementation_dag/test_validate_tests_story_scoped_red.py +0 -465
- devflow_engine-1.1.27/tests/area7_review/test_review_dag_red.py +0 -238
- devflow_engine-1.1.27/tests/area8_errors/test_df2_area7_failures_error_tasks_red.py +0 -269
- devflow_engine-1.1.27/tests/area8_errors/test_us85_error_solver_commit_per_run.py +0 -201
- devflow_engine-1.1.27/tests/area8_errors/test_us85_error_solver_dag_contract.py +0 -380
- devflow_engine-1.1.27/tests/area8_errors/test_us85_error_solver_dag_fixing_red.py +0 -179
- devflow_engine-1.1.27/tests/area8_errors/test_us85_error_solver_dag_journal.py +0 -79
- devflow_engine-1.1.27/tests/area8_errors/test_us85_error_solver_dag_regression_context.py +0 -89
- devflow_engine-1.1.27/tests/area8_errors/test_us85_error_solver_dag_verification_contract.py +0 -57
- devflow_engine-1.1.27/tests/area8_errors/test_us85_error_solver_repo_quality.py +0 -214
- devflow_engine-1.1.27/tests/area8_errors/test_us85_observability_gate_relaxation.py +0 -266
- devflow_engine-1.1.27/tests/area8_errors/test_us85_portal_and_modification.py +0 -192
- devflow_engine-1.1.27/tests/area8_errors/test_us85_question_classifier.py +0 -195
- devflow_engine-1.1.27/tests/area8_errors/test_us85_terminal_workspace_cleanup.py +0 -340
- devflow_engine-1.1.27/tests/area9_playground/test_df2_play_908_node_preflight_json_red.py +0 -163
- devflow_engine-1.1.27/tests/area9_playground/test_df2_play_area9_red.py +0 -350
- devflow_engine-1.1.27/tests/cli/test_project_repo_binding.py +0 -479
- devflow_engine-1.1.27/tests/cli/test_refactor_cli_import.py +0 -25
- devflow_engine-1.1.27/tests/cli/test_repo_root_override.py +0 -11
- devflow_engine-1.1.27/tests/cli/test_story_execute_wrapper_run.py +0 -107
- devflow_engine-1.1.27/tests/cli/test_supabase_event_worker_cli.py +0 -61
- devflow_engine-1.1.27/tests/cli/test_supabase_realtime_listener.py +0 -449
- devflow_engine-1.1.27/tests/cli/test_worker_concurrent_start.py +0 -182
- devflow_engine-1.1.27/tests/cli/test_worker_kill_switch.py +0 -107
- devflow_engine-1.1.27/tests/cli/test_worker_start_modes.py +0 -66
- devflow_engine-1.1.27/tests/conftest.py +0 -54
- devflow_engine-1.1.27/tests/fixtures/backend_provision/provision_from_template.py +0 -7
- devflow_engine-1.1.27/tests/fixtures/source_doc_mutation/bootstrap_repo/README.md +0 -16
- devflow_engine-1.1.27/tests/fixtures/source_doc_mutation/bootstrap_repo/docs/overview.md +0 -14
- devflow_engine-1.1.27/tests/fixtures/source_doc_mutation/chi/assumptions_registry.json +0 -3
- devflow_engine-1.1.27/tests/fixtures/source_doc_mutation/chi/domain_entities.json +0 -11
- devflow_engine-1.1.27/tests/fixtures/source_doc_mutation/chi/product_brief.json +0 -44
- devflow_engine-1.1.27/tests/fixtures/source_doc_mutation/chi/user_workflows.json +0 -23
- devflow_engine-1.1.27/tests/fixtures/source_doc_mutation/scenarios.json +0 -24
- devflow_engine-1.1.27/tests/idea/test_actor_specificity_warning.py +0 -79
- devflow_engine-1.1.27/tests/idea/test_capability_first_story_decomposition.py +0 -81
- devflow_engine-1.1.27/tests/idea/test_story_pipeline_dfs_state.py +0 -203
- devflow_engine-1.1.27/tests/integration/test_integration_agentic.py +0 -37
- devflow_engine-1.1.27/tests/integration/test_integration_dag.py +0 -555
- devflow_engine-1.1.27/tests/integration/test_integration_dag_nodes.py +0 -2944
- devflow_engine-1.1.27/tests/integration/test_integration_prompt_loading.py +0 -88
- devflow_engine-1.1.27/tests/stores/test_idea_creation_queue.py +0 -160
- devflow_engine-1.1.27/tests/stores/test_integration_queue.py +0 -347
- devflow_engine-1.1.27/tests/test_agentic_prompt_loading.py +0 -107
- devflow_engine-1.1.27/tests/test_agentic_runtime.py +0 -134
- devflow_engine-1.1.27/tests/test_api_key_flow_harness.py +0 -74
- devflow_engine-1.1.27/tests/test_api_keys.py +0 -190
- devflow_engine-1.1.27/tests/test_area2_project_import_red.py +0 -408
- devflow_engine-1.1.27/tests/test_area2_project_import_remaining_red.py +0 -459
- devflow_engine-1.1.27/tests/test_area2_projects_red.py +0 -270
- devflow_engine-1.1.27/tests/test_area3_execution_store_logging_red.py +0 -316
- devflow_engine-1.1.27/tests/test_area4_story_system_red.py +0 -347
- devflow_engine-1.1.27/tests/test_devflow_event_worker.py +0 -1027
- devflow_engine-1.1.27/tests/test_devflow_state_project_resolution.py +0 -47
- devflow_engine-1.1.27/tests/test_devin2_agent_definition.py +0 -31
- devflow_engine-1.1.27/tests/test_domain_normalize.py +0 -16
- devflow_engine-1.1.27/tests/test_dump_run_node_outputs.py +0 -103
- devflow_engine-1.1.27/tests/test_enforce_changed_filter.py +0 -38
- devflow_engine-1.1.27/tests/test_enforce_report_directives.py +0 -51
- devflow_engine-1.1.27/tests/test_error_solve_runtime_coder_path.py +0 -99
- devflow_engine-1.1.27/tests/test_error_task_failure_message_persisted.py +0 -127
- devflow_engine-1.1.27/tests/test_execution_store.py +0 -11
- devflow_engine-1.1.27/tests/test_execution_store_story_queue_red.py +0 -1129
- devflow_engine-1.1.27/tests/test_generic_task_queue.py +0 -160
- devflow_engine-1.1.27/tests/test_ideation_enrichment.py +0 -81
- devflow_engine-1.1.27/tests/test_implemented_story_queue_purge.py +0 -322
- devflow_engine-1.1.27/tests/test_llm_cli_one_shot.py +0 -98
- devflow_engine-1.1.27/tests/test_llm_cli_stream_journal_sqlite.py +0 -104
- devflow_engine-1.1.27/tests/test_llm_cli_stream_logging.py +0 -62
- devflow_engine-1.1.27/tests/test_llm_codex_invocation_regression.py +0 -37
- devflow_engine-1.1.27/tests/test_llm_invocation_audit.py +0 -25
- devflow_engine-1.1.27/tests/test_llm_invoke.py +0 -1507
- devflow_engine-1.1.27/tests/test_llm_provider_api.py +0 -312
- devflow_engine-1.1.27/tests/test_llm_provider_config.py +0 -37
- devflow_engine-1.1.27/tests/test_llm_tier_invocation.py +0 -330
- devflow_engine-1.1.27/tests/test_observability_evidence_contract.py +0 -119
- devflow_engine-1.1.27/tests/test_playground_source_doc_mutation_eval.py +0 -52
- devflow_engine-1.1.27/tests/test_prd_mutation_grounding.py +0 -149
- devflow_engine-1.1.27/tests/test_process_dag_imperative.py +0 -71
- devflow_engine-1.1.27/tests/test_project_registration_dag.py +0 -131
- devflow_engine-1.1.27/tests/test_project_registration_supabase_uuid.py +0 -670
- devflow_engine-1.1.27/tests/test_queue_project_id_resolution.py +0 -39
- devflow_engine-1.1.27/tests/test_quick_action_queue.py +0 -73
- devflow_engine-1.1.27/tests/test_refactor_llm_path.py +0 -54
- devflow_engine-1.1.27/tests/test_register_one_time.py +0 -38
- devflow_engine-1.1.27/tests/test_registry_cards_and_gate.py +0 -54
- devflow_engine-1.1.27/tests/test_registry_classify_module_cards_parser.py +0 -34
- devflow_engine-1.1.27/tests/test_registry_detect_pathways.py +0 -87
- devflow_engine-1.1.27/tests/test_registry_draft_module_cards.py +0 -52
- devflow_engine-1.1.27/tests/test_registry_draft_module_cards_effects.py +0 -31
- devflow_engine-1.1.27/tests/test_registry_effect_overlap.py +0 -86
- devflow_engine-1.1.27/tests/test_registry_gate_module_cards.py +0 -46
- devflow_engine-1.1.27/tests/test_registry_gate_unknown_strict.py +0 -33
- devflow_engine-1.1.27/tests/test_registry_import_scan_filters_stdlib_and_node_builtins.py +0 -68
- devflow_engine-1.1.27/tests/test_registry_llm_commands.py +0 -183
- devflow_engine-1.1.27/tests/test_registry_module_incremental_focus.py +0 -26
- devflow_engine-1.1.27/tests/test_registry_module_phase_and_apply.py +0 -58
- devflow_engine-1.1.27/tests/test_registry_scan_ignores_build_dirs.py +0 -23
- devflow_engine-1.1.27/tests/test_source_doc_mutation_acceptance.py +0 -517
- devflow_engine-1.1.27/tests/test_source_doc_mutation_dag.py +0 -270
- devflow_engine-1.1.27/tests/test_source_doc_mutation_eval.py +0 -210
- devflow_engine-1.1.27/tests/test_source_doc_mutation_real_eval.py +0 -73
- devflow_engine-1.1.27/tests/test_source_docs_updater.py +0 -422
- devflow_engine-1.1.27/tests/test_story_contracts.py +0 -60
- devflow_engine-1.1.27/tests/test_story_reconciliation.py +0 -382
- devflow_engine-1.1.27/tests/unit/__init__.py +0 -0
- devflow_engine-1.1.27/tests/unit/test_story_validation.py +0 -191
- devflow_engine-1.1.27/users.json +0 -156
- devflow_engine-1.1.27/uv.lock +0 -692
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: devflow-engine
|
|
3
|
+
Version: 1.2.0
|
|
4
|
+
Summary: DevFlow Engine 1.2 rebuild CLI
|
|
5
|
+
Author: DevFlow
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Requires-Dist: httpx>=0.28
|
|
9
|
+
Requires-Dist: keyring>=25.0
|
|
10
|
+
Requires-Dist: pydantic>=2.6
|
|
11
|
+
Requires-Dist: typer>=0.12
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# DevFlow Engine
|
|
15
|
+
|
|
16
|
+
DevFlow Engine 1.2 rebuild workspace.
|
|
17
|
+
|
|
18
|
+
This package starts from the public CLI boundary and ports runtime behavior only after tests define the contract for each primitive.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "devflow-engine"
|
|
3
|
+
version = "1.2.0"
|
|
4
|
+
description = "DevFlow Engine 1.2 rebuild CLI"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
authors = [{ name = "DevFlow" }]
|
|
8
|
+
license = { text = "Proprietary" }
|
|
9
|
+
dependencies = [
|
|
10
|
+
"httpx>=0.28",
|
|
11
|
+
"keyring>=25.0",
|
|
12
|
+
"pydantic>=2.6",
|
|
13
|
+
"typer>=0.12",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[dependency-groups]
|
|
17
|
+
dev = [
|
|
18
|
+
"pytest>=8.0",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.scripts]
|
|
22
|
+
devflow = "devflow_engine.cli.app:app"
|
|
23
|
+
devflow-engine = "devflow_engine.cli.app:app"
|
|
24
|
+
|
|
25
|
+
[build-system]
|
|
26
|
+
requires = ["hatchling>=1.24"]
|
|
27
|
+
build-backend = "hatchling.build"
|
|
28
|
+
|
|
29
|
+
[tool.hatch.build.targets.wheel]
|
|
30
|
+
packages = ["src/devflow_engine"]
|
|
31
|
+
|
|
32
|
+
[tool.pytest.ini_options]
|
|
33
|
+
addopts = "-q"
|
|
34
|
+
testpaths = ["tests"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import json
|
|
4
|
+
from dataclasses import dataclass
|
|
5
|
+
from typing import Any
|
|
6
|
+
|
|
7
|
+
from pydantic import BaseModel, ValidationError
|
|
8
|
+
|
|
9
|
+
from devflow_engine.llm.provider_service import (
|
|
10
|
+
CredentialResolver,
|
|
11
|
+
LlmProviderService,
|
|
12
|
+
LlmSettings,
|
|
13
|
+
ProviderTransport,
|
|
14
|
+
TierName,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class AgenticServiceError(RuntimeError):
|
|
19
|
+
pass
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
@dataclass(frozen=True)
|
|
23
|
+
class AgenticInvocation:
|
|
24
|
+
purpose: str
|
|
25
|
+
tier: TierName
|
|
26
|
+
system_prompt: str
|
|
27
|
+
context: dict[str, Any]
|
|
28
|
+
output_model: type[BaseModel]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
@dataclass(frozen=True)
|
|
32
|
+
class AgenticResult:
|
|
33
|
+
output: BaseModel
|
|
34
|
+
raw_response: dict[str, Any]
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class AgenticService:
|
|
38
|
+
def __init__(self, *, llm: LlmProviderService) -> None:
|
|
39
|
+
self.llm = llm
|
|
40
|
+
|
|
41
|
+
@classmethod
|
|
42
|
+
def for_settings(
|
|
43
|
+
cls,
|
|
44
|
+
*,
|
|
45
|
+
settings: LlmSettings,
|
|
46
|
+
credential_resolver: CredentialResolver,
|
|
47
|
+
transport: ProviderTransport,
|
|
48
|
+
) -> "AgenticService":
|
|
49
|
+
return cls(
|
|
50
|
+
llm=LlmProviderService(
|
|
51
|
+
settings=settings,
|
|
52
|
+
credential_resolver=credential_resolver,
|
|
53
|
+
transport=transport,
|
|
54
|
+
)
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
def run(self, invocation: AgenticInvocation) -> AgenticResult:
|
|
58
|
+
messages = [
|
|
59
|
+
{
|
|
60
|
+
"role": "system",
|
|
61
|
+
"content": (
|
|
62
|
+
invocation.system_prompt
|
|
63
|
+
+ "\nReturn JSON only matching this schema:\n"
|
|
64
|
+
+ json.dumps(invocation.output_model.model_json_schema(), sort_keys=True)
|
|
65
|
+
),
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"role": "user",
|
|
69
|
+
"content": json.dumps(invocation.context, indent=2, sort_keys=True),
|
|
70
|
+
},
|
|
71
|
+
]
|
|
72
|
+
raw_response = self.llm.invoke(
|
|
73
|
+
tier=invocation.tier,
|
|
74
|
+
purpose=invocation.purpose,
|
|
75
|
+
messages=messages,
|
|
76
|
+
response_format="json",
|
|
77
|
+
)
|
|
78
|
+
content = str(raw_response.get("content") or "").strip()
|
|
79
|
+
try:
|
|
80
|
+
payload = json.loads(content)
|
|
81
|
+
except json.JSONDecodeError as exc:
|
|
82
|
+
raise AgenticServiceError(f"failed to parse JSON response: {exc}") from exc
|
|
83
|
+
try:
|
|
84
|
+
output = invocation.output_model.model_validate(payload)
|
|
85
|
+
except ValidationError as exc:
|
|
86
|
+
raise AgenticServiceError(f"failed output model validation: {exc}") from exc
|
|
87
|
+
return AgenticResult(output=output, raw_response=raw_response)
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import json
|
|
4
|
+
import os
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
|
|
7
|
+
from devflow_engine.llm.provider_capabilities import AuthType, ProviderName
|
|
8
|
+
from devflow_engine.llm.provider_service import LlmSettings, ReasoningLevel, TierName
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def default_agentic_tier_settings() -> LlmSettings:
|
|
12
|
+
return LlmSettings.model_validate(
|
|
13
|
+
{
|
|
14
|
+
"tiers": {
|
|
15
|
+
"ultra_light": {
|
|
16
|
+
"provider": "ollama",
|
|
17
|
+
"model": "llama3.2",
|
|
18
|
+
"reasoning": "none",
|
|
19
|
+
"auth_type": "local",
|
|
20
|
+
},
|
|
21
|
+
"light": {
|
|
22
|
+
"provider": "openai",
|
|
23
|
+
"model": "default",
|
|
24
|
+
"reasoning": "low",
|
|
25
|
+
"auth_type": "subscription",
|
|
26
|
+
},
|
|
27
|
+
"standard": {
|
|
28
|
+
"provider": "anthropic",
|
|
29
|
+
"model": "sonnet",
|
|
30
|
+
"reasoning": "medium",
|
|
31
|
+
"auth_type": "subscription",
|
|
32
|
+
},
|
|
33
|
+
"strong": {
|
|
34
|
+
"provider": "anthropic",
|
|
35
|
+
"model": "sonnet",
|
|
36
|
+
"reasoning": "high",
|
|
37
|
+
"auth_type": "subscription",
|
|
38
|
+
},
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def default_agentic_tier_config_path() -> Path:
|
|
45
|
+
config_home = Path(os.environ.get("XDG_CONFIG_HOME", Path.home() / ".config"))
|
|
46
|
+
return config_home / "devflow-engine" / "agentic-tiers.json"
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class AgenticTierConfigStore:
|
|
50
|
+
def __init__(self, *, path: Path | None = None) -> None:
|
|
51
|
+
self.path = path or default_agentic_tier_config_path()
|
|
52
|
+
|
|
53
|
+
def load(self) -> LlmSettings:
|
|
54
|
+
if not self.path.exists():
|
|
55
|
+
return default_agentic_tier_settings()
|
|
56
|
+
return LlmSettings.model_validate_json(self.path.read_text())
|
|
57
|
+
|
|
58
|
+
def save(self, settings: LlmSettings) -> LlmSettings:
|
|
59
|
+
self.path.parent.mkdir(parents=True, exist_ok=True)
|
|
60
|
+
self.path.write_text(settings.model_dump_json(indent=2, exclude_none=False) + "\n")
|
|
61
|
+
return settings
|
|
62
|
+
|
|
63
|
+
def set_tier(
|
|
64
|
+
self,
|
|
65
|
+
*,
|
|
66
|
+
tier: TierName,
|
|
67
|
+
provider: ProviderName,
|
|
68
|
+
auth_type: AuthType,
|
|
69
|
+
model: str,
|
|
70
|
+
reasoning: ReasoningLevel = "medium",
|
|
71
|
+
endpoint: str | None = None,
|
|
72
|
+
) -> LlmSettings:
|
|
73
|
+
current = self.load().model_dump(mode="json")
|
|
74
|
+
current["tiers"][tier] = {
|
|
75
|
+
"provider": provider,
|
|
76
|
+
"model": model,
|
|
77
|
+
"reasoning": reasoning,
|
|
78
|
+
"auth_type": auth_type,
|
|
79
|
+
"endpoint": endpoint,
|
|
80
|
+
}
|
|
81
|
+
settings = LlmSettings.model_validate(current)
|
|
82
|
+
return self.save(settings)
|
|
83
|
+
|
|
84
|
+
def reset(self) -> LlmSettings:
|
|
85
|
+
if self.path.exists():
|
|
86
|
+
self.path.unlink()
|
|
87
|
+
return default_agentic_tier_settings()
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import json
|
|
4
|
+
from datetime import UTC, datetime
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
from typing import Any
|
|
7
|
+
|
|
8
|
+
from devflow_engine.llm.provider_service import CredentialResolver, LlmProviderService, LlmSettings, ProviderTransport, TierName
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class TierVerificationError(RuntimeError):
|
|
12
|
+
pass
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class TierVerificationService:
|
|
16
|
+
def __init__(
|
|
17
|
+
self,
|
|
18
|
+
*,
|
|
19
|
+
settings: LlmSettings,
|
|
20
|
+
credential_resolver: CredentialResolver,
|
|
21
|
+
transport: ProviderTransport,
|
|
22
|
+
) -> None:
|
|
23
|
+
self.settings = settings
|
|
24
|
+
self.credential_resolver = credential_resolver
|
|
25
|
+
self.transport = transport
|
|
26
|
+
|
|
27
|
+
def verify(self, *, tiers: list[TierName], output_path: Path) -> dict[str, Any]:
|
|
28
|
+
service = LlmProviderService(
|
|
29
|
+
settings=self.settings,
|
|
30
|
+
credential_resolver=self.credential_resolver,
|
|
31
|
+
transport=self.transport,
|
|
32
|
+
)
|
|
33
|
+
artifact: dict[str, Any] = {
|
|
34
|
+
"created_at": datetime.now(UTC).isoformat(),
|
|
35
|
+
"records": [],
|
|
36
|
+
}
|
|
37
|
+
failed = False
|
|
38
|
+
for tier in tiers:
|
|
39
|
+
config = service.config_for_tier(tier)
|
|
40
|
+
record: dict[str, Any] = {
|
|
41
|
+
"tier": tier,
|
|
42
|
+
"provider": config.provider,
|
|
43
|
+
"model": config.model,
|
|
44
|
+
"reasoning": config.reasoning,
|
|
45
|
+
"auth_type": config.auth_type,
|
|
46
|
+
"ok": False,
|
|
47
|
+
}
|
|
48
|
+
try:
|
|
49
|
+
response = service.invoke(
|
|
50
|
+
tier=tier,
|
|
51
|
+
purpose="agentic.tier.verify",
|
|
52
|
+
messages=[
|
|
53
|
+
{
|
|
54
|
+
"role": "user",
|
|
55
|
+
"content": (
|
|
56
|
+
"DevFlow tier verification. Reply with one short sentence naming the model "
|
|
57
|
+
"or runtime you are using."
|
|
58
|
+
),
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
response_format="text",
|
|
62
|
+
)
|
|
63
|
+
record["ok"] = True
|
|
64
|
+
record["response"] = str(response.get("content") or "")
|
|
65
|
+
record["raw_response"] = response
|
|
66
|
+
except Exception as exc: # noqa: BLE001 - artifact must preserve provider/auth failures.
|
|
67
|
+
failed = True
|
|
68
|
+
record["error"] = str(exc)
|
|
69
|
+
artifact["records"].append(record)
|
|
70
|
+
|
|
71
|
+
output_path.parent.mkdir(parents=True, exist_ok=True)
|
|
72
|
+
output_path.write_text(json.dumps(artifact, indent=2) + "\n")
|
|
73
|
+
if failed:
|
|
74
|
+
raise TierVerificationError(f"tier verification failed; artifact written to {output_path}")
|
|
75
|
+
return artifact
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
class ChainedCredentialResolver:
|
|
79
|
+
def __init__(self, resolvers: list[CredentialResolver]) -> None:
|
|
80
|
+
self.resolvers = resolvers
|
|
81
|
+
|
|
82
|
+
def resolve(self, *, provider, auth_type):
|
|
83
|
+
for resolver in self.resolvers:
|
|
84
|
+
material = resolver.resolve(provider=provider, auth_type=auth_type)
|
|
85
|
+
if material is not None:
|
|
86
|
+
return material
|
|
87
|
+
return None
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
class AuthRoutingTransport:
|
|
91
|
+
def __init__(self, *, api_transport: ProviderTransport, subscription_transport: ProviderTransport) -> None:
|
|
92
|
+
self.api_transport = api_transport
|
|
93
|
+
self.subscription_transport = subscription_transport
|
|
94
|
+
|
|
95
|
+
def invoke(self, request):
|
|
96
|
+
if request.auth.auth_type == "subscription":
|
|
97
|
+
return self.subscription_transport.invoke(request)
|
|
98
|
+
return self.api_transport.invoke(request)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
def default_tier_verification_output_path() -> Path:
|
|
102
|
+
stamp = datetime.now(UTC).strftime("%Y%m%dT%H%M%SZ")
|
|
103
|
+
return Path(".devflow") / "runs" / f"agentic-tier-verification-{stamp}.json"
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from typing import Protocol
|
|
4
|
+
|
|
5
|
+
import keyring
|
|
6
|
+
from keyring.errors import PasswordDeleteError
|
|
7
|
+
from pydantic import BaseModel, ConfigDict, field_validator, model_validator
|
|
8
|
+
|
|
9
|
+
from devflow_engine.llm.provider_service import AuthMaterial, AuthType, ProviderName, validate_provider_auth
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
DEFAULT_SERVICE_NAME = "devflow-engine"
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class KeyringBackend(Protocol):
|
|
16
|
+
def set_password(self, service_name: str, username: str, password: str) -> None: ...
|
|
17
|
+
|
|
18
|
+
def get_password(self, service_name: str, username: str) -> str | None: ...
|
|
19
|
+
|
|
20
|
+
def delete_password(self, service_name: str, username: str) -> None: ...
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class KeychainSecretRef(BaseModel):
|
|
24
|
+
model_config = ConfigDict(extra="forbid")
|
|
25
|
+
|
|
26
|
+
provider: ProviderName
|
|
27
|
+
auth_type: AuthType
|
|
28
|
+
|
|
29
|
+
@field_validator("provider", "auth_type", mode="before")
|
|
30
|
+
@classmethod
|
|
31
|
+
def _normalize_text(cls, value: object) -> str:
|
|
32
|
+
return str(value or "").strip().lower()
|
|
33
|
+
|
|
34
|
+
@model_validator(mode="after")
|
|
35
|
+
def _provider_auth_pair_must_be_supported(self) -> "KeychainSecretRef":
|
|
36
|
+
validate_provider_auth(self.provider, self.auth_type)
|
|
37
|
+
return self
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def account(self) -> str:
|
|
41
|
+
return f"llm:{self.provider}:{self.auth_type}"
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class KeychainSecretStatus(BaseModel):
|
|
45
|
+
model_config = ConfigDict(extra="forbid")
|
|
46
|
+
|
|
47
|
+
provider: ProviderName
|
|
48
|
+
auth_type: AuthType
|
|
49
|
+
configured: bool
|
|
50
|
+
service_name: str
|
|
51
|
+
account: str
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
class KeychainSecretStore:
|
|
55
|
+
def __init__(
|
|
56
|
+
self,
|
|
57
|
+
*,
|
|
58
|
+
service_name: str = DEFAULT_SERVICE_NAME,
|
|
59
|
+
keyring_backend: KeyringBackend = keyring,
|
|
60
|
+
) -> None:
|
|
61
|
+
self.service_name = service_name
|
|
62
|
+
self.keyring_backend = keyring_backend
|
|
63
|
+
|
|
64
|
+
def set_secret(self, ref: KeychainSecretRef, secret: str) -> None:
|
|
65
|
+
normalized_secret = secret.strip()
|
|
66
|
+
if not normalized_secret:
|
|
67
|
+
raise ValueError("secret cannot be empty")
|
|
68
|
+
self.keyring_backend.set_password(self.service_name, ref.account, normalized_secret)
|
|
69
|
+
|
|
70
|
+
def get_secret(self, ref: KeychainSecretRef) -> str | None:
|
|
71
|
+
return self.keyring_backend.get_password(self.service_name, ref.account)
|
|
72
|
+
|
|
73
|
+
def delete_secret(self, ref: KeychainSecretRef) -> None:
|
|
74
|
+
try:
|
|
75
|
+
self.keyring_backend.delete_password(self.service_name, ref.account)
|
|
76
|
+
except PasswordDeleteError:
|
|
77
|
+
return
|
|
78
|
+
|
|
79
|
+
def status(self, ref: KeychainSecretRef) -> KeychainSecretStatus:
|
|
80
|
+
return KeychainSecretStatus(
|
|
81
|
+
provider=ref.provider,
|
|
82
|
+
auth_type=ref.auth_type,
|
|
83
|
+
configured=self.get_secret(ref) is not None,
|
|
84
|
+
service_name=self.service_name,
|
|
85
|
+
account=ref.account,
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
class KeychainCredentialResolver:
|
|
90
|
+
def __init__(self, store: KeychainSecretStore | None = None) -> None:
|
|
91
|
+
self.store = store or KeychainSecretStore()
|
|
92
|
+
|
|
93
|
+
def resolve(self, *, provider: ProviderName, auth_type: AuthType) -> AuthMaterial | None:
|
|
94
|
+
if auth_type == "local":
|
|
95
|
+
return AuthMaterial(auth_type="local")
|
|
96
|
+
ref = KeychainSecretRef(provider=provider, auth_type=auth_type)
|
|
97
|
+
secret = self.store.get_secret(ref)
|
|
98
|
+
if secret is None:
|
|
99
|
+
return None
|
|
100
|
+
return AuthMaterial(
|
|
101
|
+
auth_type=auth_type,
|
|
102
|
+
secret=secret,
|
|
103
|
+
metadata={"source": "keychain", "service_name": self.store.service_name, "account": ref.account},
|
|
104
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from __future__ import annotations
|