chore(release): v0.6.19 — phase-plan resolution recognizes config_source plugins#285
Merged
Conversation
…no-YAML) resolve_phase_plan_for_workflow_ref had a pre-check that errored 'workflow not available until .animus/workflows.yaml...' whenever no on-disk YAML / pack / compiled-cache / legacy-config existed — it did NOT account for an installed config_source plugin. So a config-postgres-only project (no .animus/workflows/*.yaml) could not resolve ANY workflow via workflow/run, even though load_workflow_config reads config-postgres fine (config get/validate showed all workflows). Add config_source_installed() to the gate, mirroring load_workflow_config's own check in loading.rs, so config_source-only projects resolve workflows. This is the run-path analogue of the v0.6.18 scaffold fix; together they make a true no-YAML (config-postgres) portal work end to end.
…rce plugins Completes no-YAML support: resolve_phase_plan_for_workflow_ref now treats an installed config_source plugin as an authoritative config source, so config-postgres-only projects (no .animus/workflows/*.yaml) resolve workflows via workflow/run. Pairs with the v0.6.18 scaffold fix.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
What
resolve_phase_plan_for_workflow_ref(theworkflow/runresolution path) had a YAML-assuming pre-check: it errored "workflow not available until .animus/workflows.yaml…" whenever no on-disk YAML / pack / compiled-cache / legacy-config existed — ignoring an installedconfig_sourceplugin. So a config-postgres-only project (no.animus/workflows/*.yaml) could not resolve ANY workflow viaworkflow run/ MCPrun_workflow, even thoughload_workflow_configreads config-postgres fine (config get/validateshowed all workflows).Surfaced by the launchapp portal no-YAML cutover.
Fix
config_source_installed()to the pre-check gate, mirroringload_workflow_config's own gate inloading.rs. config_source-only projects now resolve workflows.test-utils(clippy hygiene from the v0.6.18 scaffold change).Run-path analogue of the v0.6.18 scaffold fix — together they make a true no-YAML (config-postgres) portal work end to end.
Verification
🤖 Generated with Claude Code