devflow-engine 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- devflow_engine/__init__.py +3 -0
- devflow_engine/agentic_prompts.py +100 -0
- devflow_engine/agentic_runtime.py +398 -0
- devflow_engine/api_key_flow_harness.py +539 -0
- devflow_engine/api_keys.py +357 -0
- devflow_engine/bootstrap/__init__.py +2 -0
- devflow_engine/bootstrap/provision_from_template.py +84 -0
- devflow_engine/cli/__init__.py +0 -0
- devflow_engine/cli/app.py +7270 -0
- devflow_engine/core/__init__.py +0 -0
- devflow_engine/core/config.py +86 -0
- devflow_engine/core/logging.py +29 -0
- devflow_engine/core/paths.py +45 -0
- devflow_engine/core/toml_kv.py +33 -0
- devflow_engine/devflow_event_worker.py +1292 -0
- devflow_engine/devflow_state.py +201 -0
- devflow_engine/devin2/__init__.py +9 -0
- devflow_engine/devin2/agent_definition.py +120 -0
- devflow_engine/devin2/pi_runner.py +204 -0
- devflow_engine/devin_orchestration.py +69 -0
- devflow_engine/docs/prompts/anti-patterns.md +42 -0
- devflow_engine/docs/prompts/devin-agent-prompt.md +55 -0
- devflow_engine/docs/prompts/devin2-agent-prompt.md +81 -0
- devflow_engine/docs/prompts/examples/devin-vapi-clone-reference-exchange.json +85 -0
- devflow_engine/doctor/__init__.py +2 -0
- devflow_engine/doctor/triage.py +140 -0
- devflow_engine/error/__init__.py +0 -0
- devflow_engine/error/remediation.py +21 -0
- devflow_engine/errors/error_solver_dag.py +522 -0
- devflow_engine/errors/runtime_observability.py +67 -0
- devflow_engine/idea/__init__.py +4 -0
- devflow_engine/idea/actors.py +481 -0
- devflow_engine/idea/agentic.py +465 -0
- devflow_engine/idea/analyze.py +93 -0
- devflow_engine/idea/devin_chat_dag.py +1 -0
- devflow_engine/idea/diff.py +99 -0
- devflow_engine/idea/drafts.py +446 -0
- devflow_engine/idea/idea_creation_dag.py +643 -0
- devflow_engine/idea/ideation_enrichment.py +355 -0
- devflow_engine/idea/ideation_enrichment_worker.py +19 -0
- devflow_engine/idea/paths.py +28 -0
- devflow_engine/idea/promote.py +53 -0
- devflow_engine/idea/redaction.py +27 -0
- devflow_engine/idea/repo_tools.py +1277 -0
- devflow_engine/idea/response_mode.py +30 -0
- devflow_engine/idea/story_pipeline.py +1585 -0
- devflow_engine/idea/sufficiency.py +376 -0
- devflow_engine/idea/traditional_stories.py +1257 -0
- devflow_engine/implementation/__init__.py +0 -0
- devflow_engine/implementation/alembic_preflight.py +700 -0
- devflow_engine/implementation/dag.py +8450 -0
- devflow_engine/implementation/green_gate.py +93 -0
- devflow_engine/implementation/prompts.py +108 -0
- devflow_engine/implementation/test_runtime.py +623 -0
- devflow_engine/integration/__init__.py +19 -0
- devflow_engine/integration/agentic.py +66 -0
- devflow_engine/integration/dag.py +3539 -0
- devflow_engine/integration/prompts.py +114 -0
- devflow_engine/integration/supabase_schema.sql +31 -0
- devflow_engine/integration/supabase_sync.py +177 -0
- devflow_engine/llm/__init__.py +1 -0
- devflow_engine/llm/cli_one_shot.py +84 -0
- devflow_engine/llm/cli_stream.py +371 -0
- devflow_engine/llm/execution_context.py +26 -0
- devflow_engine/llm/invoke.py +1322 -0
- devflow_engine/llm/provider_api.py +304 -0
- devflow_engine/llm/repo_knowledge.py +588 -0
- devflow_engine/llm_primitives.py +315 -0
- devflow_engine/orchestration.py +62 -0
- devflow_engine/planning/__init__.py +0 -0
- devflow_engine/planning/analyze_repo.py +92 -0
- devflow_engine/planning/render_drafts.py +133 -0
- devflow_engine/playground/__init__.py +0 -0
- devflow_engine/playground/hooks.py +26 -0
- devflow_engine/playwright_workflow/__init__.py +5 -0
- devflow_engine/playwright_workflow/dag.py +1317 -0
- devflow_engine/process/__init__.py +5 -0
- devflow_engine/process/dag.py +59 -0
- devflow_engine/project_registration/__init__.py +3 -0
- devflow_engine/project_registration/dag.py +1581 -0
- devflow_engine/project_registry.py +109 -0
- devflow_engine/prompts/devin/generic/prompt.md +6 -0
- devflow_engine/prompts/devin/ideation/prompt.md +263 -0
- devflow_engine/prompts/devin/ideation/scenarios.md +5 -0
- devflow_engine/prompts/devin/ideation_loop/prompt.md +6 -0
- devflow_engine/prompts/devin/insight/prompt.md +11 -0
- devflow_engine/prompts/devin/insight/scenarios.md +5 -0
- devflow_engine/prompts/devin/intake/prompt.md +15 -0
- devflow_engine/prompts/devin/iterate/prompt.md +12 -0
- devflow_engine/prompts/devin/shared/eval_doctrine.md +9 -0
- devflow_engine/prompts/devin/shared/principles.md +246 -0
- devflow_engine/prompts/devin_eval/assessment/prompt.md +18 -0
- devflow_engine/prompts/idea/api_ideation_agent/prompt.md +8 -0
- devflow_engine/prompts/idea/api_insight_agent/prompt.md +8 -0
- devflow_engine/prompts/idea/response_doctrine/prompt.md +18 -0
- devflow_engine/prompts/implementation/dependency_assessment/prompt.md +12 -0
- devflow_engine/prompts/implementation/green/green/prompt.md +11 -0
- devflow_engine/prompts/implementation/green/node_config/prompt.md +3 -0
- devflow_engine/prompts/implementation/green_review/outcome_review/prompt.md +5 -0
- devflow_engine/prompts/implementation/green_review/prior_run_review/prompt.md +5 -0
- devflow_engine/prompts/implementation/red/prompt.md +27 -0
- devflow_engine/prompts/implementation/redreview/prompt.md +23 -0
- devflow_engine/prompts/implementation/redreview_repair/prompt.md +16 -0
- devflow_engine/prompts/implementation/setupdoc/prompt.md +10 -0
- devflow_engine/prompts/implementation/story_planning/prompt.md +13 -0
- devflow_engine/prompts/implementation/test_design/prompt.md +27 -0
- devflow_engine/prompts/integration/README.md +185 -0
- devflow_engine/prompts/integration/green/example.md +67 -0
- devflow_engine/prompts/integration/green/green/prompt.md +10 -0
- devflow_engine/prompts/integration/green/node_config/prompt.md +42 -0
- devflow_engine/prompts/integration/green/past_prompts/20260417T212300/green/prompt.md +15 -0
- devflow_engine/prompts/integration/green/past_prompts/20260417T212300/node_config/prompt.md +42 -0
- devflow_engine/prompts/integration/green_enrich/example.md +79 -0
- devflow_engine/prompts/integration/green_enrich/green_enrich/prompt.md +9 -0
- devflow_engine/prompts/integration/green_enrich/node_config/prompt.md +41 -0
- devflow_engine/prompts/integration/green_enrich/past_prompts/20260417T212300/green_enrich/prompt.md +14 -0
- devflow_engine/prompts/integration/green_enrich/past_prompts/20260417T212300/node_config/prompt.md +41 -0
- devflow_engine/prompts/integration/red/code_repair/prompt.md +12 -0
- devflow_engine/prompts/integration/red/example.md +152 -0
- devflow_engine/prompts/integration/red/node_config/prompt.md +86 -0
- devflow_engine/prompts/integration/red/past_prompts/20260417T212300/code_repair/prompt.md +19 -0
- devflow_engine/prompts/integration/red/past_prompts/20260417T212300/node_config/prompt.md +84 -0
- devflow_engine/prompts/integration/red/past_prompts/20260417T212300/red/prompt.md +16 -0
- devflow_engine/prompts/integration/red/past_prompts/20260417T212300/red_repair/prompt.md +15 -0
- devflow_engine/prompts/integration/red/past_prompts/20260417T215032/code_repair/prompt.md +10 -0
- devflow_engine/prompts/integration/red/past_prompts/20260417T215032/node_config/prompt.md +84 -0
- devflow_engine/prompts/integration/red/past_prompts/20260417T215032/red_repair/prompt.md +11 -0
- devflow_engine/prompts/integration/red/red/prompt.md +11 -0
- devflow_engine/prompts/integration/red/red_repair/prompt.md +12 -0
- devflow_engine/prompts/integration/red_review/example.md +71 -0
- devflow_engine/prompts/integration/red_review/node_config/prompt.md +41 -0
- devflow_engine/prompts/integration/red_review/past_prompts/20260417T212300/node_config/prompt.md +41 -0
- devflow_engine/prompts/integration/red_review/past_prompts/20260417T212300/red_review/prompt.md +15 -0
- devflow_engine/prompts/integration/red_review/red_review/prompt.md +9 -0
- devflow_engine/prompts/integration/resolve/example.md +111 -0
- devflow_engine/prompts/integration/resolve/node_config/prompt.md +64 -0
- devflow_engine/prompts/integration/resolve/past_prompts/20260417T212300/node_config/prompt.md +64 -0
- devflow_engine/prompts/integration/resolve/past_prompts/20260417T212300/resolve_implicated_users/prompt.md +15 -0
- devflow_engine/prompts/integration/resolve/past_prompts/20260417T212300/resolve_side_effects/prompt.md +15 -0
- devflow_engine/prompts/integration/resolve/resolve_implicated_users/prompt.md +10 -0
- devflow_engine/prompts/integration/resolve/resolve_side_effects/prompt.md +10 -0
- devflow_engine/prompts/integration/validate/build_idea_acceptance_coverage/prompt.md +12 -0
- devflow_engine/prompts/integration/validate/code_repair/prompt.md +13 -0
- devflow_engine/prompts/integration/validate/example.md +143 -0
- devflow_engine/prompts/integration/validate/node_config/prompt.md +87 -0
- devflow_engine/prompts/integration/validate/past_prompts/20260417T212300/code_repair/prompt.md +19 -0
- devflow_engine/prompts/integration/validate/past_prompts/20260417T212300/node_config/prompt.md +67 -0
- devflow_engine/prompts/integration/validate/past_prompts/20260417T212300/validate_enrich_gate/prompt.md +17 -0
- devflow_engine/prompts/integration/validate/past_prompts/20260417T212300/validate_repair/prompt.md +16 -0
- devflow_engine/prompts/integration/validate/past_prompts/20260417T215032/code_repair/prompt.md +10 -0
- devflow_engine/prompts/integration/validate/past_prompts/20260417T215032/node_config/prompt.md +67 -0
- devflow_engine/prompts/integration/validate/past_prompts/20260417T215032/validate_repair/prompt.md +9 -0
- devflow_engine/prompts/integration/validate/validate_enrich_gate/prompt.md +10 -0
- devflow_engine/prompts/integration/validate/validate_repair/prompt.md +20 -0
- devflow_engine/prompts/integration/write_workflows/example.md +100 -0
- devflow_engine/prompts/integration/write_workflows/node_config/prompt.md +44 -0
- devflow_engine/prompts/integration/write_workflows/past_prompts/20260417T212300/node_config/prompt.md +44 -0
- devflow_engine/prompts/integration/write_workflows/past_prompts/20260417T212300/write_workflows/prompt.md +17 -0
- devflow_engine/prompts/integration/write_workflows/write_workflows/prompt.md +11 -0
- devflow_engine/prompts/iterate/README.md +7 -0
- devflow_engine/prompts/iterate/coder/prompt.md +11 -0
- devflow_engine/prompts/iterate/framer/prompt.md +11 -0
- devflow_engine/prompts/iterate/iterator/prompt.md +13 -0
- devflow_engine/prompts/iterate/observer/prompt.md +11 -0
- devflow_engine/prompts/recovery/diagnosis/prompt.md +7 -0
- devflow_engine/prompts/recovery/execution/prompt.md +8 -0
- devflow_engine/prompts/recovery/execution_verification/prompt.md +7 -0
- devflow_engine/prompts/recovery/failure_investigation/prompt.md +10 -0
- devflow_engine/prompts/recovery/preflight_health_repo_repair/prompt.md +8 -0
- devflow_engine/prompts/recovery/remediation_execution/prompt.md +11 -0
- devflow_engine/prompts/recovery/root_cause_investigation/prompt.md +12 -0
- devflow_engine/prompts/scope_idea/doctrine/prompt.md +7 -0
- devflow_engine/prompts/source_doc_eval/document/prompt.md +6 -0
- devflow_engine/prompts/source_doc_eval/targeted_mutation/prompt.md +9 -0
- devflow_engine/prompts/source_doc_mutation/domain_entities/prompt.md +6 -0
- devflow_engine/prompts/source_doc_mutation/product_brief/prompt.md +6 -0
- devflow_engine/prompts/source_doc_mutation/project_doc_coherence/prompt.md +7 -0
- devflow_engine/prompts/source_doc_mutation/project_doc_render/prompt.md +9 -0
- devflow_engine/prompts/source_doc_mutation/source_doc_coherence/prompt.md +5 -0
- devflow_engine/prompts/source_doc_mutation/source_doc_enrichment_coherence/prompt.md +6 -0
- devflow_engine/prompts/source_doc_mutation/user_workflows/prompt.md +6 -0
- devflow_engine/prompts/source_scope/doctrine/prompt.md +10 -0
- devflow_engine/prompts/ui_grounding/doctrine/prompt.md +7 -0
- devflow_engine/recovery/__init__.py +3 -0
- devflow_engine/recovery/dag.py +2609 -0
- devflow_engine/recovery/models.py +220 -0
- devflow_engine/refactor.py +93 -0
- devflow_engine/registry/__init__.py +1 -0
- devflow_engine/registry/cards.py +238 -0
- devflow_engine/registry/domain_normalize.py +60 -0
- devflow_engine/registry/effects.py +65 -0
- devflow_engine/registry/enforce_report.py +150 -0
- devflow_engine/registry/module_cards_classify.py +164 -0
- devflow_engine/registry/module_cards_draft.py +184 -0
- devflow_engine/registry/module_cards_gate.py +59 -0
- devflow_engine/registry/packages.py +347 -0
- devflow_engine/registry/pathways.py +323 -0
- devflow_engine/review/__init__.py +11 -0
- devflow_engine/review/dag.py +588 -0
- devflow_engine/review/review_story.py +67 -0
- devflow_engine/scope_idea/__init__.py +3 -0
- devflow_engine/scope_idea/agentic.py +39 -0
- devflow_engine/scope_idea/dag.py +1069 -0
- devflow_engine/scope_idea/models.py +175 -0
- devflow_engine/skills/builtins/devflow/queue_failure_investigation/SKILL.md +112 -0
- devflow_engine/skills/builtins/devflow/queue_idea_to_story/SKILL.md +120 -0
- devflow_engine/skills/builtins/devflow/queue_integration/SKILL.md +105 -0
- devflow_engine/skills/builtins/devflow/queue_recovery/SKILL.md +108 -0
- devflow_engine/skills/builtins/devflow/queue_runtime_core/SKILL.md +155 -0
- devflow_engine/skills/builtins/devflow/queue_story_implementation/SKILL.md +122 -0
- devflow_engine/skills/builtins/devin/idea_to_story_handoff/SKILL.md +120 -0
- devflow_engine/skills/builtins/devin/ideation/SKILL.md +168 -0
- devflow_engine/skills/builtins/devin/ideation/state-and-phrasing-reference.md +18 -0
- devflow_engine/skills/builtins/devin/insight/SKILL.md +22 -0
- devflow_engine/skills/registry.example.yaml +42 -0
- devflow_engine/source_doc_assumptions.py +291 -0
- devflow_engine/source_doc_mutation_dag.py +1606 -0
- devflow_engine/source_doc_mutation_eval.py +417 -0
- devflow_engine/source_doc_mutation_worker.py +25 -0
- devflow_engine/source_docs_schema.py +207 -0
- devflow_engine/source_docs_updater.py +309 -0
- devflow_engine/source_scope/__init__.py +15 -0
- devflow_engine/source_scope/agentic.py +45 -0
- devflow_engine/source_scope/dag.py +1626 -0
- devflow_engine/source_scope/models.py +177 -0
- devflow_engine/stores/__init__.py +0 -0
- devflow_engine/stores/execution_store.py +3534 -0
- devflow_engine/story/__init__.py +0 -0
- devflow_engine/story/contracts.py +160 -0
- devflow_engine/story/discovery.py +47 -0
- devflow_engine/story/evidence.py +118 -0
- devflow_engine/story/hashing.py +27 -0
- devflow_engine/story/implemented_queue_purge.py +148 -0
- devflow_engine/story/indexer.py +105 -0
- devflow_engine/story/io.py +20 -0
- devflow_engine/story/markdown_contracts.py +298 -0
- devflow_engine/story/reconciliation.py +408 -0
- devflow_engine/story/validate_stories.py +149 -0
- devflow_engine/story/validate_tests_story.py +512 -0
- devflow_engine/story/validation.py +133 -0
- devflow_engine/ui_grounding/__init__.py +11 -0
- devflow_engine/ui_grounding/agentic.py +31 -0
- devflow_engine/ui_grounding/dag.py +874 -0
- devflow_engine/ui_grounding/models.py +224 -0
- devflow_engine/ui_grounding/pencil_bridge.py +247 -0
- devflow_engine/vendor/__init__.py +0 -0
- devflow_engine/vendor/datalumina_genai/__init__.py +11 -0
- devflow_engine/vendor/datalumina_genai/core/__init__.py +0 -0
- devflow_engine/vendor/datalumina_genai/core/exceptions.py +9 -0
- devflow_engine/vendor/datalumina_genai/core/nodes/__init__.py +0 -0
- devflow_engine/vendor/datalumina_genai/core/nodes/agent.py +48 -0
- devflow_engine/vendor/datalumina_genai/core/nodes/agent_streaming_node.py +26 -0
- devflow_engine/vendor/datalumina_genai/core/nodes/base.py +89 -0
- devflow_engine/vendor/datalumina_genai/core/nodes/concurrent.py +30 -0
- devflow_engine/vendor/datalumina_genai/core/nodes/router.py +69 -0
- devflow_engine/vendor/datalumina_genai/core/schema.py +72 -0
- devflow_engine/vendor/datalumina_genai/core/task.py +52 -0
- devflow_engine/vendor/datalumina_genai/core/validate.py +139 -0
- devflow_engine/vendor/datalumina_genai/core/workflow.py +200 -0
- devflow_engine/worker.py +1086 -0
- devflow_engine/worker_guard.py +233 -0
- devflow_engine-1.0.0.dist-info/METADATA +235 -0
- devflow_engine-1.0.0.dist-info/RECORD +393 -0
- devflow_engine-1.0.0.dist-info/WHEEL +4 -0
- devflow_engine-1.0.0.dist-info/entry_points.txt +3 -0
- devin/__init__.py +6 -0
- devin/dag.py +58 -0
- devin/dag_two_arm.py +138 -0
- devin/devin_chat_scenario_catalog.json +588 -0
- devin/devin_eval.py +677 -0
- devin/nodes/__init__.py +0 -0
- devin/nodes/ideation/__init__.py +0 -0
- devin/nodes/ideation/node.py +195 -0
- devin/nodes/ideation/playground.py +267 -0
- devin/nodes/ideation/prompt.md +65 -0
- devin/nodes/ideation/scenarios/continue_refinement.py +13 -0
- devin/nodes/ideation/scenarios/continue_refinement_evals.py +18 -0
- devin/nodes/ideation/scenarios/idea_fits_existing_patterns.py +17 -0
- devin/nodes/ideation/scenarios/idea_fits_existing_patterns_evals.py +16 -0
- devin/nodes/ideation/scenarios/large_idea_split.py +4 -0
- devin/nodes/ideation/scenarios/large_idea_split_evals.py +17 -0
- devin/nodes/ideation/scenarios/source_documentation_added.py +4 -0
- devin/nodes/ideation/scenarios/source_documentation_added_evals.py +16 -0
- devin/nodes/ideation/scenarios/user_says_create_it.py +30 -0
- devin/nodes/ideation/scenarios/user_says_create_it_evals.py +23 -0
- devin/nodes/ideation/scenarios/vague_idea.py +16 -0
- devin/nodes/ideation/scenarios/vague_idea_evals.py +47 -0
- devin/nodes/ideation/tools.json +312 -0
- devin/nodes/insight/__init__.py +0 -0
- devin/nodes/insight/node.py +49 -0
- devin/nodes/insight/playground.py +154 -0
- devin/nodes/insight/prompt.md +61 -0
- devin/nodes/insight/scenarios/architecture_pattern_query.py +15 -0
- devin/nodes/insight/scenarios/architecture_pattern_query_evals.py +25 -0
- devin/nodes/insight/scenarios/codebase_exploration.py +15 -0
- devin/nodes/insight/scenarios/codebase_exploration_evals.py +23 -0
- devin/nodes/insight/scenarios/devin_ideation_routing.py +19 -0
- devin/nodes/insight/scenarios/devin_ideation_routing_evals.py +39 -0
- devin/nodes/insight/scenarios/devin_insight_routing.py +20 -0
- devin/nodes/insight/scenarios/devin_insight_routing_evals.py +40 -0
- devin/nodes/insight/scenarios/operational_debugging.py +15 -0
- devin/nodes/insight/scenarios/operational_debugging_evals.py +23 -0
- devin/nodes/insight/scenarios/operational_question.py +9 -0
- devin/nodes/insight/scenarios/operational_question_evals.py +8 -0
- devin/nodes/insight/scenarios/queue_status.py +15 -0
- devin/nodes/insight/scenarios/queue_status_evals.py +23 -0
- devin/nodes/insight/scenarios/source_doc_explanation.py +14 -0
- devin/nodes/insight/scenarios/source_doc_explanation_evals.py +21 -0
- devin/nodes/insight/scenarios/worker_state_check.py +15 -0
- devin/nodes/insight/scenarios/worker_state_check_evals.py +22 -0
- devin/nodes/insight/tools.json +126 -0
- devin/nodes/intake/__init__.py +0 -0
- devin/nodes/intake/node.py +27 -0
- devin/nodes/intake/playground.py +47 -0
- devin/nodes/intake/prompt.md +12 -0
- devin/nodes/intake/scenarios/ideation_routing.py +4 -0
- devin/nodes/intake/scenarios/ideation_routing_evals.py +5 -0
- devin/nodes/intake/scenarios/insight_routing.py +4 -0
- devin/nodes/intake/scenarios/insight_routing_evals.py +5 -0
- devin/nodes/iterate/README.md +44 -0
- devin/nodes/iterate/__init__.py +1 -0
- devin/nodes/iterate/_archived_design_stages/01-objectives-requirements.md +112 -0
- devin/nodes/iterate/_archived_design_stages/02-evals.md +131 -0
- devin/nodes/iterate/_archived_design_stages/03-tools-and-boundaries.md +110 -0
- devin/nodes/iterate/_archived_design_stages/04-harness-and-playground.md +32 -0
- devin/nodes/iterate/_archived_design_stages/05-prompt-deferred.md +11 -0
- devin/nodes/iterate/_archived_design_stages/coder_agent_design/01-objectives-requirements.md +20 -0
- devin/nodes/iterate/_archived_design_stages/coder_agent_design/02-evals.md +8 -0
- devin/nodes/iterate/_archived_design_stages/coder_agent_design/03-tools-and-boundaries.md +14 -0
- devin/nodes/iterate/_archived_design_stages/coder_agent_design/04-harness-and-playground.md +12 -0
- devin/nodes/iterate/_archived_design_stages/framer_agent_design/01-objectives-requirements.md +20 -0
- devin/nodes/iterate/_archived_design_stages/framer_agent_design/02-evals.md +8 -0
- devin/nodes/iterate/_archived_design_stages/framer_agent_design/03-tools-and-boundaries.md +13 -0
- devin/nodes/iterate/_archived_design_stages/framer_agent_design/04-harness-and-playground.md +12 -0
- devin/nodes/iterate/_archived_design_stages/iterator_agent_design/01-objectives-requirements.md +25 -0
- devin/nodes/iterate/_archived_design_stages/iterator_agent_design/02-evals.md +9 -0
- devin/nodes/iterate/_archived_design_stages/iterator_agent_design/03-tools-and-boundaries.md +14 -0
- devin/nodes/iterate/_archived_design_stages/iterator_agent_design/04-harness-and-playground.md +12 -0
- devin/nodes/iterate/_archived_design_stages/observer_agent_design/01-objectives-requirements.md +20 -0
- devin/nodes/iterate/_archived_design_stages/observer_agent_design/02-evals.md +8 -0
- devin/nodes/iterate/_archived_design_stages/observer_agent_design/03-tools-and-boundaries.md +14 -0
- devin/nodes/iterate/_archived_design_stages/observer_agent_design/04-harness-and-playground.md +13 -0
- devin/nodes/iterate/agent-roles.md +89 -0
- devin/nodes/iterate/agents/README.md +10 -0
- devin/nodes/iterate/artifacts.md +504 -0
- devin/nodes/iterate/contract.md +100 -0
- devin/nodes/iterate/eval-plan.md +74 -0
- devin/nodes/iterate/node.py +100 -0
- devin/nodes/iterate/pipeline/README.md +13 -0
- devin/nodes/iterate/playground-contract.md +76 -0
- devin/nodes/iterate/prompt.md +11 -0
- devin/nodes/iterate/scenarios/README.md +38 -0
- devin/nodes/iterate/scenarios/artifact-and-loop-scenarios.md +101 -0
- devin/nodes/iterate/scenarios/coder_artifact_alignment.py +32 -0
- devin/nodes/iterate/scenarios/coder_artifact_alignment_evals.py +45 -0
- devin/nodes/iterate/scenarios/coder_bounded_fix.py +27 -0
- devin/nodes/iterate/scenarios/coder_bounded_fix_evals.py +45 -0
- devin/nodes/iterate/scenarios/devin_iterate_routing.py +21 -0
- devin/nodes/iterate/scenarios/devin_iterate_routing_evals.py +36 -0
- devin/nodes/iterate/scenarios/framer_scope_boundary.py +25 -0
- devin/nodes/iterate/scenarios/framer_scope_boundary_evals.py +57 -0
- devin/nodes/iterate/scenarios/framer_task_framing.py +25 -0
- devin/nodes/iterate/scenarios/framer_task_framing_evals.py +58 -0
- devin/nodes/iterate/scenarios/iterate_error_fix.py +21 -0
- devin/nodes/iterate/scenarios/iterate_error_fix_evals.py +39 -0
- devin/nodes/iterate/scenarios/iterate_quick_change.py +21 -0
- devin/nodes/iterate/scenarios/iterate_quick_change_evals.py +35 -0
- devin/nodes/iterate/scenarios/iterate_to_idea_promotion.py +23 -0
- devin/nodes/iterate/scenarios/iterate_to_idea_promotion_evals.py +53 -0
- devin/nodes/iterate/scenarios/iterate_to_insight_reroute.py +23 -0
- devin/nodes/iterate/scenarios/iterate_to_insight_reroute_evals.py +53 -0
- devin/nodes/iterate/scenarios/observer_evidence_seam.py +28 -0
- devin/nodes/iterate/scenarios/observer_evidence_seam_evals.py +55 -0
- devin/nodes/iterate/scenarios/observer_repro_creation.py +28 -0
- devin/nodes/iterate/scenarios/observer_repro_creation_evals.py +45 -0
- devin/nodes/iterate/scenarios/routing-matrix.md +45 -0
- devin/nodes/shared/__init__.py +0 -0
- devin/nodes/shared/filemaker_expert.md +80 -0
- devin/nodes/shared/filemaker_expert.py +354 -0
- devin/nodes/shared/filemaker_expert_eval/runner.py +176 -0
- devin/nodes/shared/filemaker_expert_eval/scenarios.json +65 -0
- devin/nodes/shared/goldilocks_advisor_eval/runner.py +214 -0
- devin/nodes/shared/goldilocks_advisor_eval/scenarios.json +58 -0
- devin/nodes/shared/helpers.py +156 -0
- devin/nodes/shared/idea_compliance_advisor_eval/runner.py +252 -0
- devin/nodes/shared/idea_compliance_advisor_eval/scenarios.json +75 -0
- devin/nodes/shared/models.py +44 -0
- devin/nodes/shared/post.py +40 -0
- devin/nodes/shared/router.py +107 -0
- devin/nodes/shared/tools.py +191 -0
- devin/shared/devin-chat-rubric.md +237 -0
- devin/shared/devin-chat-scenario-suite.md +90 -0
- devin/shared/eval_doctrine.md +9 -0
|
@@ -0,0 +1,393 @@
|
|
|
1
|
+
devflow_engine/__init__.py,sha256=0O9CBUA6O0yApJRqVo96wVf8swU_JDuTRRx987Wg1XI,49
|
|
2
|
+
devflow_engine/agentic_prompts.py,sha256=ZaNAIIPpAoGPr_EVSCud1DmnMHd7NlVixAJsLZRTuCU,4568
|
|
3
|
+
devflow_engine/agentic_runtime.py,sha256=omfRST0LB6jvULs6ItavtOnqhWI1ZujzWfYqpe57-yI,13912
|
|
4
|
+
devflow_engine/api_key_flow_harness.py,sha256=LBvibkcgTcTWCgsesvkHXZ2t902iicOab_FlH-Qzdy4,21468
|
|
5
|
+
devflow_engine/api_keys.py,sha256=7vjWVCm7IkxeBndycvQ3bzVtMd-JcJd9yt0tzqZpa38,14765
|
|
6
|
+
devflow_engine/devflow_event_worker.py,sha256=5WokhHPsYxdG9bzlBqOmGAze47xPBurjHA6EB805jgY,56665
|
|
7
|
+
devflow_engine/devflow_state.py,sha256=gOwNvXI03OGkUxNhU4p2eBG-oYpZQrc0MDMsMkLoG_4,6664
|
|
8
|
+
devflow_engine/devin_orchestration.py,sha256=CDa0RofAlz2Xj8X15EebfH5Pf7ljW0FCW1tuRif2MPI,2662
|
|
9
|
+
devflow_engine/llm_primitives.py,sha256=VyfFFAQwQQGwb3mfoE9S3H56XtCxY4sp-gBOfFmf5lE,14042
|
|
10
|
+
devflow_engine/orchestration.py,sha256=piFPMYHoRZ2IoCz1P4ak6jUynkkw1uLzfJTkGpU31V4,2282
|
|
11
|
+
devflow_engine/project_registry.py,sha256=X-kxBNWj375NxTMlnu8aBvwGZOe7dzQqvQNO9HjiIzE,3736
|
|
12
|
+
devflow_engine/refactor.py,sha256=-2wTLypd0rsXXiEGQWYPnwLnCkoDMGr2eCX_eaxHaKc,3411
|
|
13
|
+
devflow_engine/source_doc_assumptions.py,sha256=-ml2zVmhgCag9VncR2TdBTtGdVfepx8ylKmT9khP3Lg,10840
|
|
14
|
+
devflow_engine/source_doc_mutation_dag.py,sha256=HeYuWO1x-DxOmdh80n4oDzuSTqWdVuD8qtp9gdOW7oo,107909
|
|
15
|
+
devflow_engine/source_doc_mutation_eval.py,sha256=UBdlZvuHUUTWvYyuYb4v8ww2w-AkoBaldX0gCH6EHhQ,19064
|
|
16
|
+
devflow_engine/source_doc_mutation_worker.py,sha256=Pegmvcq1QorcnlZO-t1bphKoaif7EAhrpF7gIsD4tgs,864
|
|
17
|
+
devflow_engine/source_docs_schema.py,sha256=uhdvsFLdTfKRl0dPFpM0D0vPoAGm6kNBMb6qkY5WEFs,9653
|
|
18
|
+
devflow_engine/source_docs_updater.py,sha256=1xXzXQ-t_mrbnYMrjhHC1TmD63gD9S8VKQK8B0t890w,13089
|
|
19
|
+
devflow_engine/worker.py,sha256=PfY1C7q5w8auKCz7F9d8AXn8qfQl38EJDCMc1vRWFc8,54093
|
|
20
|
+
devflow_engine/worker_guard.py,sha256=G-XEVWAbUdRT3cJRIK0ZrrA3hIxd3H5weBln2yEybwk,7415
|
|
21
|
+
devflow_engine/bootstrap/__init__.py,sha256=3914w-tI_3FOHeeV8S7zD7kik_ypPlrgQDTFg6b4VhM,59
|
|
22
|
+
devflow_engine/bootstrap/provision_from_template.py,sha256=FosN2xDwXWSJ_qeA_EJim0zOvBQZdnWHLfbae4HPgDI,2607
|
|
23
|
+
devflow_engine/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
+
devflow_engine/cli/app.py,sha256=id77xDgUqVAVmhHnbHBuoxEsf7np4TrD3RdjifwN8hs,285476
|
|
25
|
+
devflow_engine/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
+
devflow_engine/core/config.py,sha256=eRltmXS6hgSaSQrG6dXHdJDXi1Tr6XlYxybyypcAQEI,2424
|
|
27
|
+
devflow_engine/core/logging.py,sha256=yTewb46k7Y4Xz2p-ifuLeieBW3l9nqwLzLEUOYUNIKY,896
|
|
28
|
+
devflow_engine/core/paths.py,sha256=idMv3KQfk1BJDpb0p1HfFmaetEml3joGDKeLDcvf41Q,1087
|
|
29
|
+
devflow_engine/core/toml_kv.py,sha256=YtZ_k9emtk7g5PxljnM0mC2vB3ztb0eCLmLPhjnXfgs,973
|
|
30
|
+
devflow_engine/devin2/__init__.py,sha256=KWr2pjC7P22Kpj-4DVtMeYdyOFBTC8ZFwMyrMv7422I,262
|
|
31
|
+
devflow_engine/devin2/agent_definition.py,sha256=VxLdoeVB7Dutn7CA77PN0lM9RuaZ-bSrKcWJtf1_hX0,3941
|
|
32
|
+
devflow_engine/devin2/pi_runner.py,sha256=ZOqwzgS-dE86oVZiscSmppFXV6yikarqzR0SXk_xsMI,7410
|
|
33
|
+
devflow_engine/doctor/__init__.py,sha256=jrq5KhE5M9r1qFsUZnEIc6Kf65aUGi0i1Z1b-2XHR1U,38
|
|
34
|
+
devflow_engine/doctor/triage.py,sha256=VwYGBLn59xrMoSWey6tJ-6Nm5cDebhpEqsgQ7IJ86Aw,5688
|
|
35
|
+
devflow_engine/error/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
devflow_engine/error/remediation.py,sha256=Z4LJQzZPzb7_6tea_XtasDvFYQiEdpkFlyxoCEO1I2k,548
|
|
37
|
+
devflow_engine/errors/error_solver_dag.py,sha256=uDNnJfYeY7XzvecAUPUxMrwy5tQRj9DZ7-2cjVUBVZg,21667
|
|
38
|
+
devflow_engine/errors/runtime_observability.py,sha256=K1s1W9xZqpoclOWlrGpM2fn3nPUPmTjyyUzjGDeb7XU,2149
|
|
39
|
+
devflow_engine/idea/__init__.py,sha256=JfzsiXzOqQMhYKM62EB8lwT4R8KQ9fAg_uuCUSFXOBw,133
|
|
40
|
+
devflow_engine/idea/actors.py,sha256=5KfZOpSj2l7OKX_T57AyCKZDqwsf-WqApS99xPJP78Q,21979
|
|
41
|
+
devflow_engine/idea/agentic.py,sha256=4S3rZwQS3fV8yrbvBA2AbCqhZsBvsyQhXZP_p29i19o,17399
|
|
42
|
+
devflow_engine/idea/analyze.py,sha256=XTkpe7758bXVC_6mnBU5922VUd7rIfYzWsoZyCxECbw,2879
|
|
43
|
+
devflow_engine/idea/devin_chat_dag.py,sha256=LIy5Y7yh6ktLS7IsIYf47GohuxWqvK8fHquV8C8x8kg,43
|
|
44
|
+
devflow_engine/idea/diff.py,sha256=E5VS4rjU-lNgPOJZFvVEqBN8hhL3_nCynVNwx359bEM,3020
|
|
45
|
+
devflow_engine/idea/drafts.py,sha256=u0R3MRBuRmH_ZSnCi41VTQEukLA9CxV0jJiOBH8575s,18791
|
|
46
|
+
devflow_engine/idea/idea_creation_dag.py,sha256=apQV79f7KzkYlZAafsbl_SiI8ks0y5UYybKtgwqmTyE,30066
|
|
47
|
+
devflow_engine/idea/ideation_enrichment.py,sha256=sgBjg25q1GtesjTxjLvvI0UWiU1QGioXYOZu5ubAN00,13405
|
|
48
|
+
devflow_engine/idea/ideation_enrichment_worker.py,sha256=V6Tv-3oSUG-1m6OM4JXIqfKYYgrdXHNsP1yRCd-gLRs,612
|
|
49
|
+
devflow_engine/idea/paths.py,sha256=1-hQgCcWYmMoreks6SPc6W6mTik6VsKM2ovMEQWK2Gc,685
|
|
50
|
+
devflow_engine/idea/promote.py,sha256=7K66K6lagrXgsklGBQB5yAIwHrH_FbxPLOXnt_HsTDU,1803
|
|
51
|
+
devflow_engine/idea/redaction.py,sha256=pWZE3X5sBKIiUZ-_LepsCQd8Fij-W0NDoe63MQNR8TE,640
|
|
52
|
+
devflow_engine/idea/repo_tools.py,sha256=AGFjYU56JxqTW-IiFqZ8NgxkYCLV5AwkMymHrWevVGc,49115
|
|
53
|
+
devflow_engine/idea/response_mode.py,sha256=aShwih9kPlFA0KgqDPjEQtDpzVdprOYXQ2yJ7hyf2Io,997
|
|
54
|
+
devflow_engine/idea/story_pipeline.py,sha256=iHkDUg5fP1SDMYhIE-4If-OV1L8RI7mqEATHCwnHRDw,73580
|
|
55
|
+
devflow_engine/idea/sufficiency.py,sha256=X5o1_gNIn9aonfsjFc0JZ5WLTsNjbgfzjVtu79_VQHU,14194
|
|
56
|
+
devflow_engine/idea/traditional_stories.py,sha256=OQsGvLXmPFB0phRW8uDmVsEkBygOy_I3Tnp3Y2v6Wsw,63954
|
|
57
|
+
devflow_engine/implementation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
+
devflow_engine/implementation/alembic_preflight.py,sha256=yu8nT45Zj6dJgO9miM7bP10icmP0QOSqB8N6Y0BqFBs,28088
|
|
59
|
+
devflow_engine/implementation/dag.py,sha256=GIk7jJKT_mc6s77TJOT_9XIn2TWm3JJZsl7jnAeJRVQ,386708
|
|
60
|
+
devflow_engine/implementation/green_gate.py,sha256=0vnLVdTjj2KAfOH2GsSfQJZ7-ObZIFj4I7MyEmqpm2U,3169
|
|
61
|
+
devflow_engine/implementation/prompts.py,sha256=0QS8mZO4VxrHj6jxrqbkcaSptkoJF1LiFLI08WyF-nA,3981
|
|
62
|
+
devflow_engine/implementation/test_runtime.py,sha256=SENHxH7q7QlmM7FZEQ-Ffr72BTh2qUyxOQw8NmsfHKw,23167
|
|
63
|
+
devflow_engine/integration/__init__.py,sha256=v9qTKfYy_8j12N6l9HzJbjXBq1aRoA4F3sMiyspQoio,482
|
|
64
|
+
devflow_engine/integration/agentic.py,sha256=H1o3NP5-Qq0ayTMDUq9ukgglqhJtvQTkHH4se2p8thg,2169
|
|
65
|
+
devflow_engine/integration/dag.py,sha256=R2VCd7bHQ6PgeGL4-6XepS4k11JHCIzlR87zB3atdiM,159026
|
|
66
|
+
devflow_engine/integration/prompts.py,sha256=uthuKT9eydXrB7sWiqLMm1R97uizgn4QmAK7OPD7eGw,4240
|
|
67
|
+
devflow_engine/integration/supabase_schema.sql,sha256=4WCnXecO-DzEFzitTgK3cZ88BPyQ3uLT6GlK1UA25Mo,1031
|
|
68
|
+
devflow_engine/integration/supabase_sync.py,sha256=kBAaR66N1a2Y3jtbbrZRfdgC68xFDAdaxaIXP-G8gvM,5457
|
|
69
|
+
devflow_engine/llm/__init__.py,sha256=Z8bUN-3CHl799W6LpXMLHoJ18nkjpFxPOKH6wVMIl3o,53
|
|
70
|
+
devflow_engine/llm/cli_one_shot.py,sha256=aUHWlduZ1AEXzz6MrXPpSiPgaERfcWhRgGIzImOJihA,2557
|
|
71
|
+
devflow_engine/llm/cli_stream.py,sha256=bjo5_unA5nE6RIcV2N3r5hUzMBB3G6xgpN_-Qc2Vmhw,11588
|
|
72
|
+
devflow_engine/llm/execution_context.py,sha256=tKUjxTjRAcB238sIEKVjhWl91W1cOhhx5PozwR_rd24,824
|
|
73
|
+
devflow_engine/llm/invoke.py,sha256=N1rhFOgIAIpjyj6WzaybCTqd5vp0TmkNT0baSWUB1-U,50690
|
|
74
|
+
devflow_engine/llm/provider_api.py,sha256=fcFrVU4Cp6J5urc8t13BRnfvmYo1ctgWQQY_yxaSKks,9921
|
|
75
|
+
devflow_engine/llm/repo_knowledge.py,sha256=8703u3Nedi2879-UCOMseP1KLYyj1j8zGqntIqxfb-s,21317
|
|
76
|
+
devflow_engine/planning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
+
devflow_engine/planning/analyze_repo.py,sha256=1TDvtKUEOxcCwk7TBv_Tsd6ttO5bq9lZFKtv3z4RRxU,3111
|
|
78
|
+
devflow_engine/planning/render_drafts.py,sha256=phfvs2_V4fGbKcGob5stjqV4CFjZfm-WPihl-AAIfyA,4530
|
|
79
|
+
devflow_engine/playground/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
+
devflow_engine/playground/hooks.py,sha256=eytYQaQ-JwKhy5Cwb2Xz__NOSSaLKp92RumN5ZDG3c8,611
|
|
81
|
+
devflow_engine/playwright_workflow/__init__.py,sha256=t24-TJvtq4V66wr8bVSMaV3I1l39SAfQimQU8VkoCWE,233
|
|
82
|
+
devflow_engine/playwright_workflow/dag.py,sha256=aEVZclDcJwksuj_-b5fO1W-As3l3mNoPCIEqBJ7lCDM,56051
|
|
83
|
+
devflow_engine/process/__init__.py,sha256=6sixxvYJf5LBEfTyTvDuguSyvcOf33OC2tU150_V1Ao,231
|
|
84
|
+
devflow_engine/process/dag.py,sha256=WV-khPDZgezk8M7J_mztyEOfDjjJmJxQQWsfkXbykKY,1882
|
|
85
|
+
devflow_engine/project_registration/__init__.py,sha256=cqRdZvHNsDlJRgWHhHWbCv7Ms8obcFUl6OZX459EfVY,170
|
|
86
|
+
devflow_engine/project_registration/dag.py,sha256=Sewl2xJG9VpPILVVcc_wIC0ozNA9BXUhKagj79DhOIM,61762
|
|
87
|
+
devflow_engine/recovery/__init__.py,sha256=aEZrJT3CTH-nFvJl8ExGPfs0Mf5yvM-VfOLUsIAJH3Q,136
|
|
88
|
+
devflow_engine/recovery/dag.py,sha256=pSYQzbeg44FqLVDyR-EvMoUwdfCSl8sSP2kVvhCgU7U,128821
|
|
89
|
+
devflow_engine/recovery/models.py,sha256=jJixx_iptc_EuZClGX5giaTZ2VqlhCryfwx85uGjrjY,7075
|
|
90
|
+
devflow_engine/registry/__init__.py,sha256=ZoidbZ-XS6vXgS4Tvq6qrcip7Yz7mFlyZLeBhk5ez28,61
|
|
91
|
+
devflow_engine/registry/cards.py,sha256=a7Rdw9cp1-YgIbCyqGMi1yJhPaeanOmbw-jyT9ifFUM,7743
|
|
92
|
+
devflow_engine/registry/domain_normalize.py,sha256=KUmmAy_pC_ITC1ppK2tBXLviPjufLKxbfK14M-BylCk,1409
|
|
93
|
+
devflow_engine/registry/effects.py,sha256=UsPGwDccixWMDfqNSWxj85avj1qii0pjTp7ZLxLGCjo,2195
|
|
94
|
+
devflow_engine/registry/enforce_report.py,sha256=vFlEI2UDK8JLrKJeDvLUyr8W_1IhNF0IL41dtnbFfsg,6251
|
|
95
|
+
devflow_engine/registry/module_cards_classify.py,sha256=gh8yXgWkLSB3kwD6nn686Eij1uS4p4cxJ5P89_Jd43o,6447
|
|
96
|
+
devflow_engine/registry/module_cards_draft.py,sha256=JLt1b9tOfP8CW0WM5yaHErFvpcSTVLyHS47sP_DXxco,6128
|
|
97
|
+
devflow_engine/registry/module_cards_gate.py,sha256=9eI2J6RSEKnLjRNA6FsXa3bEjQnhLOvhjQni2D-ZYsc,2366
|
|
98
|
+
devflow_engine/registry/packages.py,sha256=6kWGXF1BiwcMS4kn_SdfLeTqwexWvAokNAckvg3tW-4,12446
|
|
99
|
+
devflow_engine/registry/pathways.py,sha256=r_u9ebglCZVcceR6etZxYWdmGWWn-WOc3hl23k-eXEY,10825
|
|
100
|
+
devflow_engine/review/__init__.py,sha256=6p0swD8GPI7mINJyUTyQD52sM_Hew-Ka-CLcsGXfGrk,342
|
|
101
|
+
devflow_engine/review/dag.py,sha256=uWhZkHr25j1oKq7zs7uj9_SBW5uocQNtNf7poVa1EyM,23936
|
|
102
|
+
devflow_engine/review/review_story.py,sha256=6pLkaNIVODZoNqKF1PXYBUK5fn-czWmFT3VkT-GNOAY,1955
|
|
103
|
+
devflow_engine/scope_idea/__init__.py,sha256=ywvcnFZnR9apIhiAbr05eFsiQ0oCmu_voQ__0_JYkZ0,140
|
|
104
|
+
devflow_engine/scope_idea/agentic.py,sha256=0JRQNVxMP5LcUowjnZVu516jvt1PTT7_EaFxaXWSosU,1188
|
|
105
|
+
devflow_engine/scope_idea/dag.py,sha256=gsQiQl0UoKSUOX_Kx2axD4GyzVZ49W1xh3sLOwuz12A,49088
|
|
106
|
+
devflow_engine/scope_idea/models.py,sha256=JENuCZbAw-aQZZubYX2fhaSkMP5wjxEHl62hCy_M8T4,5314
|
|
107
|
+
devflow_engine/skills/registry.example.yaml,sha256=80EH685kfLpGA05cIKAZI6QFW8mt64M3wwbxADCs0pA,1057
|
|
108
|
+
devflow_engine/skills/builtins/devflow/queue_failure_investigation/SKILL.md,sha256=mcXyWxpR8RVPHKkRdgxxtMrdXrI02UIsIq2EV1_FuYQ,3498
|
|
109
|
+
devflow_engine/skills/builtins/devflow/queue_idea_to_story/SKILL.md,sha256=cF2VSVXGntOaxtKnJVDanWoSyIvqBKtfw2-liUX0Y6Y,4066
|
|
110
|
+
devflow_engine/skills/builtins/devflow/queue_integration/SKILL.md,sha256=JtHq2qVi19-zcBLGCc166-iID0KkykZNE74mVc-nzJo,3273
|
|
111
|
+
devflow_engine/skills/builtins/devflow/queue_recovery/SKILL.md,sha256=1ehngV5wAXmY18UGl7sFw5jpIhe2zxdRoKV2ICpv16Q,3572
|
|
112
|
+
devflow_engine/skills/builtins/devflow/queue_runtime_core/SKILL.md,sha256=L8kWge995bW52V5kN-gg8K0GxaC-17JMnE2OaF0oNzA,4718
|
|
113
|
+
devflow_engine/skills/builtins/devflow/queue_story_implementation/SKILL.md,sha256=9Tc-EUWMVP8RT6gL1rvil2wK3Q3GsDQ8al32IKlUijc,3659
|
|
114
|
+
devflow_engine/skills/builtins/devin/idea_to_story_handoff/SKILL.md,sha256=ESjA60kXCnx_T5fb6MUc0ZVHcqB9eY3iAeu9GREFVTQ,3716
|
|
115
|
+
devflow_engine/skills/builtins/devin/ideation/SKILL.md,sha256=Ow10LrA7Nxur7V0J3XRH5JD1KXCrNch26zsW4_tXeMA,5721
|
|
116
|
+
devflow_engine/skills/builtins/devin/ideation/state-and-phrasing-reference.md,sha256=NqPqd1KlKfXz9CSM1MyuWGTA_KlGI5vvHIhMLh3xI74,1253
|
|
117
|
+
devflow_engine/skills/builtins/devin/insight/SKILL.md,sha256=OTVJLDqZL4ohgg5507IGpCn2U0zntWVc_SBZue0vFAM,792
|
|
118
|
+
devflow_engine/source_scope/__init__.py,sha256=8n4H_7JS9zosR4dwTIJP17DmKlktVo3qeqmlVS7mG0k,320
|
|
119
|
+
devflow_engine/source_scope/agentic.py,sha256=DfmeUN6ZOuv7nljSv7zQRSbZyOCNY_PFzvv5Mc7q8fk,1338
|
|
120
|
+
devflow_engine/source_scope/dag.py,sha256=rDastZhc9ZU9cM2pdfsqTAvOaJczYKJlqDvWIWxUITw,77679
|
|
121
|
+
devflow_engine/source_scope/models.py,sha256=wskNzLZtZo0J_CYDmOcHx4nWI6TR4KVaQhqJhl2ewrw,5914
|
|
122
|
+
devflow_engine/stores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
+
devflow_engine/stores/execution_store.py,sha256=TX5AbDb39MvTTkciSckiuTjCIUJXvTzzyh1Y6BuXLmU,156213
|
|
124
|
+
devflow_engine/story/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
|
+
devflow_engine/story/contracts.py,sha256=WB-gODoHnCbGt1ThUczTN_LujjChXsBnScu7fPmphas,5246
|
|
126
|
+
devflow_engine/story/discovery.py,sha256=FB8ZLuIn-sbh6r8bavbjmb_jYLo_qLwJxM_vtRWsVT4,1717
|
|
127
|
+
devflow_engine/story/evidence.py,sha256=S3r4-C04toih6UybBOz7WeRI97f6tKbo8QTY5JvPVvY,4912
|
|
128
|
+
devflow_engine/story/hashing.py,sha256=VWZl8xFEhNlZxhvWLKHAljv3DH8PW7kCJHrG4VP2oDs,745
|
|
129
|
+
devflow_engine/story/implemented_queue_purge.py,sha256=JswY39crjgDmDYo2gPW5LrhiaFIfgjn2sN9lCIAOFbI,6143
|
|
130
|
+
devflow_engine/story/indexer.py,sha256=ojA7IvlKE_KatRAeK9oVb5OSwp83HtrigsnhflVwBBw,3305
|
|
131
|
+
devflow_engine/story/io.py,sha256=CepDkwtLCWqZii1jxGmP0k63O0Q1j6WHpq2vDXSQ9v4,561
|
|
132
|
+
devflow_engine/story/markdown_contracts.py,sha256=VZshR1GIcYfzmVVS9tK6jPnRCTKusP5qmgbKgGeoNLI,10451
|
|
133
|
+
devflow_engine/story/reconciliation.py,sha256=ikbb5uZiZWngeR8vfjkTCQxWV6U25pRfZUsLqifLsjA,17896
|
|
134
|
+
devflow_engine/story/validate_stories.py,sha256=zzFWwRUzmbj7nZZb66EZfblo2ntzibfb3NYl5baBli4,4763
|
|
135
|
+
devflow_engine/story/validate_tests_story.py,sha256=yRJX0NvDztF9jE846Pf2_XzEAO30RHLMJv4WrnO3mXY,19130
|
|
136
|
+
devflow_engine/story/validation.py,sha256=mU_bw1uk9F7glqNgdWgpC_ePSrInCiJ_tO9wQk9R4qA,4766
|
|
137
|
+
devflow_engine/ui_grounding/__init__.py,sha256=PNRVGljyaSZwy6MMtku73PgxD90z9EeZzBzI-IBH2Xw,337
|
|
138
|
+
devflow_engine/ui_grounding/agentic.py,sha256=rV20tC6utWQlzCbCBDv4aGUfatOjNq2lXpXca7W_-IQ,1167
|
|
139
|
+
devflow_engine/ui_grounding/dag.py,sha256=5ZLkTAbqr5cMgUWd0vdmT6SSbz0kH9Qf47mC_VzAYRM,44793
|
|
140
|
+
devflow_engine/ui_grounding/models.py,sha256=EH5oGl8KmChebTrQleAPgpYddIQxMSxsuRRkmNkqGEE,7028
|
|
141
|
+
devflow_engine/ui_grounding/pencil_bridge.py,sha256=n4cDuGhuNWu1RYzvo4U9fya81e26FyGstV0McH1FfiM,9829
|
|
142
|
+
devflow_engine/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
143
|
+
devflow_engine/vendor/datalumina_genai/__init__.py,sha256=POPhLcjsCIStJ6D3R5dxudqTC5npr1d1UCUeEBhyKzY,378
|
|
144
|
+
devflow_engine/vendor/datalumina_genai/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
|
+
devflow_engine/vendor/datalumina_genai/core/exceptions.py,sha256=YBGJ0Y3L2C21z766jicmFQzqTXfqWlkcv6mudMqYX8A,262
|
|
146
|
+
devflow_engine/vendor/datalumina_genai/core/schema.py,sha256=OYR-xa2uRri07F06YEFMW3ZDmDO-04nRMIs8KzWIsUw,2413
|
|
147
|
+
devflow_engine/vendor/datalumina_genai/core/task.py,sha256=FNlkF_FNJHPpvJGzaiSMCnbupmZBreiwQVdM4KWm7q8,1934
|
|
148
|
+
devflow_engine/vendor/datalumina_genai/core/validate.py,sha256=6ulpThVYSfS0ZYZWcm7_2O0f09TuZNI8lGAPdRuuKe4,4528
|
|
149
|
+
devflow_engine/vendor/datalumina_genai/core/workflow.py,sha256=NHzHq9VBpkLTKC9eN1D4Lvxy6EECC0UfCF_3YBVfqmA,7649
|
|
150
|
+
devflow_engine/vendor/datalumina_genai/core/nodes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
+
devflow_engine/vendor/datalumina_genai/core/nodes/agent.py,sha256=EPeeakDc-qPYS5VlwkxsO2j0sLxHb468L_RBUSetb7o,1216
|
|
152
|
+
devflow_engine/vendor/datalumina_genai/core/nodes/agent_streaming_node.py,sha256=VSU2EwQ3NFfwzEg8pYuUS-_KLoAS-HJsiqbFMP2uehc,890
|
|
153
|
+
devflow_engine/vendor/datalumina_genai/core/nodes/base.py,sha256=E-1KPSWndjQtmDR2X4f7et-06s5fsw9ljj1-wYuED4A,2826
|
|
154
|
+
devflow_engine/vendor/datalumina_genai/core/nodes/concurrent.py,sha256=BDAeMhCBWdk4Rs9q1vnQJqEIpCsL7WCnahfZPQBI8w4,1057
|
|
155
|
+
devflow_engine/vendor/datalumina_genai/core/nodes/router.py,sha256=PXfmQV6SmZVmcNi2TJ7eiBhtf3lKxslxIUY3IDxF7uk,2133
|
|
156
|
+
devin/__init__.py,sha256=hISQgV4gzGY_AZbZN41IM72yVa7e8HgnnZJxf6vZfB4,286
|
|
157
|
+
devin/dag.py,sha256=g3kSeJChC64CugzCTkEwea-MVAJ0ZI5cXK4ljhf48s0,4373
|
|
158
|
+
devin/dag_two_arm.py,sha256=rvxlKd-KKT_JwJSxwNQpdEsdyI7VVwqTnxKmeJjCeuQ,4851
|
|
159
|
+
devin/devin_chat_scenario_catalog.json,sha256=u3qK0Uedph9hfb3hK9wxNk6-OUUikq-s7MW22aHyYz4,23866
|
|
160
|
+
devin/devin_eval.py,sha256=b_gOMt2SQSOJPhQ2hBTicVcKrPR8kK0j6dcfYJhFhD4,29731
|
|
161
|
+
devin/nodes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
|
+
devin/nodes/ideation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
|
+
devin/nodes/ideation/node.py,sha256=sQepkMt3N8RuqkxRC6yQ8D57S5WrKMHo_vTsxf3_anw,8507
|
|
164
|
+
devin/nodes/ideation/playground.py,sha256=ncQ0JLP8aVxhNIqbxW_t6ByrZKh5AP9IwEEX9Vf--yg,10977
|
|
165
|
+
devin/nodes/ideation/prompt.md,sha256=vXkigos103Q8u7VE-hyVaKYiwoFvzDu4nkuoqrBVmWk,3158
|
|
166
|
+
devin/nodes/ideation/tools.json,sha256=I6TeBoGSfZMBKR-62tsFaCxrpbjAVB8AlZQi18qqcIk,11517
|
|
167
|
+
devin/nodes/ideation/scenarios/continue_refinement.py,sha256=ZaRKlJJgBG9RqKyIxr79SqEWcQUCojMePAFswOhC828,1219
|
|
168
|
+
devin/nodes/ideation/scenarios/continue_refinement_evals.py,sha256=1dFBYSXdQxQmIUelOOmvsd9TxciYgrf2mAgJ85vDQOM,754
|
|
169
|
+
devin/nodes/ideation/scenarios/idea_fits_existing_patterns.py,sha256=8Zw3LMlfuePmElDkzwJukcIufnHexmQxNjdms99X_b8,1233
|
|
170
|
+
devin/nodes/ideation/scenarios/idea_fits_existing_patterns_evals.py,sha256=ZlSiKJ3CqvhodfpnUpcaJNC8yGLE7RHwFGuIXqvbNnU,648
|
|
171
|
+
devin/nodes/ideation/scenarios/large_idea_split.py,sha256=ZE_y4Kc5CaOxiBKuy11BJlX35Ocs20uIHmAuvdWNdH8,505
|
|
172
|
+
devin/nodes/ideation/scenarios/large_idea_split_evals.py,sha256=snl7UTZbIxGU41bCUcQ5Q4kMrgQTbRAuTaZ-TGZFmpY,694
|
|
173
|
+
devin/nodes/ideation/scenarios/source_documentation_added.py,sha256=o6cUt3R32-x1J4A8GaUrUYTferO3aX7WfSgOUYT3mWQ,474
|
|
174
|
+
devin/nodes/ideation/scenarios/source_documentation_added_evals.py,sha256=GUBdWNBDLGAgOiKL8EcVFDQZ1TfQb66_uGVEvP9QmWE,639
|
|
175
|
+
devin/nodes/ideation/scenarios/user_says_create_it.py,sha256=KM1-wF8_KnkYH-ImG_m3Dl8mGclkg-hgroWbRXAKyU0,2401
|
|
176
|
+
devin/nodes/ideation/scenarios/user_says_create_it_evals.py,sha256=4bD322EK67WkqCqZ0ml5xvPCaDvjsK5pPgTtdU-gvXg,810
|
|
177
|
+
devin/nodes/ideation/scenarios/vague_idea.py,sha256=M9_11lGSNuC-flsE2Rqiavmn_rzDXacEKkULe6v0zx0,622
|
|
178
|
+
devin/nodes/ideation/scenarios/vague_idea_evals.py,sha256=vdelT8ED4hLaNaTcERBBawQ_PaFHjXoF-SgXqL2dris,2214
|
|
179
|
+
devin/nodes/insight/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
|
+
devin/nodes/insight/node.py,sha256=SP2U45UcdFddJRiK3nTxJHHmiddR_usMLTBZZ_HhzsY,3446
|
|
181
|
+
devin/nodes/insight/playground.py,sha256=4uwYMhxTpr_zDk77FHFiCinuiTY_9LJ66rPaaq9tazI,5807
|
|
182
|
+
devin/nodes/insight/prompt.md,sha256=KCR4iUxlRBhFkmp49zp7NGLIxOrWbRM4MRIIrJDpsTI,3471
|
|
183
|
+
devin/nodes/insight/tools.json,sha256=esiXAx5YA-JSvUASST1M4PaVAsKidy76fNhm0W7PCkw,6412
|
|
184
|
+
devin/nodes/insight/scenarios/architecture_pattern_query.py,sha256=piy0JKyHW-Z7Ppbgw4Dm9ImmcO5aNeg31Bhcui6e7U4,635
|
|
185
|
+
devin/nodes/insight/scenarios/architecture_pattern_query_evals.py,sha256=5An1F1bkhTWvmeWEghH3ubvj1roe9mf4s2Wf1KwcZEY,910
|
|
186
|
+
devin/nodes/insight/scenarios/codebase_exploration.py,sha256=RSMvw44RPXp6v14Xldfw3hvQqO90ZAt10uwEoh-MKC4,554
|
|
187
|
+
devin/nodes/insight/scenarios/codebase_exploration_evals.py,sha256=AxtAtWZkkj4kSDZFkQv60gs2YFwzO7X1M6B1MBBUXjU,779
|
|
188
|
+
devin/nodes/insight/scenarios/devin_ideation_routing.py,sha256=WPpFbw-4hJk8O5y9A93-a0pmI0dWj_IDh2mhDkCLZpY,694
|
|
189
|
+
devin/nodes/insight/scenarios/devin_ideation_routing_evals.py,sha256=_zBeDKfZ10WsUGQc87-OUoDPTMqWCpRQRlQ5NEu7T6c,1222
|
|
190
|
+
devin/nodes/insight/scenarios/devin_insight_routing.py,sha256=4pqtMU7yi_1Hgd1ILUjBcTROvI3MV9pvsjSIotqrnWA,669
|
|
191
|
+
devin/nodes/insight/scenarios/devin_insight_routing_evals.py,sha256=HN4VlvgxEp2O6icKyCT9D71Y1L2L3l9y5jjPyTRgi0I,1258
|
|
192
|
+
devin/nodes/insight/scenarios/operational_debugging.py,sha256=b-f903RVJGaT4bve6QgvRCBAaXx81UlmPkTbzcgh7Hk,579
|
|
193
|
+
devin/nodes/insight/scenarios/operational_debugging_evals.py,sha256=jnTzBK5duEixZX3Vtdaui43aOUAFtgq7e6EHIXavlS4,843
|
|
194
|
+
devin/nodes/insight/scenarios/operational_question.py,sha256=Sc1Z9vJdCIw33j11mKa-D_VKK_gZAerSUW3K-PVK4FY,486
|
|
195
|
+
devin/nodes/insight/scenarios/operational_question_evals.py,sha256=WC5YZcFNG_Co5gRBoBdkmWa98pWVctg-9v2ZVDEla_U,482
|
|
196
|
+
devin/nodes/insight/scenarios/queue_status.py,sha256=p2V4-J-jUXZ9cHaRgn5kifL2GWagdH5vvk7GqSzImnM,593
|
|
197
|
+
devin/nodes/insight/scenarios/queue_status_evals.py,sha256=fI97HSVGvGlFXV_jn_siieuff3ItJ4GdsV1vUcVCp04,812
|
|
198
|
+
devin/nodes/insight/scenarios/source_doc_explanation.py,sha256=2mkPEtp1_8FBQPeusWvExbpN2uO_fm799aw3llRHkC0,584
|
|
199
|
+
devin/nodes/insight/scenarios/source_doc_explanation_evals.py,sha256=ozueQROKn1Qjyh-ObO6ztEjmEECJlDdKWOA22MpXn4E,696
|
|
200
|
+
devin/nodes/insight/scenarios/worker_state_check.py,sha256=lGjFZEmBqNvynMvnLvohZ2z6qG2TDgRHYiKUFJISEfE,537
|
|
201
|
+
devin/nodes/insight/scenarios/worker_state_check_evals.py,sha256=5iTHuMQ1uVVIjsdGmBBzwH4MZTtz1nA-Rbp9flJ6MRI,701
|
|
202
|
+
devin/nodes/intake/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
+
devin/nodes/intake/node.py,sha256=iSyN-SWE2WJ3qDbMJwLBG_8fBn4Z0fJSan0w48HSGgM,1944
|
|
204
|
+
devin/nodes/intake/playground.py,sha256=JsPBeACX8Jn-q6ct5Gq9VpXplOjZIhBGpY-9tHSHnBk,1784
|
|
205
|
+
devin/nodes/intake/prompt.md,sha256=0Ptj6H_UVXcwmdIQYqN9KKjoX6j0Kcv0yczMv7UFjrg,783
|
|
206
|
+
devin/nodes/intake/scenarios/ideation_routing.py,sha256=u-6Ba_ZxsuzEJDRq5RrLSKsg8CWWhjjjLeH-UBaeVKs,325
|
|
207
|
+
devin/nodes/intake/scenarios/ideation_routing_evals.py,sha256=F6RpoIRNptNLQmC9ZmCjVEVE27NU9LcImvbu8Gto3v0,228
|
|
208
|
+
devin/nodes/intake/scenarios/insight_routing.py,sha256=wFsqG3SXKYWd87DXhGaN85wgpmXo7EMeEW5SH0O2Qa4,290
|
|
209
|
+
devin/nodes/intake/scenarios/insight_routing_evals.py,sha256=wsQunKui9M437VQ5aHGa1A83RrYm3WiEV5NXZDgZhoo,225
|
|
210
|
+
devin/nodes/iterate/README.md,sha256=_5MLswJbE89Pv7nc0boHJGx_5ZSs8y3-014c-m7O6mo,1746
|
|
211
|
+
devin/nodes/iterate/__init__.py,sha256=5rfjn3SNkIDnjR8lqwUnXhtBpohRjsrm9ctDmnFVB6w,28
|
|
212
|
+
devin/nodes/iterate/agent-roles.md,sha256=9x_WhGoWHHF10RH-UVWJCEwpGRiD6znmL0crB9ozPdw,2212
|
|
213
|
+
devin/nodes/iterate/artifacts.md,sha256=KePn1Krc4Q9yoL2HYrkcm6ttLOaAvIR4iysgYLySnhI,20203
|
|
214
|
+
devin/nodes/iterate/contract.md,sha256=sDf5xim6Drtq_cxKutpnBTSVELNtE6U7g8hEQsndpno,3373
|
|
215
|
+
devin/nodes/iterate/eval-plan.md,sha256=GDmEVQsluHktQYFL88JXVG-x7FapEmq7LNwAPlqqAY8,2898
|
|
216
|
+
devin/nodes/iterate/node.py,sha256=JsKg_QmTd6EYrI-5_8PQqRN7GWdNxrMaSknO2sxJoCE,3753
|
|
217
|
+
devin/nodes/iterate/playground-contract.md,sha256=risfLWr_eIUO-NOsDmW0bpk7FocfACkLlYeV0qLS0CM,2927
|
|
218
|
+
devin/nodes/iterate/prompt.md,sha256=pHuaHUeOkPlfIJ_AJTkKSGe4BzS393IKg9Nsi0XhEww,583
|
|
219
|
+
devin/nodes/iterate/_archived_design_stages/01-objectives-requirements.md,sha256=tJ_S4io3yffvYZ_mTa1WvstLVizlRlhkdqpjkXPJUEc,5369
|
|
220
|
+
devin/nodes/iterate/_archived_design_stages/02-evals.md,sha256=1rDAfcVDHDW89X3LDOlwceybOwkCaqdCbP9yAVUNI6Q,5820
|
|
221
|
+
devin/nodes/iterate/_archived_design_stages/03-tools-and-boundaries.md,sha256=Ff2yaSXssp4tvdTSacvwE8xXKbJpP1FJuB25sdV3Srk,4537
|
|
222
|
+
devin/nodes/iterate/_archived_design_stages/04-harness-and-playground.md,sha256=ECbZSCDpdnVOh_eP1okZovzph3rO89ZVtesexPwktR0,1618
|
|
223
|
+
devin/nodes/iterate/_archived_design_stages/05-prompt-deferred.md,sha256=kS8xaY3SBKgo1GynZKKq8a9kawsedit713D9pg-Rpzk,391
|
|
224
|
+
devin/nodes/iterate/_archived_design_stages/coder_agent_design/01-objectives-requirements.md,sha256=fcmIIFPfEf-oTHRhWnhoy-TonC3-J0jrQlC3Dz7wpD8,729
|
|
225
|
+
devin/nodes/iterate/_archived_design_stages/coder_agent_design/02-evals.md,sha256=wYqGTzlALtMEoNZUbBKJjjlQn45vA2MHOyCRPBMGIl8,398
|
|
226
|
+
devin/nodes/iterate/_archived_design_stages/coder_agent_design/03-tools-and-boundaries.md,sha256=WGyknkiN2Lqqcc9c6biFWYOEGxRHcbtSpaSb11u3T7c,429
|
|
227
|
+
devin/nodes/iterate/_archived_design_stages/coder_agent_design/04-harness-and-playground.md,sha256=gKrPErVZPCbe4tOkpMyJEdgCGd3Mt6SqvRwWFG2twao,462
|
|
228
|
+
devin/nodes/iterate/_archived_design_stages/framer_agent_design/01-objectives-requirements.md,sha256=0EMLLPAsR4YtqN2FPD8aN_ZIfmSG1-VvgNZFDdYvctM,720
|
|
229
|
+
devin/nodes/iterate/_archived_design_stages/framer_agent_design/02-evals.md,sha256=BFR0MmzE00M0TLLwqesw4lHfIdauV1ChCjqd-o8jshk,381
|
|
230
|
+
devin/nodes/iterate/_archived_design_stages/framer_agent_design/03-tools-and-boundaries.md,sha256=rm-643rZ2HFSnmeRbDaWTGizyE5eYmdue_At40ozFSg,388
|
|
231
|
+
devin/nodes/iterate/_archived_design_stages/framer_agent_design/04-harness-and-playground.md,sha256=buii_x7lfk3f_NV_JcHY3Yhzt5gSP7EW5tuShSypZvU,356
|
|
232
|
+
devin/nodes/iterate/_archived_design_stages/iterator_agent_design/01-objectives-requirements.md,sha256=4pbm7qFrN9ptHPpmFmcKG0LvQ7OfEJSCRfUVjknHlAM,727
|
|
233
|
+
devin/nodes/iterate/_archived_design_stages/iterator_agent_design/02-evals.md,sha256=hH3wYC7qicqaDN53l4ysgF8z-sJYnF1WTE6s84_rVTM,491
|
|
234
|
+
devin/nodes/iterate/_archived_design_stages/iterator_agent_design/03-tools-and-boundaries.md,sha256=UevNb68nunFSid_B4xJlYKr6ZfZLZUGaWb4DzCggAgM,501
|
|
235
|
+
devin/nodes/iterate/_archived_design_stages/iterator_agent_design/04-harness-and-playground.md,sha256=xYlX0e5UPtutybu9Pw2liGDNfsLE2THrgXbToe8UkJU,341
|
|
236
|
+
devin/nodes/iterate/_archived_design_stages/observer_agent_design/01-objectives-requirements.md,sha256=v38Iv2tdoHFGys6RLBWjADwZBSgNyyDysZdjG_ye7C8,646
|
|
237
|
+
devin/nodes/iterate/_archived_design_stages/observer_agent_design/02-evals.md,sha256=hOGyYRibsTPK_QJblgRUEzZcnO2caddr5M_qPyNKW78,377
|
|
238
|
+
devin/nodes/iterate/_archived_design_stages/observer_agent_design/03-tools-and-boundaries.md,sha256=uW9kLE-LF52odC3ixUTyx50gChiOtmxT0cux0aOoqLM,388
|
|
239
|
+
devin/nodes/iterate/_archived_design_stages/observer_agent_design/04-harness-and-playground.md,sha256=tiaqrZ9qS52jhOc7Th933dHTIFugCL8N3tIaBD5AxuU,286
|
|
240
|
+
devin/nodes/iterate/agents/README.md,sha256=gYtJ9xCvpLPhKBji1P3ky-mp6xqGcPSHr0hcrbgqAC0,286
|
|
241
|
+
devin/nodes/iterate/pipeline/README.md,sha256=yEaoMTOIV-WfnMLX_PU2FgpGbVcyTRYvAX5IF4lmCVQ,384
|
|
242
|
+
devin/nodes/iterate/scenarios/README.md,sha256=lfE6oEOeGfnqxYg6PH86IBvgb-NCBtJTUZtJ6yRlIhY,1511
|
|
243
|
+
devin/nodes/iterate/scenarios/artifact-and-loop-scenarios.md,sha256=uBp6T05rmg4UQjM-NeKkzf6qgxj3qbJaS5Jt0H4HFQ4,4186
|
|
244
|
+
devin/nodes/iterate/scenarios/coder_artifact_alignment.py,sha256=ZpZIOl3n81OznMeiehTpNhrosjH2-fucsOjy-Dz_m3c,1264
|
|
245
|
+
devin/nodes/iterate/scenarios/coder_artifact_alignment_evals.py,sha256=e_BgCnfUpYuMxWKijjmqk_EVyGFYPAu7QcVid2ySIqs,1532
|
|
246
|
+
devin/nodes/iterate/scenarios/coder_bounded_fix.py,sha256=3Z_CCRbsp94NRXlSGtTdy-VyFB_gkFSVsfgE_WWa4Nk,1073
|
|
247
|
+
devin/nodes/iterate/scenarios/coder_bounded_fix_evals.py,sha256=0ZRpWhOa0RL40CeMofh0_tvwOTk0bCunPwTUOfC53jU,1487
|
|
248
|
+
devin/nodes/iterate/scenarios/devin_iterate_routing.py,sha256=h0pktT_0ldVlqXI0SF1KRBS1eMKDwOggjTRroUOIY8w,784
|
|
249
|
+
devin/nodes/iterate/scenarios/devin_iterate_routing_evals.py,sha256=0I1D0eZbcxNCa7gx3IqK_WnQRtxnVWSusHqnP_NiXB0,1114
|
|
250
|
+
devin/nodes/iterate/scenarios/framer_scope_boundary.py,sha256=uFq-LIjgTREq8AKTlgEg56OzUdZk3bAqmc82kTuoajA,862
|
|
251
|
+
devin/nodes/iterate/scenarios/framer_scope_boundary_evals.py,sha256=4Zfd0VsT-RiM0dN-iiqkm1cKeOiko-G0GuE6LY9sD-c,2027
|
|
252
|
+
devin/nodes/iterate/scenarios/framer_task_framing.py,sha256=Pi90d4Q0zaLgXjR2ra9ooc1B2hQ9OQqqcqaAZPzZEEs,887
|
|
253
|
+
devin/nodes/iterate/scenarios/framer_task_framing_evals.py,sha256=E8ETME_XXjsphg4bmV6m2dDYTF8aiRfYZ7G3Y3zjbRk,2314
|
|
254
|
+
devin/nodes/iterate/scenarios/iterate_error_fix.py,sha256=Na-FY12FtfirPHbQXiOQYGTHJMRwPX6S6_fQKOVRnbc,806
|
|
255
|
+
devin/nodes/iterate/scenarios/iterate_error_fix_evals.py,sha256=AGXeKRs3TCjk33QCyyHwnnrz-mch5Uf5vRGpBYgSVwU,1355
|
|
256
|
+
devin/nodes/iterate/scenarios/iterate_quick_change.py,sha256=GUyoQrBkqVxlfdvqEwaf0YdU9pYPSDrjSb-93uaM4Ek,764
|
|
257
|
+
devin/nodes/iterate/scenarios/iterate_quick_change_evals.py,sha256=g8p-H0LbcFtXr61S6WhXIfW1CkFR573BO32SY_zK0bs,1083
|
|
258
|
+
devin/nodes/iterate/scenarios/iterate_to_idea_promotion.py,sha256=jG3WDNGxMqkjwGhuKC3noAj8KyFb0UKgtsPIZ3Ag6cE,886
|
|
259
|
+
devin/nodes/iterate/scenarios/iterate_to_idea_promotion_evals.py,sha256=KybKfEBxbLuPF_fzCLjeSX9xSlDTLbbF0ixZzJ1qX20,1985
|
|
260
|
+
devin/nodes/iterate/scenarios/iterate_to_insight_reroute.py,sha256=7b031QfTj-i2IPmX2IKvodWoAtgxpHmCXklOh0hgS7A,930
|
|
261
|
+
devin/nodes/iterate/scenarios/iterate_to_insight_reroute_evals.py,sha256=iwCLSqoTS2qvupMzfAwAuLN4CAjpcdfEQTnftZIbJ7s,1901
|
|
262
|
+
devin/nodes/iterate/scenarios/observer_evidence_seam.py,sha256=DZGRXMK6Go1yIahSIArlmLPw7BpUmi0L1JUVMwSfgpg,1065
|
|
263
|
+
devin/nodes/iterate/scenarios/observer_evidence_seam_evals.py,sha256=Yyq65SGyW7NoGFs8-lGgOgVayseqVKriKfqwByo30No,1958
|
|
264
|
+
devin/nodes/iterate/scenarios/observer_repro_creation.py,sha256=4RvRjaNuNK3D5Oy_Hx9ye4nWJBJCNrj-GtDiuhGms6o,1114
|
|
265
|
+
devin/nodes/iterate/scenarios/observer_repro_creation_evals.py,sha256=825gz0eoYTarjdKLyOk56jb7Ygu_ZTiksVI8YLYpGAs,1628
|
|
266
|
+
devin/nodes/iterate/scenarios/routing-matrix.md,sha256=PlBtBIFQL4LN5tMvwV3sNh5-6mWyBrany042u0wlgvo,2930
|
|
267
|
+
devin/nodes/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
268
|
+
devin/nodes/shared/filemaker_expert.md,sha256=HDjuOF4DLfjwpYWTDgXVhE0ZoSbOoAridO8AGzCd7ck,4292
|
|
269
|
+
devin/nodes/shared/filemaker_expert.py,sha256=diSh7hOvQLPtMfFL2PpQ2s9szUU5svT-J5QbamcFmr0,13001
|
|
270
|
+
devin/nodes/shared/helpers.py,sha256=IbEYiW3E3ppn5pmtwjiz6XrrC_NI19kD2RvSwTsxE3U,8606
|
|
271
|
+
devin/nodes/shared/models.py,sha256=Y5qx14XTorx51AgLbngppz8nwhpWlESOBuSzItO66AU,1323
|
|
272
|
+
devin/nodes/shared/post.py,sha256=YMKlQUOuPnLNjmt9bKLIAnnatT-0lBrLicLo15gu7ko,3179
|
|
273
|
+
devin/nodes/shared/router.py,sha256=Rtd5-0gqaxOlARqXqv1EaXalizrImDNtq5OqsZhgVhk,6332
|
|
274
|
+
devin/nodes/shared/tools.py,sha256=KP9Z6vaaEkek-7W-bLhWEo_hIf1OyS6LacpAISwVrXg,8235
|
|
275
|
+
devin/nodes/shared/filemaker_expert_eval/runner.py,sha256=K_-GLMOTDpWGkuLswJpTitOvMwe7gQkq5KgGlJQeJzQ,5189
|
|
276
|
+
devin/nodes/shared/filemaker_expert_eval/scenarios.json,sha256=NX8GUBINNBY8-ugSwAMHY41l4JrF9VdmPEN1lCl_GK4,3007
|
|
277
|
+
devin/nodes/shared/goldilocks_advisor_eval/runner.py,sha256=Fj1ecSKGc33WmF-vx2yakwPNzgLLURSpjsvrhAHXqvU,7442
|
|
278
|
+
devin/nodes/shared/goldilocks_advisor_eval/scenarios.json,sha256=_JCQE-hNTTbPtRHe0ULPmy2TVBorCKzAslFX7iQ1xTk,2440
|
|
279
|
+
devin/nodes/shared/idea_compliance_advisor_eval/runner.py,sha256=JwsmW9PwWKlWUqre5vZuVQrimhOpbdFvPXsrFoj41XA,8900
|
|
280
|
+
devin/nodes/shared/idea_compliance_advisor_eval/scenarios.json,sha256=RZm89fatFVwuEMjI5-oj7cpsivYkpQPA0gNA2uLnNU8,3234
|
|
281
|
+
devin/shared/devin-chat-rubric.md,sha256=3R1JDWwIEEKZvb4LxPvQkLv9x2fQbyU5grnndwq7Yjg,7842
|
|
282
|
+
devin/shared/devin-chat-scenario-suite.md,sha256=Q4bNkHhtlI5zAxzi8cL4_yJJf6tRELCEQ2fvOYONrk4,3461
|
|
283
|
+
devin/shared/eval_doctrine.md,sha256=AEdZnaT9xXbJyQIgDzzsOLYbJDZDHHcxwu_37ALtizg,595
|
|
284
|
+
devflow_engine/prompts/devin/generic/prompt.md,sha256=dkZ0C4tqADMML8GyW5UJ48_b5eNvFf65dyVVAwC_Iyc,278
|
|
285
|
+
devflow_engine/prompts/devin/ideation/prompt.md,sha256=hiQMQrP0Ssmnpl0y-6HjoLAlsKYe2qQ9TylVfsYLjbQ,9759
|
|
286
|
+
devflow_engine/prompts/devin/ideation/scenarios.md,sha256=602hUyuSn9dklcFXyoaIwY3YHRi4VI2nWgeU6x2o684,341
|
|
287
|
+
devflow_engine/prompts/devin/ideation_loop/prompt.md,sha256=Eseq_kbvRwaBQs5y8ZbyB-U5SB1jLLEjI2mSe8bitUs,424
|
|
288
|
+
devflow_engine/prompts/devin/insight/prompt.md,sha256=pxj4hoUF9ZmjDh6bhDBSjRmI0vmLRnv6nJmhcn8iaoQ,1146
|
|
289
|
+
devflow_engine/prompts/devin/insight/scenarios.md,sha256=LWICi9mwE9RihzWSsMXMt9gi0_PQgLpKhtFGR_90snQ,295
|
|
290
|
+
devflow_engine/prompts/devin/intake/prompt.md,sha256=VG8xT2NXGMBq9O-4nEfAbw6wqCAumSKIkMe2l_vw16w,1290
|
|
291
|
+
devflow_engine/prompts/devin/iterate/prompt.md,sha256=ZQ87j-Ff5vS-UN9a02olpvhACqjbDHQqdbyEsQ9_m1Q,890
|
|
292
|
+
devflow_engine/prompts/devin/shared/eval_doctrine.md,sha256=AEdZnaT9xXbJyQIgDzzsOLYbJDZDHHcxwu_37ALtizg,595
|
|
293
|
+
devflow_engine/prompts/devin/shared/principles.md,sha256=0o0Me__7e3YGyDi0KXAwbsVJPb8LixGA_SUzctI-9-8,7980
|
|
294
|
+
devflow_engine/prompts/devin_eval/assessment/prompt.md,sha256=xamu5jO1lKd9gcEOGkAtXj3nAQ1UHVwiEUNy0-2mzEQ,1443
|
|
295
|
+
devflow_engine/prompts/idea/api_ideation_agent/prompt.md,sha256=e1PYf4BUrjvjNgxJqfBVbjiZ-dWrRzMj7e0qy2OSiYk,409
|
|
296
|
+
devflow_engine/prompts/idea/api_insight_agent/prompt.md,sha256=E8o8vSPM8wJRvkv8SA716qckmsdz_jHYtHFGbAWuXWA,397
|
|
297
|
+
devflow_engine/prompts/idea/response_doctrine/prompt.md,sha256=bni2fhog1BRHf-2Ohy-dlsYdv3fhACZSgNZXWPOEJbU,1903
|
|
298
|
+
devflow_engine/prompts/implementation/dependency_assessment/prompt.md,sha256=SbEEkip1HqLSpmgP1EkC8WQP-lW3UR34rjzBeL8dZXc,1284
|
|
299
|
+
devflow_engine/prompts/implementation/green/green/prompt.md,sha256=rsPrbWkmbhlUeKN6NEz1VgvhLrdaypuIGyhKsw64S28,681
|
|
300
|
+
devflow_engine/prompts/implementation/green/node_config/prompt.md,sha256=PKOQNr3C3GeiuXQy1_q4z34D7E1WtzSDHzkIpEGyN1U,184
|
|
301
|
+
devflow_engine/prompts/implementation/green_review/outcome_review/prompt.md,sha256=esTv29Kei9pQec1xIZ1MvMdYGfLKI-Pa0fxripiOTFM,224
|
|
302
|
+
devflow_engine/prompts/implementation/green_review/prior_run_review/prompt.md,sha256=eovbuWzZXWU95LQeDIhigPq10Qby5a74yPCOWzxen-M,197
|
|
303
|
+
devflow_engine/prompts/implementation/red/prompt.md,sha256=B3n1ehBl7rgGScWA9L9FfcfPmfAb51RDdWiDoaHfpmY,4377
|
|
304
|
+
devflow_engine/prompts/implementation/redreview/prompt.md,sha256=Wm3glN9w7nRByRF8_ORBD8Qxu1-6hZ49JgpnDGjiFec,3004
|
|
305
|
+
devflow_engine/prompts/implementation/redreview_repair/prompt.md,sha256=mxwK6jpMAlS239pQMJp2GECudaQ5p-wNlS3QvK6A7v8,2101
|
|
306
|
+
devflow_engine/prompts/implementation/setupdoc/prompt.md,sha256=DwphDgZImoFQwHaWD_n6UY7ve9ZD1NkIZgvlbVEtC_0,783
|
|
307
|
+
devflow_engine/prompts/implementation/story_planning/prompt.md,sha256=EXig2PSH_AlXMKmJ6p7EMee40MMlnTfG6S9pxeLiIxs,1533
|
|
308
|
+
devflow_engine/prompts/implementation/test_design/prompt.md,sha256=uFQOTcABBVYqZAr0En0Ll-XMAEpXPrfO0kVMx6UAXew,3030
|
|
309
|
+
devflow_engine/prompts/integration/README.md,sha256=d0OsVQng__bQ7XC00KJpn1UE4OJogQsnhFvSVQaaemQ,6525
|
|
310
|
+
devflow_engine/prompts/integration/green/example.md,sha256=gqx9AA3C8ZPvY-jNEpTuKKp1dS-WEaq297kEbxXWhII,2508
|
|
311
|
+
devflow_engine/prompts/integration/green/green/prompt.md,sha256=CPNn0SrJMMp9t8wy70Uq5faRDSPixAsVUgkNHusK2Vo,488
|
|
312
|
+
devflow_engine/prompts/integration/green/node_config/prompt.md,sha256=JU2zQUGWPDR5eN8o9dmx_TA-_cpI2t0vb4jVjN2EZyo,1151
|
|
313
|
+
devflow_engine/prompts/integration/green/past_prompts/20260417T212300/green/prompt.md,sha256=moNRvu5ZJnFpXSFje34FscEFfJKKXfs2PjmubQauLBs,1127
|
|
314
|
+
devflow_engine/prompts/integration/green/past_prompts/20260417T212300/node_config/prompt.md,sha256=zELpvvC1D7wlyZXYlnnBwu1G-fQCErdD5tWCcufq9EU,1196
|
|
315
|
+
devflow_engine/prompts/integration/green_enrich/example.md,sha256=ZK-E8YgEPS_3Pvy9xCYSOX3et-s6_9UPiHZWdFE18fE,2892
|
|
316
|
+
devflow_engine/prompts/integration/green_enrich/green_enrich/prompt.md,sha256=TWQKuVFDfNWuvhYsVBWutwOrLm1VqEQRxBA_VA8En4o,422
|
|
317
|
+
devflow_engine/prompts/integration/green_enrich/node_config/prompt.md,sha256=KZsm-T9NoFe6qOD0YvfSRjd3VR0lUfmOfud4tk4ZrXo,1163
|
|
318
|
+
devflow_engine/prompts/integration/green_enrich/past_prompts/20260417T212300/green_enrich/prompt.md,sha256=OSXQYm3yqp3EDBigea7_kN3gp2_3zy_7fqYwoa7tE3w,1052
|
|
319
|
+
devflow_engine/prompts/integration/green_enrich/past_prompts/20260417T212300/node_config/prompt.md,sha256=N4jQBPO4GoIcXL9rHHDzRX5T6k2boyg2R5XtF9-Sd9Q,1201
|
|
320
|
+
devflow_engine/prompts/integration/red/example.md,sha256=m_ZQNtNvT7wWr_cTbLKGZhKw_oX-By7945PE_W3LlNQ,7192
|
|
321
|
+
devflow_engine/prompts/integration/red/code_repair/prompt.md,sha256=HPIisrnBDUMLsrw3e_aESJ9ZpY-quuZ4XaVsdTqJ2Ro,955
|
|
322
|
+
devflow_engine/prompts/integration/red/node_config/prompt.md,sha256=xPKxedxyGhNZpHEJEioc9mEKxl-Au_nIYc_jKWK-DYs,2823
|
|
323
|
+
devflow_engine/prompts/integration/red/past_prompts/20260417T212300/code_repair/prompt.md,sha256=tqioeSOj8wDQAtIKwkFm_CMQobz5JY1KkDmCwr_CI0w,1776
|
|
324
|
+
devflow_engine/prompts/integration/red/past_prompts/20260417T212300/node_config/prompt.md,sha256=WDFJNVlLsZGeOryLBZAhe4hmcD_z0vGs6LzQWEcprpc,2599
|
|
325
|
+
devflow_engine/prompts/integration/red/past_prompts/20260417T212300/red/prompt.md,sha256=EpYi4XCek0KXPJMUEnN3psXlQJhkLb1yet6rNlyFtjc,1506
|
|
326
|
+
devflow_engine/prompts/integration/red/past_prompts/20260417T212300/red_repair/prompt.md,sha256=xU3lh4aGloEcHo8NEhrk7K6aJ8vzZNhAdRrfzI3ItuU,1158
|
|
327
|
+
devflow_engine/prompts/integration/red/past_prompts/20260417T215032/code_repair/prompt.md,sha256=RccA8vRwkyucieHdMIW_DZ7XvZwyAxJ2ms-e-0a42rQ,662
|
|
328
|
+
devflow_engine/prompts/integration/red/past_prompts/20260417T215032/node_config/prompt.md,sha256=GDELPy72l3z77ChMagwRvQCgUr1-BVBdArsuRjW5iLY,2540
|
|
329
|
+
devflow_engine/prompts/integration/red/past_prompts/20260417T215032/red_repair/prompt.md,sha256=5as5mS2l6xt-vXc-IQjReLFX083tpYVJKrgN60M5oGk,647
|
|
330
|
+
devflow_engine/prompts/integration/red/red/prompt.md,sha256=4rhLss5uFQgvHjo2wySMFSxhwIOPbTIeO9Pqlwk5Fe8,702
|
|
331
|
+
devflow_engine/prompts/integration/red/red_repair/prompt.md,sha256=S7rkeKc1ZVvSqro_n_VKNdCjrHzQ3ujCBsaw39vkX-Q,751
|
|
332
|
+
devflow_engine/prompts/integration/red_review/example.md,sha256=fLFKTRjWMTgRoAz78lybGCnE5rOvwNXqX_yNSqxf_gI,2574
|
|
333
|
+
devflow_engine/prompts/integration/red_review/node_config/prompt.md,sha256=zmipEAJp6uScLd5xNwsrFYBxW0pLqe6UaqO-ovxROnQ,1126
|
|
334
|
+
devflow_engine/prompts/integration/red_review/past_prompts/20260417T212300/node_config/prompt.md,sha256=9ZCPNVzwh8jLHdFh9TJRPgOvtIc0uFrj6U0dP_Ll8hg,1173
|
|
335
|
+
devflow_engine/prompts/integration/red_review/past_prompts/20260417T212300/red_review/prompt.md,sha256=0wp74Fs5uZlXNjay5qc0db346tzmGoZlXeBiXd5rBJA,1145
|
|
336
|
+
devflow_engine/prompts/integration/red_review/red_review/prompt.md,sha256=4AL6P0n2M9ljkYvI8woSGuoA1EmQUsjBSJDXYNVpJe8,426
|
|
337
|
+
devflow_engine/prompts/integration/resolve/example.md,sha256=eykeetiv1h7hwN0H2nByxhc5BgX-0gAehmBKU7Kd4WY,4389
|
|
338
|
+
devflow_engine/prompts/integration/resolve/node_config/prompt.md,sha256=moXUYWqupf6VUh0AxB5FTRV2p0jAaQ4J4DQG5CfDrLo,2074
|
|
339
|
+
devflow_engine/prompts/integration/resolve/past_prompts/20260417T212300/node_config/prompt.md,sha256=yarE8eNmshgGouCWe3d_ShZCAylNN9C97lTImoZNX3Q,2080
|
|
340
|
+
devflow_engine/prompts/integration/resolve/past_prompts/20260417T212300/resolve_implicated_users/prompt.md,sha256=Ew8Cl0HRTSUE-yPaA03yiGBZjOxOlgR7fFcx7xWkwvE,1116
|
|
341
|
+
devflow_engine/prompts/integration/resolve/past_prompts/20260417T212300/resolve_side_effects/prompt.md,sha256=Kuyyha3HPkhoQSK0kPTQgzEcljqVglzwZb5MUAz3tPo,1162
|
|
342
|
+
devflow_engine/prompts/integration/resolve/resolve_implicated_users/prompt.md,sha256=xcBXinss5GCDfvNuKW_JuYcfFpO9WNaRGm6d3-SAvrI,532
|
|
343
|
+
devflow_engine/prompts/integration/resolve/resolve_side_effects/prompt.md,sha256=3mfc--GGCpR3Ng6J13Cbzfl4FclZIns0o-geE1np_8g,547
|
|
344
|
+
devflow_engine/prompts/integration/validate/example.md,sha256=40Umilbmyvy569Y8Qs3q1cpSGMZe9Bkyfe3JJ7w-h_w,6141
|
|
345
|
+
devflow_engine/prompts/integration/validate/build_idea_acceptance_coverage/prompt.md,sha256=sTHCAuER39jskcUyZPWkIPKPbfMk_d3S3dkoTAi5ALQ,1031
|
|
346
|
+
devflow_engine/prompts/integration/validate/code_repair/prompt.md,sha256=rWmFK4Z0gZ0R5AD5O_1dPTPz3OAYJfETCBNkznwbZ8c,1023
|
|
347
|
+
devflow_engine/prompts/integration/validate/node_config/prompt.md,sha256=eHzc9U8vGa56ft26XK-xynSlrXk_KqAD_Y7PJRjk9sg,2020
|
|
348
|
+
devflow_engine/prompts/integration/validate/past_prompts/20260417T212300/code_repair/prompt.md,sha256=L37W6MG0a1wRy7qYSoTVTo9l3GCCuu71xWbHT28dv-4,1781
|
|
349
|
+
devflow_engine/prompts/integration/validate/past_prompts/20260417T212300/node_config/prompt.md,sha256=H4nddetXP5fOelk61tAm6ev5MBvixffVTkehE_sRDJo,2279
|
|
350
|
+
devflow_engine/prompts/integration/validate/past_prompts/20260417T212300/validate_enrich_gate/prompt.md,sha256=ayLrxxCDVsXgQezXArEr42bPPxkzu3HZ3SSX-t8Movw,1501
|
|
351
|
+
devflow_engine/prompts/integration/validate/past_prompts/20260417T212300/validate_repair/prompt.md,sha256=i_M1NP9azo8F4ibPbhtDll15WKaoKL7Ie4AniCZRnko,1313
|
|
352
|
+
devflow_engine/prompts/integration/validate/past_prompts/20260417T215032/code_repair/prompt.md,sha256=NRwih8Dd_qmbeggc8xL90FxSlWIO4iY270RMpBXM1l8,667
|
|
353
|
+
devflow_engine/prompts/integration/validate/past_prompts/20260417T215032/node_config/prompt.md,sha256=vBlugvZWAFK37u-kqivlLJtdqn0DcYWSixo5sQl-EKg,2228
|
|
354
|
+
devflow_engine/prompts/integration/validate/past_prompts/20260417T215032/validate_repair/prompt.md,sha256=513Wv6r27XuheMO2UGlvA7u182a8xPL1iw2GNZ2y6EE,448
|
|
355
|
+
devflow_engine/prompts/integration/validate/validate_enrich_gate/prompt.md,sha256=3THTeesTRnFJXsAXSc752rh9kOAvvYqcUvdFIhrI3UQ,553
|
|
356
|
+
devflow_engine/prompts/integration/validate/validate_repair/prompt.md,sha256=BQlZIWVeMfH8nfmF0ORGocfR1ZB2V5OIzs6QLsXlARw,1886
|
|
357
|
+
devflow_engine/prompts/integration/write_workflows/example.md,sha256=i_TNKkoAyY8oB6Rkg2qiOqpmIM5yPnn78lpQKUdOo9Y,3408
|
|
358
|
+
devflow_engine/prompts/integration/write_workflows/node_config/prompt.md,sha256=bii_t4j2INYvZ5zHBq9kf5pU1uCa08dPcIcq23ll4UA,1382
|
|
359
|
+
devflow_engine/prompts/integration/write_workflows/past_prompts/20260417T212300/node_config/prompt.md,sha256=yJ6xAOwQIe9uChUByEpko7cQYskgS35ij8ZZgEDkK7Q,1381
|
|
360
|
+
devflow_engine/prompts/integration/write_workflows/past_prompts/20260417T212300/write_workflows/prompt.md,sha256=URoCwf_quwE7jwD5CrHr0qoPTzRfhdoA9g8_Q51GwBI,1320
|
|
361
|
+
devflow_engine/prompts/integration/write_workflows/write_workflows/prompt.md,sha256=agraI5T9AzX02v9OdDBIfdoCFMtd4TSwSmOvKxZZdkw,620
|
|
362
|
+
devflow_engine/prompts/iterate/README.md,sha256=mOb0cnyMiMrRvXID9YfgZHtLJnHFIcS1LwU-xk9paT8,318
|
|
363
|
+
devflow_engine/prompts/iterate/coder/prompt.md,sha256=Dt7uckihUtrq7dZok6IGfFZBbn4c_gL9Z_f_tssEFfA,553
|
|
364
|
+
devflow_engine/prompts/iterate/framer/prompt.md,sha256=Jf0_E1umVQKFKWRK8YxG-BUPqhxl6wn_xmUbKCm0szU,506
|
|
365
|
+
devflow_engine/prompts/iterate/iterator/prompt.md,sha256=3FtfTz2Zl-UEGN_aTXi2S09qgmFzuJfCDQpbJwFaoJE,935
|
|
366
|
+
devflow_engine/prompts/iterate/observer/prompt.md,sha256=ZNlOKTSnL-2yYQNqpCTnAoqrwehyAuTkgcxUlC7CmO0,593
|
|
367
|
+
devflow_engine/prompts/recovery/diagnosis/prompt.md,sha256=D0zlY_nEVKCsta38AhIl23TEHj1tEaJXsOZTqh6Up90,386
|
|
368
|
+
devflow_engine/prompts/recovery/execution/prompt.md,sha256=atucB000L2IVt804R9zZQvBWr4Dj7vUW4keQlJMCOoM,448
|
|
369
|
+
devflow_engine/prompts/recovery/execution_verification/prompt.md,sha256=xnXoy89H9LG-ViyuXVkH8n6vNHIjoP5h_cS8PvVXeQU,518
|
|
370
|
+
devflow_engine/prompts/recovery/failure_investigation/prompt.md,sha256=OaTYU5MAYysj8E4-UDsZeOv9KLOnaFZFudQNN29g-Kk,726
|
|
371
|
+
devflow_engine/prompts/recovery/preflight_health_repo_repair/prompt.md,sha256=OO4f_hqina2wiuxXKgSpiZ_2zOklucdZqq1YAF7cuco,524
|
|
372
|
+
devflow_engine/prompts/recovery/remediation_execution/prompt.md,sha256=VAwfPX4FLprVn9FgFC7_sizwoNsr7X3bwNIP-WGZoUA,826
|
|
373
|
+
devflow_engine/prompts/recovery/root_cause_investigation/prompt.md,sha256=kIi48Vk7iVarChvNr3cczdEzGDLlZYtzfn9i4b0XHRI,1138
|
|
374
|
+
devflow_engine/prompts/scope_idea/doctrine/prompt.md,sha256=l2yr8Am5J7zaGnzqgZa-E_y4uwonxw4PaTu8z4qfJLw,472
|
|
375
|
+
devflow_engine/prompts/source_doc_eval/document/prompt.md,sha256=jdkVQjJXa__OkvXTyyPAT2OIXEqYMzyAtvhbGO6hl5g,335
|
|
376
|
+
devflow_engine/prompts/source_doc_eval/targeted_mutation/prompt.md,sha256=OpDQDCyAPR0f1jghzEp1aGXLZgd9S8gkzzByk5psdws,637
|
|
377
|
+
devflow_engine/prompts/source_doc_mutation/domain_entities/prompt.md,sha256=RJ3Re-hqjy-oH2tWz_qrl2SSrUGRpTEgVYg7gTLx8aU,425
|
|
378
|
+
devflow_engine/prompts/source_doc_mutation/product_brief/prompt.md,sha256=kq2psxl1CPAjnutzjRLRs5WGLKuB7XZ1_Rgwl5_cW0w,473
|
|
379
|
+
devflow_engine/prompts/source_doc_mutation/project_doc_coherence/prompt.md,sha256=rj2NfNe8lAkqZ0-Ij1b-9YPVfJnb4A2dAO3cyAa_e9o,582
|
|
380
|
+
devflow_engine/prompts/source_doc_mutation/project_doc_render/prompt.md,sha256=D2wvOUdYRjSRcpsXgHj4HPNTxFk3LqjCZe17G8cD13M,825
|
|
381
|
+
devflow_engine/prompts/source_doc_mutation/source_doc_coherence/prompt.md,sha256=QXOYCCAQM0JOeBkDPQFnNklR_ijtaekuCsRdmDd9YQk,300
|
|
382
|
+
devflow_engine/prompts/source_doc_mutation/source_doc_enrichment_coherence/prompt.md,sha256=7XktypolvSTpSsyttixD8At7Mgs96g_0YcMWBjWfg0Q,519
|
|
383
|
+
devflow_engine/prompts/source_doc_mutation/user_workflows/prompt.md,sha256=2Bv-EkZwzxtPSsDGdw9YuuuzT1c_2R9c6HPSMdP-MD0,406
|
|
384
|
+
devflow_engine/prompts/source_scope/doctrine/prompt.md,sha256=AJk1gfePTdaBSw5DHvCr7Sigsk2orGaRVNZ3Dj3NdcQ,837
|
|
385
|
+
devflow_engine/prompts/ui_grounding/doctrine/prompt.md,sha256=0L5y-QjjquPABqxAHZNPkcjyHMZQSDRVncNDQa2app0,409
|
|
386
|
+
devflow_engine/docs/prompts/anti-patterns.md,sha256=-N97nhbMVvhvZy0yGt1Vqwl93DCBEbAYGrhbkXXyctY,2307
|
|
387
|
+
devflow_engine/docs/prompts/devin-agent-prompt.md,sha256=NwOfy4UBCLJl0Y-InLBLJkzSsywdpu6aXNp9yT4_jyw,3170
|
|
388
|
+
devflow_engine/docs/prompts/devin2-agent-prompt.md,sha256=VQzi79-nhQhlbGgpXdnHi3gS4RsHU5iQLEub83znG7A,3612
|
|
389
|
+
devflow_engine/docs/prompts/examples/devin-vapi-clone-reference-exchange.json,sha256=FEeV7iBEw8osisE6vIJBRuONDC6pzSyA9XuvGfXy2fs,3404
|
|
390
|
+
devflow_engine-1.0.0.dist-info/METADATA,sha256=1dSqjiQflign6Ey8_D2UyRIoMMYtEFruhXU8ZJyFakY,8601
|
|
391
|
+
devflow_engine-1.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
392
|
+
devflow_engine-1.0.0.dist-info/entry_points.txt,sha256=U5Pw4y4v4u4xcRS5DbXfemBg0RKp74kMxcnEoL0MACY,99
|
|
393
|
+
devflow_engine-1.0.0.dist-info/RECORD,,
|
devin/__init__.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"""Devin-specific evaluation and orchestration helpers."""
|
|
2
|
+
|
|
3
|
+
from .dag import DevinChatWorkflow, run_devin_chat_dag
|
|
4
|
+
from .dag_two_arm import DevinTwoArmWorkflow, run_devin_two_arm_dag
|
|
5
|
+
|
|
6
|
+
__all__ = ["DevinChatWorkflow", "run_devin_chat_dag", "DevinTwoArmWorkflow", "run_devin_two_arm_dag"]
|
devin/dag.py
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from pathlib import Path
|
|
4
|
+
|
|
5
|
+
from devflow_engine.stores.execution_store import ExecutionStore
|
|
6
|
+
from devflow_engine.vendor.datalumina_genai.core.nodes.base import Node
|
|
7
|
+
from devflow_engine.vendor.datalumina_genai.core.nodes.router import BaseRouter, RouterNode
|
|
8
|
+
from devflow_engine.vendor.datalumina_genai.core.schema import NodeConfig, WorkflowSchema
|
|
9
|
+
from devflow_engine.vendor.datalumina_genai.core.task import TaskContext
|
|
10
|
+
from devflow_engine.vendor.datalumina_genai.core.workflow import Workflow
|
|
11
|
+
from .nodes.ideation.node import IdeationAgentNode
|
|
12
|
+
from .nodes.insight.node import InsightAgentNode
|
|
13
|
+
from .nodes.intake.node import DevinIntakeNode
|
|
14
|
+
from .nodes.shared.helpers import DevinChatDagResult, build_pipeline_key, dfs_running, parse_list_option, pipeline_root, set_runtime_store
|
|
15
|
+
|
|
16
|
+
# DEPRECATED — use dag_two_arm.py (devin_chat_two_arm_dag) instead
|
|
17
|
+
DAG_ID = 'devin_chat_dag__DEPRECATED__'
|
|
18
|
+
from .nodes.shared.models import DevinChatDagEvent
|
|
19
|
+
from .nodes.shared.post import DevinResponsePostNode
|
|
20
|
+
|
|
21
|
+
class _RouteToInsightArm(RouterNode):
|
|
22
|
+
def determine_next_node(self, task_context: TaskContext) -> Node | None:
|
|
23
|
+
if str((task_context.metadata.get('route') or {}).get('route_arm') or task_context.metadata.get('route_arm') or '') in {'insight', 'neither'}:
|
|
24
|
+
return InsightAgentNode(task_context=task_context)
|
|
25
|
+
return None
|
|
26
|
+
|
|
27
|
+
class _RouteToIdeationArm(RouterNode):
|
|
28
|
+
def determine_next_node(self, task_context: TaskContext) -> Node | None:
|
|
29
|
+
if str((task_context.metadata.get('route') or {}).get('route_arm') or task_context.metadata.get('route_arm') or '') == 'ideation':
|
|
30
|
+
return IdeationAgentNode(task_context=task_context)
|
|
31
|
+
return None
|
|
32
|
+
|
|
33
|
+
class DevinIntakeRouter(BaseRouter):
|
|
34
|
+
def __init__(self, task_context: TaskContext | None = None):
|
|
35
|
+
super().__init__(task_context=task_context)
|
|
36
|
+
self.routes = [_RouteToIdeationArm(), _RouteToInsightArm()]
|
|
37
|
+
self.fallback = InsightAgentNode()
|
|
38
|
+
|
|
39
|
+
class DevinChatWorkflow(Workflow):
|
|
40
|
+
workflow_schema = WorkflowSchema(description='Devin chat DAG (Devin intake -> insight | ideation -> post)', event_schema=DevinChatDagEvent, start=DevinIntakeNode, nodes=[NodeConfig(node=DevinIntakeNode, connections=[DevinIntakeRouter]), NodeConfig(node=DevinIntakeRouter, connections=[InsightAgentNode, IdeationAgentNode], is_router=True), NodeConfig(node=InsightAgentNode, connections=[DevinResponsePostNode]), NodeConfig(node=IdeationAgentNode, connections=[DevinResponsePostNode]), NodeConfig(node=DevinResponsePostNode, connections=[])])
|
|
41
|
+
|
|
42
|
+
def run_devin_chat_dag(*, repo_root: Path, store: ExecutionStore, idea_id: str, text: str | None, source_path: Path | None, max_stories: int, planes: list[str], response_mode_label: str | None = None, source_session_id: str | None = None) -> DevinChatDagResult:
|
|
43
|
+
_ = response_mode_label
|
|
44
|
+
normalized_planes = parse_list_option(planes)
|
|
45
|
+
pipeline_key = build_pipeline_key(repo_root=repo_root, idea_id=idea_id, text=text, source_path=source_path, max_stories=max_stories, planes=normalized_planes)
|
|
46
|
+
pipeline_dir = pipeline_root(repo_root, idea_id=idea_id, pipeline_key=pipeline_key)
|
|
47
|
+
pipeline_dir.mkdir(parents=True, exist_ok=True)
|
|
48
|
+
run_id = store.create_run(dag_id=DAG_ID, dag_version='v2_deprecated', root_correlation_id=f'corr_{pipeline_key}', config={'idea_id': idea_id, 'pipeline_key': pipeline_key, 'max_stories': max_stories, 'planes': normalized_planes, '_deprecated': True})
|
|
49
|
+
store.mark_run_started(run_id=run_id)
|
|
50
|
+
set_runtime_store(store, run_id)
|
|
51
|
+
try:
|
|
52
|
+
dfs_running(project_id=f'unregistered:{idea_id}', run_id=run_id, summary='Running Devin chat DAG', idea_id=idea_id)
|
|
53
|
+
ctx = DevinChatWorkflow().run({'repo_root': str(repo_root), 'idea_id': idea_id, 'raw_text': text, 'source_path': str(source_path) if source_path else None, 'max_stories': max_stories, 'planes': normalized_planes, 'pipeline_key': pipeline_key, 'source_session_id': source_session_id})
|
|
54
|
+
exit_code = int(ctx.metadata.get('exit_code') or 0)
|
|
55
|
+
store.mark_run_finished(run_id=run_id, status='succeeded' if exit_code == 0 else 'failed')
|
|
56
|
+
return DevinChatDagResult(exit_code=exit_code, run_id=run_id, pipeline_dir=pipeline_dir, message=str(ctx.metadata.get('message') or ''), outcome=dict(ctx.metadata.get('outcome') or {}))
|
|
57
|
+
finally:
|
|
58
|
+
set_runtime_store(None, None)
|