v0.4.1
Immutable
release. Only release title and notes can be modified.
The first 0.4.x train stop for SP12 (ephemeral, agent-authored workflows). It lands
the two prerequisites that have no SP7 dependency — the authoring surface (SP12a)
and the provider registry (SP12d). Both are authoring/preflight primitives: they
let an agent write and check a workflow before any ephemeral run core exists. Nothing
in this release executes a workflow; that is SP12e (0.4.3).
Added
- Published workflow JSON Schema —
schema/workflow.schema.json. The full
workflow document is now described by a canonical JSON Schema, exposed to MCP
clients as a resource atmaestro://schema/workflow.json. An authoring agent can
fetch the schema, generate a workflow against it, and validate locally before
submission. maestro_validate_workflowMCP tool. Validates a workflow either inline (a
JSON document passed directly) or from disk (a path), returning structured
validation codes so an agent can run a repair loop. Bounded by a
max_validate_attemptsguard with an explicit recovery path.maestro_list_providersMCP tool + provider registry
(src/provider-registry.mjs). Enumerates configured providers with capability
flags (src/adapters/capabilities.mjs) and best-effort auth preflight, so an
authoring agent can target only providers that are actually available. The
registry/preflight primitives land here; the run-time enforcement of provider
validation codes arrives with the ephemeral run core (SP12e).- Exemplar workflow library —
examples/. Canonical, schema-valid workflows an
agent (or a human) can copy from:default,parallel-group,github-tracker,
andfull-audit-sweep.
Fixed
- herdr provider-alias resolution. Aliases (e.g.
xcodex) are now resolved via
bash -icso the alias expands from the interactive shell; previously the runner
exited 127 because the alias was not onPATHin a non-interactive shell.