Phase 1 stack #4: agentic-component escape hatch - #96
Open
matthewmoorcroft wants to merge 8 commits into
Open
matthewmoorcroft wants to merge 8 commits into
matthewmoorcroft wants to merge 8 commits into
Conversation
Add AgenticComponentActivity to the IR: a generic passthrough for source activities the typed engine cannot express, carrying authored bundle files, resources and a raw Databricks task fragment. Wire it through the workflow preparer dispatch, IR (de)serialization and the DAB writer (keeping agentic files within the bundle source tree and honouring write_to_bundle_root), and add a bundle-invariants check that every pipeline task reference resolves. Consolidates PR #91 (generic agentic bundle component passthrough). Co-authored-by: Isaac <no-reply@databricks.com>
Propagate the flowx-enrich skill + discover-chains-into-enrich reframe up the stack. No new skill content on this branch. Co-authored-by: Isaac <no-reply@databricks.com>
…ponent Propagate discover warning/units + enrich edge_type guidance + GA-grounding up the stack. No edits originate on this branch. Co-authored-by: Isaac <no-reply@databricks.com>
…-component Propagate the --adf-source-path warning correction and the enrich GA-grounding rework up the stack. No edits originate on this branch. Co-authored-by: Isaac <no-reply@databricks.com>
…to stack/agentic-component Co-authored-by: Isaac <no-reply@databricks.com>
…stack/agentic-component Co-authored-by: Isaac <no-reply@databricks.com>
…ck/agentic-component Co-authored-by: Isaac <no-reply@databricks.com>
…ease_state examples) into stack/agentic-component Co-authored-by: Isaac <no-reply@databricks.com>
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Part of the Phase 1 stack. Base:
stack/agentic-insights. (Content of the former #91.)What this adds
A generic in-engine escape hatch so an agent can author bundle components the deterministic engine can't type — arbitrary files and resource definitions (e.g. a Lakeflow Connect pipeline) — packaged verbatim and structurally validated.
AgenticComponentActivityIR type (models/ir.py):files[]({path, content|binary_content}),resources[]({resource_key, definition} verbatim), ataskwiring fragment,raw_definitionir_serde.py) + deserialize before the placeholder fallback (dab_writer.py) — never silently stubbedactivity_preparers/agentic_component.py): files → notebooks, resources →pipeline_resources, wiring → taskbundle_invariants.py: bundle-widepipeline_task→ declared-resource reference checkAdditive; existing types, preparers, and the placeholder fallback are unchanged.