devflow-engine 1.0.0__tar.gz → 1.1.1__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.0.0/README.md → devflow_engine-1.1.1/PKG-INFO +50 -45
- devflow_engine-1.0.0/PKG-INFO → devflow_engine-1.1.1/README.md +36 -73
- devflow_engine-1.1.1/docs/error-solving-dag-note.md +49 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/recovery-dag-contract.md +5 -13
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/red/prompt.md +0 -7
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/redreview/prompt.md +0 -6
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/redreview_repair/prompt.md +0 -5
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/test_design/prompt.md +0 -7
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/pyproject.toml +8 -20
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/__init__.py +1 -1
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/agentic_prompts.py +9 -19
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/cli/app.py +82 -897
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/devin2/agent_definition.py +3 -6
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/devin2/pi_runner.py +21 -18
- devflow_engine-1.1.1/src/devflow_engine/errors/user_report_observability.py +408 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/repo_tools.py +2 -53
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/implementation/dag.py +0 -52
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/implementation/prompts.py +9 -24
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/integration/dag.py +3 -112
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/integration/prompts.py +7 -22
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/llm/invoke.py +41 -16
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/llm/provider_api.py +105 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/stores/execution_store.py +156 -5
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/ui_grounding/pencil_bridge.py +1 -1
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/worker.py +4 -136
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_redreview_registration.py +0 -7
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/integration/test_integration_dag.py +0 -7
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/integration/test_integration_dag_nodes.py +4 -33
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_devin_chat_tier_routing.py +14 -10
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_llm_invoke.py +43 -9
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_llm_provider_api.py +66 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/uv.lock +154 -159
- devflow_engine-1.0.0/docs/agent-command-surface-v0.02.md +0 -67
- devflow_engine-1.0.0/docs/doctor-recovery-error-solving-contract.md +0 -168
- devflow_engine-1.0.0/docs/doctor-recovery-error-solving-gap-analysis.md +0 -138
- devflow_engine-1.0.0/docs/error-solving-dag-note.md +0 -84
- devflow_engine-1.0.0/docs/llm-input-primitives-v0.02.md +0 -75
- devflow_engine-1.0.0/src/devflow_engine/doctor/__init__.py +0 -2
- devflow_engine-1.0.0/src/devflow_engine/doctor/triage.py +0 -140
- devflow_engine-1.0.0/src/devflow_engine/llm/repo_knowledge.py +0 -588
- devflow_engine-1.0.0/src/devflow_engine/llm_primitives.py +0 -315
- devflow_engine-1.0.0/src/devflow_engine/playwright_workflow/__init__.py +0 -5
- devflow_engine-1.0.0/src/devflow_engine/playwright_workflow/dag.py +0 -1317
- devflow_engine-1.0.0/tests/cli/test_agent_command_surface.py +0 -165
- devflow_engine-1.0.0/tests/cli/test_doctor_recovery_error_contract.py +0 -256
- devflow_engine-1.0.0/tests/cli/test_llm_guide.py +0 -62
- devflow_engine-1.0.0/tests/cli/test_packaged_wheel_smoke.py +0 -94
- devflow_engine-1.0.0/tests/cli/test_worker_integration_cli.py +0 -74
- devflow_engine-1.0.0/tests/test_llm_repo_knowledge_index.py +0 -246
- devflow_engine-1.0.0/tests/test_post_integration_playwright_workflow.py +0 -414
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.github/workflows/devflow-enforce.yml +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.gitignore +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.pi/agents/filemaker-expert/filemaker-expert.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.pi/agents/goldilocks-advisor/goldilocks-advisor.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.pi/agents/idea-compliance-advisor/idea-compliance-advisor.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.pi/npm/.gitignore +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.pi/settings.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.pi-lens/cache/session-start-guidance.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.pi-lens/cache/session-start-guidance.meta.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.pi-lens/cache/todo-baseline.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/.pi-lens/cache/todo-baseline.meta.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/source_docs/assumptions_registry.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/source_docs/domain_entities.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/source_docs/product_brief.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/source_docs/user_workflows.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/devflow-bootstrap-answer.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/idea_to_devflow_story_dag_contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/ideation-dag-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/pencil_bridge_and_code_to_design_plan.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/scope-to-idea-enrichment-dag-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/source-doc-mutation-dag-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/source-docs-to-scopes-dag-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/ui-grounding-runtime-implementation-plan.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/ui-grounding-workflow-note.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/ui_grounding_code_to_design_opportunity_map.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/ui_grounding_next_sprint_checklist.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/ui_grounding_phase1_pitfalls_review.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/notes/ui_grounding_workflow_dag_contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/source_docs/architecture.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/source_docs/delivery_plan.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/source_docs/index.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/source_docs/prd.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/source_docs/project_charter.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/source_docs/ux_design.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-ARCH-1010_arch_decisions_cli.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-ARCH-1013_validate_architecture_gate.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-INV-1003_architecture_inventory_registry.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-PIPE-1002_production_pipeline_story_entrypoint.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-PIPE-1011_pipeline_runner_cli.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-PROC-1001_ideation_planning_loop.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-REG-1030_registry_db_perfect_registration.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area10_process_pipeline/DF2-REG-1031_init_dedupe_and_strict_refactor.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/cli-typer-command-surface.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/config-hierarchy-discovery.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/green-gate-quality-script.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/logging-baseline.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area1_bootstrap/repo-bootstrap-uv-typer-skeleton.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.10_project_init_registry_db.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.1_project_init.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.3_project_registry_list.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.4_project_remove.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.5_project_workspace_layout_hashing.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.6_config_hierarchy_resolution.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.7_project_import_clone_register.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.8_project_import_init_blank_repo.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area2_projects/US2.9_project_import_story_synthesis.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.1_execution-store_sqlite-bootstrap.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.2_execution-store_schema_core-tables.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.3_execution-store_run-lifecycle-persistence.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.4_execution-store_node-execution-persistence.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.5_execution-store_artifacts-errors-review-packets.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area3_execution_store_logging/US-3.6_logging_layout_correlation-ids_tool-logs.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-canonical-md.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-contract-hash.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-indexer.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-optional-artifacts.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area4_story_system/story-system-validation.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-502_repo-analysis-capture-evidence.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-503_generate-baseline-draft-stories-per-plane.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-504_draft-storage-provenance-and-non-canonical-separation.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-505_promote-drafts-to-canonical-with-traceability.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area5_planning_idea_tool/DF2-IDEA-506_review-and-diff-drafts-vs-canonical.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/DF2-IMPL-620_genai_workflow_engine_conversion.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/implementation-dag-core.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-git-commit-green.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-green-implement-and-gate.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-red-failing-tests.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-testdesign-oracle-anchor.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-validate-stories.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area6_implementation_dag/stage-validate-tests.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area8_errors/US-8.1_error-queue_core-model.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area8_errors/US-8.3_error-queue_dedupe-fingerprints.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-901_playground-preflight-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-902_preflight-check-catalog-and-config.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-903_scenario-registry-and-discovery.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-904_scenario-runner-and-artifacts.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-905_failures-create-error-tasks.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-906_preflight-scenarios-respect-story-planes.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-907_parallel-batch-run-and-summary.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories/area9_playground/DF2-PLAY-908_node-devflow-parity-preflight-json.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area2_projects/US2.2_project_register_existing.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area4_story_system/story-system-draft-vs-canonical.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area5_planning_idea_tool/DF2-IDEA-501_idea-init-and-structure.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area5_planning_idea_tool/DF2-IDEA-507_list-and-inspect-ideas-analyses-drafts.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area5_planning_idea_tool/DF2-IDEA-508_link-idea-artifacts-to-execution-runs.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area6_implementation_dag/stage-git-commit-refactor.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area6_implementation_dag/stage-normalize.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area6_implementation_dag/stage-refactor-and-verify.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.1_review-packet_schema-and-loader.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.2_review-runner_core-workflow.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.3_review-findings_persistence_execution-store.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.4_remediation-run-spec_generation.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.5_security-and-safety_review-policies.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.6_contract-compliance-and-soundness_checks.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area7_review/US-7.7_cli-review-command_and_artifacts.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.2_error-queue_claiming-concurrency.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.4_remediation-runs_model-and-linkage.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.5_error-solver_workflow-orchestration.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.6_github-issues_ingestion-watcher.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.7_execution-errors_to_error-tasks-ingestion.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.8_error-cli_minimal-commands.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/ai_docs/context/v2/project_docs/user_stories_backlog/area8_errors/US-8.9_node-devflow-semantics_compatibility.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/control-plane-source-of-truth-sketch.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/devflow-queue-ops-skill-tree.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/devflow-skill-overlays.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/devflow-skill-registry-spec.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/devin-ideation-source-docs.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/devin-intake-ideation-boundary.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/evals/source-doc-sparse-input-eval.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/evals/source-doc-targeted-mutation-eval.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/llm-invocation-architecture.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/project-doc-agent-contracts.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/project-doc-cross-reference-rules.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/project-doc-richness-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/prompts/anti-patterns.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/prompts/devin-agent-prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/prompts/devin2-agent-prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/prompts/examples/devin-vapi-clone-reference-exchange.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/queue-worker-infra.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/registry-doctrine.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/scope-idea-agentification.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/source-doc-coherence-node-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/source-doc-mutation-acceptance-matrix.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/source-doc-mutation-real-eval.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/source-doc-mutation-support-index-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/source-doc-section-agent-contracts.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/source-doc-section-richness-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/source-to-project-doc-impact-map.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/source-to-project-doc-reference-map.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/story-implementation-planning-node.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/support/source_doc_mutation/cross_sourceXproject.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/support/source_doc_mutation/internal_project.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/support/source_doc_mutation/internal_source.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/ui-grounding-curtis-medium-tier-doctrine.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/docs/ui-grounding-curtis-structural-integration-note.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/project_docs/architecture.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/project_docs/delivery_plan.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/project_docs/index.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/project_docs/prd.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/project_docs/project_charter.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/project_docs/ux_design.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/source_docs/assumptions_registry.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/source_docs/domain_entities.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/source_docs/product_brief.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/ai_docs/context/source_docs/user_workflows.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/indexes/project_docs_index.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/indexes/source_docs_index.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/metrics/completeness.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T195349Z/metrics/quality.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/project_docs/architecture.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/project_docs/delivery_plan.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/project_docs/index.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/project_docs/prd.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/project_docs/project_charter.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/project_docs/ux_design.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/source_docs/assumptions_registry.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/source_docs/domain_entities.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/source_docs/product_brief.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/ai_docs/context/source_docs/user_workflows.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/indexes/project_docs_index.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/indexes/source_docs_index.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/metrics/completeness.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T211128Z/metrics/quality.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/project_docs/architecture.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/project_docs/delivery_plan.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/project_docs/index.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/project_docs/prd.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/project_docs/project_charter.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/project_docs/ux_design.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/source_docs/assumptions_registry.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/source_docs/domain_entities.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/source_docs/product_brief.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/ai_docs/context/source_docs/user_workflows.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/indexes/project_docs_index.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/indexes/source_docs_index.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/metrics/completeness.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T214046Z/metrics/quality.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/project_docs/architecture.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/project_docs/delivery_plan.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/project_docs/index.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/project_docs/prd.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/project_docs/project_charter.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/project_docs/ux_design.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/source_docs/assumptions_registry.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/source_docs/domain_entities.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/source_docs/product_brief.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/ai_docs/context/source_docs/user_workflows.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/project_docs/architecture.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/project_docs/delivery_plan.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/project_docs/index.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/project_docs/prd.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/project_docs/project_charter.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/project_docs/ux_design.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/source_docs/assumptions_registry.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/source_docs/domain_entities.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/source_docs/product_brief.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/baseline/source_docs/user_workflows.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/indexes/project_docs_index.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/indexes/source_docs_index.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/matrices/accuracy.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/matrices/appropriate_update.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/matrices/thoroughness.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/metrics/completeness.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/20260322T223518Z/metrics/quality.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/devin_agent_loop_terminal.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/devin_response.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T211631Z/basic_new_idea_sparse/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T211631Z/basic_new_idea_sparse/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T211631Z/basic_new_idea_sparse/metrics/scores.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/devin_agent_loop_terminal.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/devin_response.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T213939Z/basic_new_idea_sparse/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T213939Z/basic_new_idea_sparse/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T213939Z/basic_new_idea_sparse/metrics/scores.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/devin_agent_loop_terminal.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/devin_response.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T214440Z/extend_existing_codebase_feature/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T214440Z/extend_existing_codebase_feature/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T214440Z/extend_existing_codebase_feature/metrics/scores.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T215138Z/drive_devflow_commands_queue/artifacts/devin_agent_loop_terminal.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T215138Z/drive_devflow_commands_queue/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T215138Z/drive_devflow_commands_queue/artifacts/devin_response.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T215138Z/drive_devflow_commands_queue/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T215138Z/drive_devflow_commands_queue/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T215138Z/drive_devflow_commands_queue/metrics/scores.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222040Z/drive_devflow_commands_queue/artifacts/devin_agent_loop_terminal.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222040Z/drive_devflow_commands_queue/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222040Z/drive_devflow_commands_queue/artifacts/devin_response.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222040Z/drive_devflow_commands_queue/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222040Z/drive_devflow_commands_queue/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222040Z/drive_devflow_commands_queue/metrics/scores.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222316Z/drive_devflow_commands_queue/artifacts/devin_agent_loop_terminal.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222316Z/drive_devflow_commands_queue/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222316Z/drive_devflow_commands_queue/artifacts/devin_response.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222316Z/drive_devflow_commands_queue/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222316Z/drive_devflow_commands_queue/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T222316Z/drive_devflow_commands_queue/metrics/scores.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T223619Z/drive_devflow_commands_queue/artifacts/devin_agent_loop_terminal.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T223619Z/drive_devflow_commands_queue/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T223619Z/drive_devflow_commands_queue/artifacts/devin_response.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T223619Z/drive_devflow_commands_queue/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T223619Z/drive_devflow_commands_queue/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin/20260322T223619Z/drive_devflow_commands_queue/metrics/scores.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183244Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183324Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/20260412T183359Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T183244Z/suite_summary.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_activation_decision.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_activation_decision.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184333Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184446Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/20260412T184518Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184333Z/suite_summary.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184800Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184843Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/20260412T184910Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T184800Z/suite_summary.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_activation_decision.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/20260412T185050Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185050Z/suite_summary.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_02_turn2_refinement_without_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_activation_decision.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185255Z/preapproval_ideation_stays_preactivation_until_explicit_approval/turn_03_turn3_explicit_approval/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/devin_response_post.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_02_turn2_insight_detour/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_assumption_completion.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_context_resolution.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/idea_readiness_contract.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185332Z/ideation_to_insight_to_ideation_continuity/turn_03_turn3_back_to_ideation/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_01_turn1_initial_idea/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_02_turn2_insight_question/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/devin_intake.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_03_turn3_generic_question/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/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 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/artifacts/route.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/20260412T185402Z/three_arm_interplay_ideation_insight_generic_then_back/turn_04_turn4_back_to_ideation/turn_result.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/eval_manifest.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/devin_multi_turn/20260412T185255Z/suite_summary.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/project_bootstrap/dataset.yaml +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/project_bootstrap/run_eval.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/evals/project_bootstrap/schema.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/playground/evals/source-doc-sparse-input-scenario.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/playground/evals/source-doc-targeted-mutation-scenario.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/playground/ideation_arm_playground.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/playground/ideation_scenarios_template.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/playground/iterate_arm_playground.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/playground/run_ideation_arm_scenarios.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/playground/run_iterate_scenarios.sh +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/playground/source_doc_mutation_eval.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/generic/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/ideation/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/ideation/scenarios.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/ideation_loop/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/insight/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/insight/scenarios.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/intake/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/iterate/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/shared/eval_doctrine.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin/shared/principles.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/devin_eval/assessment/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/idea/api_ideation_agent/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/idea/api_insight_agent/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/idea/response_doctrine/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/dependency_assessment/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/green/green/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/green/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/green_review/outcome_review/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/green_review/prior_run_review/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/setupdoc/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/story_planning/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/README.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green/example.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green/green/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green/past_prompts/20260417T212300/green/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green/past_prompts/20260417T212300/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green_enrich/example.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green_enrich/green_enrich/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green_enrich/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green_enrich/past_prompts/20260417T212300/green_enrich/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/green_enrich/past_prompts/20260417T212300/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/code_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/example.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/past_prompts/20260417T212300/code_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/past_prompts/20260417T212300/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/past_prompts/20260417T212300/red/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/past_prompts/20260417T212300/red_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/past_prompts/20260417T215032/code_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/past_prompts/20260417T215032/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/past_prompts/20260417T215032/red_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/red/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red/red_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red_review/example.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red_review/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red_review/past_prompts/20260417T212300/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red_review/past_prompts/20260417T212300/red_review/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/red_review/red_review/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/resolve/example.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/resolve/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/resolve/past_prompts/20260417T212300/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/resolve/past_prompts/20260417T212300/resolve_implicated_users/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/resolve/past_prompts/20260417T212300/resolve_side_effects/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/resolve/resolve_implicated_users/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/resolve/resolve_side_effects/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/build_idea_acceptance_coverage/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/code_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/example.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/past_prompts/20260417T212300/code_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/past_prompts/20260417T212300/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/past_prompts/20260417T212300/validate_enrich_gate/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/past_prompts/20260417T212300/validate_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/past_prompts/20260417T215032/code_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/past_prompts/20260417T215032/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/past_prompts/20260417T215032/validate_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/validate_enrich_gate/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/validate/validate_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/write_workflows/example.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/write_workflows/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/write_workflows/past_prompts/20260417T212300/node_config/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/write_workflows/past_prompts/20260417T212300/write_workflows/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/integration/write_workflows/write_workflows/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/iterate/README.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/iterate/coder/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/iterate/framer/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/iterate/iterator/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/iterate/observer/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/recovery/diagnosis/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/recovery/execution/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/recovery/execution_verification/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/recovery/failure_investigation/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/recovery/preflight_health_repo_repair/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/recovery/remediation_execution/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/recovery/root_cause_investigation/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/scope_idea/doctrine/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_doc_eval/document/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_doc_eval/targeted_mutation/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_doc_mutation/domain_entities/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_doc_mutation/product_brief/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_doc_mutation/project_doc_coherence/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_doc_mutation/project_doc_render/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_doc_mutation/source_doc_coherence/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_doc_mutation/source_doc_enrichment_coherence/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_doc_mutation/user_workflows/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/source_scope/doctrine/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/ui_grounding/doctrine/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/audit_llm_invocations.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/dump_run_node_outputs.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/green.sh +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/purge_implemented_story_queue.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/reconcile_story_queue.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/replay_scope_draft_idea.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/replay_scope_goldilocks.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/run_api_key_transport_smoke.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/run_gitcommit_refactor_node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/run_green_node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/run_once_no_recovery.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/run_preflight_node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/run_red_node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/run_refactor_node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/run_security_node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/run_with_recovery.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/validate_architecture.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/validate_stories.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/validate_tests.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/scripts/validate_tests_story.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/agentic_runtime.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/api_key_flow_harness.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/api_keys.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/bootstrap/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/bootstrap/provision_from_template.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/cli/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/core/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/core/config.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/core/logging.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/core/paths.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/core/toml_kv.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/devflow_event_worker.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/devflow_state.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/devin2/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/devin_orchestration.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/error/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/error/remediation.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/errors/error_solver_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/errors/runtime_observability.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/actors.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/agentic.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/analyze.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/devin_chat_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/diff.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/drafts.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/idea_creation_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/ideation_enrichment.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/ideation_enrichment_worker.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/paths.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/promote.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/redaction.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/response_mode.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/story_pipeline.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/sufficiency.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/idea/traditional_stories.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/implementation/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/implementation/alembic_preflight.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/implementation/green_gate.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/implementation/test_runtime.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/integration/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/integration/agentic.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/integration/supabase_schema.sql +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/integration/supabase_sync.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/llm/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/llm/cli_one_shot.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/llm/cli_stream.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/llm/execution_context.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/orchestration.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/planning/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/planning/analyze_repo.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/planning/render_drafts.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/playground/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/playground/hooks.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/process/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/process/dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/project_registration/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/project_registration/dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/project_registry.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/recovery/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/recovery/dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/recovery/models.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/refactor.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/cards.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/domain_normalize.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/effects.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/enforce_report.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/module_cards_classify.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/module_cards_draft.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/module_cards_gate.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/packages.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/registry/pathways.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/review/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/review/dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/review/review_story.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/scope_idea/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/scope_idea/agentic.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/scope_idea/dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/scope_idea/models.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devflow/queue_failure_investigation/SKILL.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devflow/queue_idea_to_story/SKILL.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devflow/queue_integration/SKILL.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devflow/queue_recovery/SKILL.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devflow/queue_runtime_core/SKILL.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devflow/queue_story_implementation/SKILL.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devin/idea_to_story_handoff/SKILL.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devin/ideation/SKILL.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devin/ideation/state-and-phrasing-reference.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/builtins/devin/insight/SKILL.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/skills/registry.example.yaml +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_doc_assumptions.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_doc_mutation_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_doc_mutation_eval.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_doc_mutation_worker.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_docs_schema.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_docs_updater.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_scope/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_scope/agentic.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_scope/dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/source_scope/models.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/stores/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/contracts.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/discovery.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/evidence.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/hashing.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/implemented_queue_purge.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/indexer.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/io.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/markdown_contracts.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/reconciliation.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/validate_stories.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/validate_tests_story.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/story/validation.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/ui_grounding/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/ui_grounding/agentic.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/ui_grounding/dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/ui_grounding/models.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/exceptions.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/nodes/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/nodes/agent.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/nodes/agent_streaming_node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/nodes/base.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/nodes/concurrent.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/nodes/router.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/schema.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/task.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/validate.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/vendor/datalumina_genai/core/workflow.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devflow_engine/worker_guard.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/dag_two_arm.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/devin_chat_scenario_catalog.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/devin_eval.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/playground.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/continue_refinement.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/continue_refinement_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/idea_fits_existing_patterns.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/idea_fits_existing_patterns_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/large_idea_split.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/large_idea_split_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/source_documentation_added.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/source_documentation_added_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/user_says_create_it.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/user_says_create_it_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/vague_idea.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/scenarios/vague_idea_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/ideation/tools.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/playground.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/architecture_pattern_query.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/architecture_pattern_query_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/codebase_exploration.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/codebase_exploration_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/devin_ideation_routing.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/devin_ideation_routing_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/devin_insight_routing.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/devin_insight_routing_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/operational_debugging.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/operational_debugging_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/operational_question.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/operational_question_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/queue_status.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/queue_status_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/source_doc_explanation.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/source_doc_explanation_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/worker_state_check.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/scenarios/worker_state_check_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/insight/tools.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/intake/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/intake/node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/intake/playground.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/intake/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/intake/scenarios/ideation_routing.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/intake/scenarios/ideation_routing_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/intake/scenarios/insight_routing.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/intake/scenarios/insight_routing_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/README.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/01-objectives-requirements.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/02-evals.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/03-tools-and-boundaries.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/04-harness-and-playground.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/05-prompt-deferred.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/coder_agent_design/01-objectives-requirements.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/coder_agent_design/02-evals.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/coder_agent_design/03-tools-and-boundaries.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/coder_agent_design/04-harness-and-playground.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/framer_agent_design/01-objectives-requirements.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/framer_agent_design/02-evals.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/framer_agent_design/03-tools-and-boundaries.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/framer_agent_design/04-harness-and-playground.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/iterator_agent_design/01-objectives-requirements.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/iterator_agent_design/02-evals.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/iterator_agent_design/03-tools-and-boundaries.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/iterator_agent_design/04-harness-and-playground.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/observer_agent_design/01-objectives-requirements.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/observer_agent_design/02-evals.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/observer_agent_design/03-tools-and-boundaries.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/_archived_design_stages/observer_agent_design/04-harness-and-playground.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/agent-roles.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/agents/README.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/artifacts.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/eval-plan.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/node.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/pipeline/README.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/playground-contract.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/prompt.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/README.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/artifact-and-loop-scenarios.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/coder_artifact_alignment.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/coder_artifact_alignment_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/coder_bounded_fix.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/coder_bounded_fix_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/devin_iterate_routing.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/devin_iterate_routing_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/framer_scope_boundary.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/framer_scope_boundary_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/framer_task_framing.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/framer_task_framing_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/iterate_error_fix.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/iterate_error_fix_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/iterate_quick_change.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/iterate_quick_change_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/iterate_to_idea_promotion.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/iterate_to_idea_promotion_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/iterate_to_insight_reroute.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/iterate_to_insight_reroute_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/observer_evidence_seam.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/observer_evidence_seam_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/observer_repro_creation.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/observer_repro_creation_evals.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/iterate/scenarios/routing-matrix.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/__init__.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/filemaker_expert.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/filemaker_expert.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/filemaker_expert_eval/runner.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/filemaker_expert_eval/scenarios.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/goldilocks_advisor_eval/runner.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/goldilocks_advisor_eval/scenarios.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/helpers.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/idea_compliance_advisor_eval/runner.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/idea_compliance_advisor_eval/scenarios.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/models.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/post.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/router.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/nodes/shared/tools.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/shared/devin-chat-rubric.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/shared/devin-chat-scenario-suite.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/src/devin/shared/eval_doctrine.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_devflow_insight_cli_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_arch_1010_decisions_cli_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_arch_1013_validate_architecture_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_proc_1001_idea_story_dag_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_proc_1002_arms_integration.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_proc_1002_ideation_api_agent.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_proc_1002_ideation_intake_dag_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_proc_1002_ideation_intake_schema.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_proc_1002_ideation_scenario.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_proc_1002_route_classifier.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_df2_reg_1031_init_dedupe_strict_refactor_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_failure_recovery_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_handoff_resume_and_recovery.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_pipeline_worker_e2e_integration.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_recovery_dag_model_tier.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_recovery_queue_normalization.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area10_process_pipeline/test_worker_story_queue_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area12_scope_idea/conftest.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area12_scope_idea/test_scope_to_idea_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area13_source_scope/test_source_docs_to_scopes_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area13_source_scope/test_source_scope_cli_e2e.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area13_source_scope/test_source_to_scope_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area14_ui_grounding/test_pencil_bridge.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area14_ui_grounding/test_pencil_preflight_cli.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area14_ui_grounding/test_ui_grounding_cli_e2e.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area14_ui_grounding/test_ui_grounding_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area1_bootstrap/test_df2_boot_001_repo_bootstrap.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area1_bootstrap/test_df2_boot_002_cli_surface.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area1_bootstrap/test_df2_boot_003_config_hierarchy.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area1_bootstrap/test_df2_boot_004_logging_baseline.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area1_bootstrap/test_df2_boot_005_green_gate.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area1_bootstrap/test_project_bootstrap_eval_scaffold.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area2_projects/test_us2_10_project_init_registry_db_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area5_planning_idea_tool/test_actor_label_guardrails.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area5_planning_idea_tool/test_df2_idea_502_repo_analysis_capture_evidence_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area5_planning_idea_tool/test_df2_idea_503_generate_drafts_per_plane_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area5_planning_idea_tool/test_df2_idea_504_draft_storage_separation_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area5_planning_idea_tool/test_df2_idea_505_promote_drafts_non_destructive_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area5_planning_idea_tool/test_df2_idea_506_diff_review_stable_ids_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area5_planning_idea_tool/test_dfe_command_1_ideation_sufficiency_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area5_planning_idea_tool/test_dfe_command_2_traditional_user_story_generation_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area5_planning_idea_tool/test_idea_repo_tools.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_alembic_preflight_normalization.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_620_genai_workflow_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_area6_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_claude_permissions_flag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_commit_refactor_fallback.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_commit_retains_devflow_refactor.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_devflow_cli_fallback.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_gitcommit_green_gate_fallback.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_gitcommit_refactor_harness.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_green_harness.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_green_prompt_packaging.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_mixed_runtime_bundles.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_model_strength_mapping.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_red_harness.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_red_preflight.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_red_prompt_contract.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_red_runtime_contract.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_refactor_attempt_prepares_enforce.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_refactor_command_usage.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_refactor_commit_flow.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_refactor_harness.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_refactor_prompt_packaging.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_security_harness.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_security_prompt_packaging.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_streaming_path_usage.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_df2_impl_validate_gates_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area6_implementation_dag/test_validate_tests_story_scoped_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area7_review/test_review_dag_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area8_errors/test_df2_area7_failures_error_tasks_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area8_errors/test_us85_error_solver_dag_contract.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area8_errors/test_us85_error_solver_dag_fixing_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area8_errors/test_us85_error_solver_dag_journal.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area8_errors/test_us85_error_solver_dag_regression_context.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area8_errors/test_us85_error_solver_dag_verification_contract.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area9_playground/test_df2_play_908_node_preflight_json_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area9_playground/test_df2_play_area9_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/area9_playground/test_ideation_arm_playground.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/cli/test_project_repo_binding.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/cli/test_refactor_cli_import.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/cli/test_repo_local_dag_paths.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/cli/test_repo_root_override.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/cli/test_story_execute_wrapper_run.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/cli/test_supabase_event_worker_cli.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/cli/test_supabase_realtime_listener.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/cli/test_worker_kill_switch.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/cli/test_worker_start_modes.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/conftest.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/fixtures/backend_provision/provision_from_template.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/fixtures/source_doc_mutation/bootstrap_repo/README.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/fixtures/source_doc_mutation/bootstrap_repo/docs/overview.md +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/fixtures/source_doc_mutation/chi/assumptions_registry.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/fixtures/source_doc_mutation/chi/domain_entities.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/fixtures/source_doc_mutation/chi/product_brief.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/fixtures/source_doc_mutation/chi/user_workflows.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/fixtures/source_doc_mutation/scenarios.json +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/idea/test_actor_specificity_warning.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/idea/test_capability_first_story_decomposition.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/idea/test_devin_ddr_docs_operator_guide.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/idea/test_story_pipeline_dfs_state.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/integration/test_integration_agentic.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/integration/test_integration_prompt_loading.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/stores/test_idea_creation_queue.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/stores/test_integration_queue.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_agentic_prompt_loading.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_agentic_runtime.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_api_key_flow_harness.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_api_keys.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_area2_project_import_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_area2_project_import_remaining_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_area2_projects_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_area3_execution_store_logging_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_area4_story_system_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_devflow_event_worker.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_devflow_state_project_resolution.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_devin2_agent_definition.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_devin2_pi_runner.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_devin_chat_scenario_catalog.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_devin_multi_turn_eval_defaults.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_devin_real_eval.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_domain_normalize.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_dump_run_node_outputs.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_enforce_changed_filter.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_enforce_report_directives.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_error_solve_runtime_coder_path.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_execution_store.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_execution_store_story_queue_red.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_generic_task_queue.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_ideation_enrichment.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_implemented_story_queue_purge.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_llm_cli_one_shot.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_llm_cli_stream_journal_sqlite.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_llm_cli_stream_logging.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_llm_codex_invocation_regression.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_llm_invocation_audit.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_llm_provider_config.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_llm_tier_invocation.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_playground_source_doc_mutation_eval.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_prd_mutation_grounding.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_process_dag_imperative.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_project_registration_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_project_registration_supabase_uuid.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_queue_project_id_resolution.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_refactor_llm_path.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_register_one_time.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_cards_and_gate.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_classify_module_cards_parser.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_detect_pathways.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_draft_module_cards.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_draft_module_cards_effects.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_effect_overlap.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_gate_module_cards.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_gate_unknown_strict.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_import_scan_filters_stdlib_and_node_builtins.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_llm_commands.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_module_incremental_focus.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_module_phase_and_apply.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_registry_scan_ignores_build_dirs.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_source_doc_mutation_acceptance.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_source_doc_mutation_dag.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_source_doc_mutation_eval.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_source_doc_mutation_real_eval.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_source_docs_updater.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_story_contracts.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/tests/test_story_reconciliation.py +0 -0
- {devflow_engine-1.0.0 → devflow_engine-1.1.1}/users.json +0 -0
|
@@ -1,7 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: devflow-engine
|
|
3
|
+
Version: 1.1.1
|
|
4
|
+
Summary: DevFlow v2 CLI-first engine (projects, stories, execution store, review packets)
|
|
5
|
+
Author: DevFlow
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Requires-Dist: cryptography>=45.0
|
|
9
|
+
Requires-Dist: pydantic>=2.6
|
|
10
|
+
Requires-Dist: pyyaml>=6.0
|
|
11
|
+
Requires-Dist: rich>=13.7
|
|
12
|
+
Requires-Dist: typer>=0.12
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# DevFlow Engine (v2)
|
|
16
|
+
|
|
17
|
+
CLI-first Python engine for DevFlow v2.
|
|
5
18
|
|
|
6
19
|
## Goals
|
|
7
20
|
- Project lifecycle: draft shell -> bind workspace/repo -> init/register/list/remove
|
|
@@ -14,27 +27,9 @@ CLI-first Python engine for DevFlow. The PyPI distribution is
|
|
|
14
27
|
|
|
15
28
|
## Documentation
|
|
16
29
|
- `docs/story-implementation-planning-node.md` — per-story planning/gating node before TestDesign/Red, with dependency findings, queue decisions, and registry expectations consumed by downstream implementation nodes.
|
|
17
|
-
- `docs/llm-input-primitives-v0.02.md` — v0.02 LLM-facing input primitive contract for `idea` and `story`.
|
|
18
|
-
|
|
19
|
-
## Install
|
|
20
|
-
|
|
21
|
-
Install the CLI from PyPI:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
pipx install devflow-engine
|
|
25
|
-
# or
|
|
26
|
-
python -m pip install devflow-engine
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
Run the CLI:
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
devflow --help
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
## Development
|
|
36
30
|
|
|
37
|
-
|
|
31
|
+
## Install / Dev
|
|
32
|
+
This repo is intended to be run with **uv**.
|
|
38
33
|
|
|
39
34
|
```bash
|
|
40
35
|
cd devflow_engine
|
|
@@ -42,16 +37,15 @@ uv venv
|
|
|
42
37
|
uv pip install -e '.[dev]'
|
|
43
38
|
```
|
|
44
39
|
|
|
45
|
-
|
|
40
|
+
Run the CLI:
|
|
46
41
|
```bash
|
|
47
|
-
devflow
|
|
48
|
-
devflow llm guide --primitive idea --json
|
|
42
|
+
devflow --help
|
|
49
43
|
```
|
|
50
44
|
|
|
51
45
|
## Happy path
|
|
52
46
|
1. project shell created in control plane
|
|
53
47
|
2. workspace/repo bound to project
|
|
54
|
-
3. registration DAG runs via `devflow project
|
|
48
|
+
3. registration DAG runs via `devflow project init` or `devflow project import`
|
|
55
49
|
4. project reaches `ready_for_source_scope`
|
|
56
50
|
5. source docs -> scopes
|
|
57
51
|
6. approved scope -> idea(s)
|
|
@@ -62,35 +56,46 @@ devflow llm guide --primitive idea --json
|
|
|
62
56
|
## Quickstart
|
|
63
57
|
Register an existing repo with DevFlow:
|
|
64
58
|
```bash
|
|
65
|
-
devflow project
|
|
59
|
+
devflow project init --name my-repo
|
|
66
60
|
```
|
|
67
61
|
|
|
68
|
-
|
|
62
|
+
Create and register a new repo from a template:
|
|
69
63
|
```bash
|
|
70
|
-
devflow
|
|
71
|
-
# or
|
|
72
|
-
devflow story submit --project /absolute/path/to/repo --from story.json --json
|
|
64
|
+
devflow project import /absolute/path/to/my-repo --init python
|
|
73
65
|
```
|
|
74
66
|
|
|
75
|
-
|
|
67
|
+
Clone and register an existing GitHub repo:
|
|
76
68
|
```bash
|
|
77
|
-
devflow
|
|
78
|
-
|
|
69
|
+
devflow project import owner/repo
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Draft story contracts based on repo scan:
|
|
73
|
+
```bash
|
|
74
|
+
devflow plan analyze
|
|
75
|
+
ls .devflow/drafts
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Validate and register a story:
|
|
79
|
+
```bash
|
|
80
|
+
devflow story validate .devflow/drafts/DF-PLAN-001.yaml
|
|
81
|
+
devflow story register .devflow/drafts/DF-PLAN-001.yaml
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Run the "green gate":
|
|
85
|
+
```bash
|
|
86
|
+
devflow impl gate
|
|
87
|
+
# or
|
|
88
|
+
./scripts/green.sh
|
|
79
89
|
```
|
|
80
90
|
|
|
81
|
-
|
|
91
|
+
Generate a review packet:
|
|
82
92
|
```bash
|
|
83
|
-
devflow
|
|
84
|
-
devflow recovery run --project /absolute/path/to/repo --json
|
|
85
|
-
devflow error solve --project /absolute/path/to/repo --json
|
|
93
|
+
devflow review run DF-PLAN-001
|
|
86
94
|
```
|
|
87
95
|
|
|
88
|
-
|
|
96
|
+
Inspect errors:
|
|
89
97
|
```bash
|
|
90
|
-
devflow error
|
|
91
|
-
--project /absolute/path/to/repo \
|
|
92
|
-
--repro-command 'uv run pytest' \
|
|
93
|
-
--json
|
|
98
|
+
devflow error list
|
|
94
99
|
```
|
|
95
100
|
|
|
96
101
|
Inspect per-node outputs from a stored run:
|
|
@@ -1,35 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
Summary: DevFlow v2 CLI-first engine (projects, stories, execution store, review packets)
|
|
5
|
-
Project-URL: Homepage, https://github.com/Nuosis/devflow_engine
|
|
6
|
-
Project-URL: Repository, https://github.com/Nuosis/devflow_engine
|
|
7
|
-
Project-URL: Issues, https://github.com/Nuosis/devflow_engine/issues
|
|
8
|
-
Author: DevFlow
|
|
9
|
-
License: Proprietary
|
|
10
|
-
Keywords: agentic,automation,cli,devflow,testing,workflow
|
|
11
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
-
Classifier: Environment :: Console
|
|
13
|
-
Classifier: Intended Audience :: Developers
|
|
14
|
-
Classifier: License :: Other/Proprietary License
|
|
15
|
-
Classifier: Operating System :: OS Independent
|
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
-
Classifier: Topic :: Software Development
|
|
20
|
-
Classifier: Topic :: Software Development :: Build Tools
|
|
21
|
-
Requires-Python: >=3.11
|
|
22
|
-
Requires-Dist: cryptography>=45.0
|
|
23
|
-
Requires-Dist: pydantic>=2.6
|
|
24
|
-
Requires-Dist: pyyaml>=6.0
|
|
25
|
-
Requires-Dist: rich>=13.7
|
|
26
|
-
Requires-Dist: typer>=0.12
|
|
27
|
-
Description-Content-Type: text/markdown
|
|
28
|
-
|
|
29
|
-
# DevFlow Engine
|
|
30
|
-
|
|
31
|
-
CLI-first Python engine for DevFlow. The PyPI distribution is
|
|
32
|
-
`devflow-engine`; it installs the `devflow` command.
|
|
1
|
+
# DevFlow Engine (v2)
|
|
2
|
+
|
|
3
|
+
CLI-first Python engine for DevFlow v2.
|
|
33
4
|
|
|
34
5
|
## Goals
|
|
35
6
|
- Project lifecycle: draft shell -> bind workspace/repo -> init/register/list/remove
|
|
@@ -42,27 +13,9 @@ CLI-first Python engine for DevFlow. The PyPI distribution is
|
|
|
42
13
|
|
|
43
14
|
## Documentation
|
|
44
15
|
- `docs/story-implementation-planning-node.md` — per-story planning/gating node before TestDesign/Red, with dependency findings, queue decisions, and registry expectations consumed by downstream implementation nodes.
|
|
45
|
-
- `docs/llm-input-primitives-v0.02.md` — v0.02 LLM-facing input primitive contract for `idea` and `story`.
|
|
46
|
-
|
|
47
|
-
## Install
|
|
48
|
-
|
|
49
|
-
Install the CLI from PyPI:
|
|
50
|
-
|
|
51
|
-
```bash
|
|
52
|
-
pipx install devflow-engine
|
|
53
|
-
# or
|
|
54
|
-
python -m pip install devflow-engine
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
Run the CLI:
|
|
58
|
-
|
|
59
|
-
```bash
|
|
60
|
-
devflow --help
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
## Development
|
|
64
16
|
|
|
65
|
-
|
|
17
|
+
## Install / Dev
|
|
18
|
+
This repo is intended to be run with **uv**.
|
|
66
19
|
|
|
67
20
|
```bash
|
|
68
21
|
cd devflow_engine
|
|
@@ -70,16 +23,15 @@ uv venv
|
|
|
70
23
|
uv pip install -e '.[dev]'
|
|
71
24
|
```
|
|
72
25
|
|
|
73
|
-
|
|
26
|
+
Run the CLI:
|
|
74
27
|
```bash
|
|
75
|
-
devflow
|
|
76
|
-
devflow llm guide --primitive idea --json
|
|
28
|
+
devflow --help
|
|
77
29
|
```
|
|
78
30
|
|
|
79
31
|
## Happy path
|
|
80
32
|
1. project shell created in control plane
|
|
81
33
|
2. workspace/repo bound to project
|
|
82
|
-
3. registration DAG runs via `devflow project
|
|
34
|
+
3. registration DAG runs via `devflow project init` or `devflow project import`
|
|
83
35
|
4. project reaches `ready_for_source_scope`
|
|
84
36
|
5. source docs -> scopes
|
|
85
37
|
6. approved scope -> idea(s)
|
|
@@ -90,35 +42,46 @@ devflow llm guide --primitive idea --json
|
|
|
90
42
|
## Quickstart
|
|
91
43
|
Register an existing repo with DevFlow:
|
|
92
44
|
```bash
|
|
93
|
-
devflow project
|
|
45
|
+
devflow project init --name my-repo
|
|
94
46
|
```
|
|
95
47
|
|
|
96
|
-
|
|
48
|
+
Create and register a new repo from a template:
|
|
97
49
|
```bash
|
|
98
|
-
devflow
|
|
99
|
-
# or
|
|
100
|
-
devflow story submit --project /absolute/path/to/repo --from story.json --json
|
|
50
|
+
devflow project import /absolute/path/to/my-repo --init python
|
|
101
51
|
```
|
|
102
52
|
|
|
103
|
-
|
|
53
|
+
Clone and register an existing GitHub repo:
|
|
104
54
|
```bash
|
|
105
|
-
devflow
|
|
106
|
-
|
|
55
|
+
devflow project import owner/repo
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Draft story contracts based on repo scan:
|
|
59
|
+
```bash
|
|
60
|
+
devflow plan analyze
|
|
61
|
+
ls .devflow/drafts
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Validate and register a story:
|
|
65
|
+
```bash
|
|
66
|
+
devflow story validate .devflow/drafts/DF-PLAN-001.yaml
|
|
67
|
+
devflow story register .devflow/drafts/DF-PLAN-001.yaml
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Run the "green gate":
|
|
71
|
+
```bash
|
|
72
|
+
devflow impl gate
|
|
73
|
+
# or
|
|
74
|
+
./scripts/green.sh
|
|
107
75
|
```
|
|
108
76
|
|
|
109
|
-
|
|
77
|
+
Generate a review packet:
|
|
110
78
|
```bash
|
|
111
|
-
devflow
|
|
112
|
-
devflow recovery run --project /absolute/path/to/repo --json
|
|
113
|
-
devflow error solve --project /absolute/path/to/repo --json
|
|
79
|
+
devflow review run DF-PLAN-001
|
|
114
80
|
```
|
|
115
81
|
|
|
116
|
-
|
|
82
|
+
Inspect errors:
|
|
117
83
|
```bash
|
|
118
|
-
devflow error
|
|
119
|
-
--project /absolute/path/to/repo \
|
|
120
|
-
--repro-command 'uv run pytest' \
|
|
121
|
-
--json
|
|
84
|
+
devflow error list
|
|
122
85
|
```
|
|
123
86
|
|
|
124
87
|
Inspect per-node outputs from a stored run:
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Error-Solving DAG Note
|
|
2
|
+
|
|
3
|
+
## Current state in `devflow_engine`
|
|
4
|
+
|
|
5
|
+
`devflow_engine` does **not** currently have a first-class error-solving DAG module comparable to the recovery DAG.
|
|
6
|
+
|
|
7
|
+
What exists today is legacy inline/service-style error-solving logic in:
|
|
8
|
+
- `src/devflow_engine/cli/app.py`
|
|
9
|
+
|
|
10
|
+
Relevant clue in code:
|
|
11
|
+
- around `app.py:4870+`
|
|
12
|
+
- prompt text includes:
|
|
13
|
+
- `You are Devin, an automated error solver.`
|
|
14
|
+
|
|
15
|
+
This means the existing error-solving path in `devflow_engine` is:
|
|
16
|
+
- present
|
|
17
|
+
- story/error oriented
|
|
18
|
+
- but **not** modeled as a proper standalone DAG/module yet
|
|
19
|
+
|
|
20
|
+
## Important architecture note
|
|
21
|
+
|
|
22
|
+
This was identified as legacy/problematic architecture.
|
|
23
|
+
|
|
24
|
+
The intended long-term direction is **not** to keep growing the inline/service implementation in `cli/app.py`.
|
|
25
|
+
Instead, error solving should be reimplemented as a first-class DAG with a clean queue/worker contract, parallel to the new recovery DAG work.
|
|
26
|
+
|
|
27
|
+
## External reference / source of truth for intended pattern
|
|
28
|
+
|
|
29
|
+
The legacy DevFlow Electron app has a **first-party error-solving DAG** implementation (written in Node).
|
|
30
|
+
That app should be treated as the reference implementation to inspect when porting/implementing the proper error-solving DAG in `devflow_engine`.
|
|
31
|
+
|
|
32
|
+
## Why this note exists
|
|
33
|
+
|
|
34
|
+
We traced multiple clues while trying to place an error-solving queue after recovery:
|
|
35
|
+
- `runtime_errors` helped identify the old error-solving path
|
|
36
|
+
- but that path led to inline/service logic in `cli/app.py`, not a proper DAG module
|
|
37
|
+
|
|
38
|
+
This distinction matters:
|
|
39
|
+
- the recovery queue can be implemented cleanly now
|
|
40
|
+
- the error-solving queue should **not** be wired to the legacy inline/service flow as if it were already a proper DAG substrate
|
|
41
|
+
- instead, the proper next step is to port/implement the first-party error-solving DAG pattern from the Electron app into `devflow_engine`
|
|
42
|
+
|
|
43
|
+
## Recommendation
|
|
44
|
+
|
|
45
|
+
When this work is picked up:
|
|
46
|
+
1. inspect the Node-based first-party error-solving DAG in the legacy DevFlow Electron app
|
|
47
|
+
2. document its input contract, node sequence, and queue contract
|
|
48
|
+
3. implement a real error-solving DAG in `devflow_engine`
|
|
49
|
+
4. only then add a first-class error-solving queue to sit after recovery and before source-doc mutation in queue priority
|
|
@@ -2,19 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Purpose
|
|
4
4
|
|
|
5
|
-
Recover
|
|
6
|
-
path.
|
|
7
|
-
|
|
8
|
-
Recovery owns queue/run/artifact/worker state. It should not own project-source
|
|
9
|
-
repairs. Project-code failures belong to the error-solving lane described in
|
|
10
|
-
`docs/doctor-recovery-error-solving-contract.md`.
|
|
5
|
+
Recover failed queue items without assuming a deterministic-first repair path.
|
|
11
6
|
|
|
12
7
|
## Core doctrine
|
|
13
8
|
|
|
14
9
|
Recovery is agentic first:
|
|
15
10
|
1. load failed queue item
|
|
16
11
|
2. investigate failure agentically
|
|
17
|
-
3. route
|
|
12
|
+
3. route code error vs process error
|
|
18
13
|
4. diagnose recovery strategy agentically
|
|
19
14
|
5. execute recovery agentically
|
|
20
15
|
6. verify recovery agentically
|
|
@@ -34,10 +29,8 @@ Recovery is agentic first:
|
|
|
34
29
|
## Routing
|
|
35
30
|
|
|
36
31
|
### `FailureTypeRouter`
|
|
37
|
-
- `
|
|
38
|
-
- `
|
|
39
|
-
- `mixed` -> recover DevFlow state first, then recommend error solving
|
|
40
|
-
- `unknown` -> gather more evidence or block without mutation
|
|
32
|
+
- `code_error` -> `AgenticRecoveryExecutionNode` with delegation outcome
|
|
33
|
+
- `process_error` -> `AgenticRecoveryDiagnosisNode`
|
|
41
34
|
|
|
42
35
|
### `RecoveryStrategyRouter`
|
|
43
36
|
- `handoff_to_code_error`
|
|
@@ -68,9 +61,8 @@ These nodes are model-backed and must not be heuristic stubs:
|
|
|
68
61
|
|
|
69
62
|
Recovery may end in:
|
|
70
63
|
- `reenqueued`
|
|
71
|
-
- `
|
|
64
|
+
- `delegated`
|
|
72
65
|
- `blocked`
|
|
73
66
|
- `recovered`
|
|
74
|
-
- `manual_required`
|
|
75
67
|
|
|
76
68
|
`PublishRecoveryStateNode` is responsible for surfacing the terminal recovery state into DFS.
|
|
@@ -15,13 +15,6 @@
|
|
|
15
15
|
- Do not default to broad destructive database reset/isolation patterns (for example dropping or recreating the whole public schema) just to make story tests feel safe. Unless the story truly requires that blast radius, prefer the least-destructive isolation strategy that still proves the story contract.
|
|
16
16
|
- Do not weaken the story contract, narrow scope to fit current code, or produce greenwashed tests that only prove page-load/visibility when stronger contract oracles are required.
|
|
17
17
|
- Do not emit placeholders, heuristics, mocks, stubs, or fake passing tests as the primary behavior.
|
|
18
|
-
- Never assert that a mock component, mock test id, or fake placeholder exists as proof of story behavior. Test the real component behavior, or if a dependency must be isolated, assert only the parent behavior and preserve required side effects.
|
|
19
|
-
- Before mocking a method, identify its real side effects and whether the test depends on them. Mock the slow/external boundary, not the higher-level method whose behavior the test is meant to prove.
|
|
20
|
-
- Mock responses must mirror the complete real data shape the system may consume downstream. Do not create partial mocks that hide schema assumptions.
|
|
21
|
-
- Do not add or depend on production methods that exist only for tests. Use test utilities for cleanup and fixture lifecycle.
|
|
22
|
-
- Do not claim user-facing functionality with a single shallow E2E/page-load test. If the story touches business rules, backend boundaries, persistence/auth/provider side effects, and UI flow, write the matching unit, integration/API, and Playwright proof planes required by the claim.
|
|
23
|
-
- For Playwright tests, fail early when seeded/demo data required by the workflow is missing, unless the test name and oracle explicitly target an empty-state behavior.
|
|
24
|
-
- For visible business controls, assert the resulting business state: route/context preservation for navigation, reset behavior for filters, durable/request-visible effects for mutations, negative role/status visibility, and observable side effects for downloads/copy/upload/provider actions.
|
|
25
18
|
- Do not rely on deterministic fallback generation. If context is insufficient, say so in notes and still produce your best honest test draft from the available contract.
|
|
26
19
|
- Prefer editing existing story-scoped tests over creating duplicate overlapping tests when possible.
|
|
27
20
|
- If prior_passes show runtime_command_unverified, treat that as unresolved Red work and consult any supplied success_pattern_docs before changing the tests/runtime shape.
|
|
@@ -13,11 +13,5 @@
|
|
|
13
13
|
- Rationale must justify only the planes you included and/or why the file should be registered. Never justify excluded or missing planes.
|
|
14
14
|
- Set register_for_validation=true only for files that should participate in deterministic story-scoped validation.
|
|
15
15
|
- Treat broad destructive database reset or isolation patterns as suspicious unless the story explicitly justifies them; if you keep one, say why that story needs it.
|
|
16
|
-
- Reject or withhold validation registration for tests that only prove page load, clickability, mocked component existence, placeholder labels, or mock behavior when the story requires real behavior.
|
|
17
|
-
- Treat tests that rely on partial mocks, unexplained mocks, or mocks of high-level methods with required side effects as weak unless the file preserves the real side effects needed by the oracle.
|
|
18
|
-
- Treat production APIs or methods added solely for test cleanup as a test-quality problem unless the story proves the class owns that lifecycle in production.
|
|
19
|
-
- For user-facing stories, require browser-level evidence for visible business controls and require deeper non-browser planes when the claim includes business rules, backend/API contracts, persistence, auth, schemas, providers, or durable side effects.
|
|
20
|
-
- For seeded/demo Playwright flows, tests must fail when required seed data is absent unless they explicitly test the empty state.
|
|
21
|
-
- For role/status/filter/mutation/external-action controls, count coverage only when the test asserts the required business result, not merely the visible control.
|
|
22
16
|
- If a file has no directly supported allowable planes, return covered_planes as an empty list and set register_for_validation=false.
|
|
23
17
|
- Use any supplied success_pattern_docs as repo-grounded examples of how this project expects deterministic test/runtime success to look.
|
{devflow_engine-1.0.0 → devflow_engine-1.1.1}/prompts/implementation/redreview_repair/prompt.md
RENAMED
|
@@ -9,8 +9,3 @@
|
|
|
9
9
|
- Do not change implementation code. Only emit test files.
|
|
10
10
|
- Keep the repair bounded to the story-scoped tests already under review unless the supplied context makes an additional test file strictly necessary.
|
|
11
11
|
- Every emitted file must include a concrete path and full file content.
|
|
12
|
-
- Remove or rewrite tests that assert mock existence, placeholder labels, page load only, or mocked behavior instead of real story behavior.
|
|
13
|
-
- If mocks remain necessary, repair them so they preserve required side effects and complete real response shapes. Prefer moving the mock lower to the slow/external boundary.
|
|
14
|
-
- Do not repair test failures by adding test-only methods to production classes or by depending on production methods that exist only for cleanup.
|
|
15
|
-
- If a user-facing claim is under-tested, add or repair the missing proof plane: unit for business rules, integration/API for persistence/auth/schema/provider effects, and Playwright for real visible workflows.
|
|
16
|
-
- For Playwright repairs, add seed precondition assertions, business-result assertions, negative role/status assertions, filter reset assertions, or observable external-action assertions as required by the control category. Do not weaken assertions just to get green.
|
|
@@ -10,13 +10,6 @@
|
|
|
10
10
|
- Every emitted test case must include a non-empty title, oracle, and anchor. Include plane when inferable from context.
|
|
11
11
|
- Do not write implementation code. Do not silently weaken scope. Preserve the planning contract and canonical pathway expectations.
|
|
12
12
|
- Prefer a compact but sufficient test design that makes downstream Red/RedReview bundle behavior and Green verification inspectable.
|
|
13
|
-
- Match the test suite to the claim being made. Unit tests prove business rules and edge cases; integration/API tests prove persistence, auth, schemas, provider boundaries, and durable side effects; Playwright/E2E proves real user-facing workflows. Do not claim full functionality from one shallow plane.
|
|
14
|
-
- For user-facing stories, include browser-level proof when a visible control changes business state, filters business data, triggers an API, gates role/status behavior, or advances a workflow.
|
|
15
|
-
- Seeded/demo flows must fail when required seed data is absent. Empty-state assertions are valid only when the empty state is the explicit behavior under test.
|
|
16
|
-
- Do not design tests that assert mock existence, placeholder labels, page-load only, or mocked component behavior as story proof.
|
|
17
|
-
- When mocks are unavoidable, specify the real side effects that must be preserved and require complete real-shaped mock data, not partial fields needed only by the immediate assertion.
|
|
18
|
-
- Do not add or require test-only production methods. Put cleanup/lifecycle helpers in test utilities unless the production class genuinely owns that lifecycle.
|
|
19
|
-
- If the story touches UI business controls, include a ledger-oriented test plan: route/control, category, expected behavior source, required proof, test id, and any assumption that needs user/product review.
|
|
20
13
|
|
|
21
14
|
## Critical: Runtime Contract Ports
|
|
22
15
|
|
|
@@ -1,24 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "devflow-engine"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.1.1"
|
|
4
4
|
description = "DevFlow v2 CLI-first engine (projects, stories, execution store, review packets)"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
7
7
|
authors = [{ name = "DevFlow" }]
|
|
8
8
|
license = { text = "Proprietary" }
|
|
9
|
-
keywords = ["devflow", "cli", "agentic", "workflow", "testing", "automation"]
|
|
10
|
-
classifiers = [
|
|
11
|
-
"Development Status :: 5 - Production/Stable",
|
|
12
|
-
"Environment :: Console",
|
|
13
|
-
"Intended Audience :: Developers",
|
|
14
|
-
"License :: Other/Proprietary License",
|
|
15
|
-
"Operating System :: OS Independent",
|
|
16
|
-
"Programming Language :: Python :: 3",
|
|
17
|
-
"Programming Language :: Python :: 3.11",
|
|
18
|
-
"Programming Language :: Python :: 3.12",
|
|
19
|
-
"Topic :: Software Development",
|
|
20
|
-
"Topic :: Software Development :: Build Tools",
|
|
21
|
-
]
|
|
22
9
|
|
|
23
10
|
dependencies = [
|
|
24
11
|
"cryptography>=45.0",
|
|
@@ -28,11 +15,6 @@ dependencies = [
|
|
|
28
15
|
"PyYAML>=6.0",
|
|
29
16
|
]
|
|
30
17
|
|
|
31
|
-
[project.urls]
|
|
32
|
-
Homepage = "https://github.com/Nuosis/devflow_engine"
|
|
33
|
-
Repository = "https://github.com/Nuosis/devflow_engine"
|
|
34
|
-
Issues = "https://github.com/Nuosis/devflow_engine/issues"
|
|
35
|
-
|
|
36
18
|
[dependency-groups]
|
|
37
19
|
dev = [
|
|
38
20
|
"pytest>=8.0",
|
|
@@ -51,7 +33,13 @@ build-backend = "hatchling.build"
|
|
|
51
33
|
|
|
52
34
|
[tool.hatch.build.targets.wheel]
|
|
53
35
|
packages = ["src/devflow_engine", "src/devin"]
|
|
54
|
-
|
|
36
|
+
|
|
37
|
+
# Bundle the repo-root `prompts/` directory inside the wheel at
|
|
38
|
+
# devflow_engine/prompts/. agentic_prompts._PROMPTS_ROOT prefers the
|
|
39
|
+
# package-local copy when it exists (installed mode) and falls back
|
|
40
|
+
# to the repo-root copy (editable / dev mode).
|
|
41
|
+
[tool.hatch.build.targets.wheel.force-include]
|
|
42
|
+
"prompts" = "devflow_engine/prompts"
|
|
55
43
|
|
|
56
44
|
[tool.ruff]
|
|
57
45
|
line-length = 120
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
from importlib.resources import files
|
|
4
3
|
from pathlib import Path
|
|
5
|
-
from typing import Any
|
|
6
4
|
|
|
5
|
+
|
|
6
|
+
# Prefer the package-local prompts dir (bundled into the wheel by
|
|
7
|
+
# hatch's force-include) so installed users find them; fall back to
|
|
8
|
+
# the repo-root copy for editable / dev installs where this file
|
|
9
|
+
# lives at <repo>/src/devflow_engine/agentic_prompts.py.
|
|
7
10
|
_REPO_ROOT = Path(__file__).resolve().parents[2]
|
|
8
|
-
|
|
11
|
+
_PACKAGE_PROMPTS_ROOT = Path(__file__).resolve().parent / "prompts"
|
|
12
|
+
_PROMPTS_ROOT = _PACKAGE_PROMPTS_ROOT if _PACKAGE_PROMPTS_ROOT.is_dir() else (_REPO_ROOT / "prompts")
|
|
9
13
|
|
|
10
14
|
_PROMPT_LAYOUT: dict[str, tuple[str, str]] = {
|
|
11
15
|
"idea_response_doctrine": ("idea", "response_doctrine"),
|
|
@@ -55,25 +59,11 @@ def agentic_prompt_path(prompt_name: str) -> Path:
|
|
|
55
59
|
group, agent_name = _PROMPT_LAYOUT[prompt_name]
|
|
56
60
|
except KeyError as exc:
|
|
57
61
|
raise KeyError(f"Unknown agentic prompt mapping: {prompt_name}") from exc
|
|
58
|
-
|
|
59
|
-
if source_path.exists():
|
|
60
|
-
return source_path
|
|
61
|
-
return Path(str(_packaged_prompts_root().joinpath(group, agent_name, "prompt.md")))
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
def _packaged_prompts_root() -> Any:
|
|
65
|
-
return files("devflow_engine").joinpath("prompts")
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
def _prompt_text(path: Path) -> str:
|
|
69
|
-
if path.exists():
|
|
70
|
-
return path.read_text(encoding="utf-8").strip()
|
|
71
|
-
package_path = _packaged_prompts_root().joinpath(*path.parts[-3:])
|
|
72
|
-
return package_path.read_text(encoding="utf-8").strip()
|
|
62
|
+
return _PROMPTS_ROOT / group / agent_name / "prompt.md"
|
|
73
63
|
|
|
74
64
|
|
|
75
65
|
def load_agentic_prompt_markdown(prompt_name: str) -> str:
|
|
76
|
-
return
|
|
66
|
+
return agentic_prompt_path(prompt_name).read_text(encoding="utf-8").strip()
|
|
77
67
|
|
|
78
68
|
|
|
79
69
|
def load_agentic_prompt_lines(prompt_name: str) -> list[str]:
|