chore(release): version packages#274
Merged
Merged
Conversation
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
rn-dev-agent-cdp@0.43.0
Minor Changes
abe4411: Expose
paramsin themaestro_runandcdp_run_actionMCP tool schemas.Both handlers have accepted
paramssince GH Wire cdp_run_action into /run-action slash command (requires params plumbing) #116 (forwarded to maestro as-e KEY=VALUEon the first attempt AND the post-repair retry), but the zod registrations omitted the field — and zod strips unknown keys by default, so a caller's parameter bindings were silently dropped at the tool-call layer and a parameterised action failed at runtime with unset${VAR}placeholders. Found by Codex review on PR feat(skills): creating-actions — guided authoring of reusable Maestro actions #272 (the newcreating-actionsskill recommendscdp_run_action({ actionId, params, trigger }), which was un-callable as advertised;commands/run-action.mddocumented the same call shape). Key-format validation (/^[A-Z_][A-Z0-9_]*$/) stays in the handler. Wiring test pins both registrations.rn-dev-agent-plugin@0.51.0
Minor Changes
abe4411: New
creating-actionsskill — guided authoring of reusable Maestro actions.Walks the agent through the full authoring contract: inventory-dedup scan before authoring (via
learned-actions.mjs), creation-path choice (recorder vs direct YAML vsmaestro_generate), selector grounding (never invent a testID), a required ASCII flow diagram of screens/transitions annotated with exact testIDs and${PARAMS}(embedded in the YAML header — glyph-first lines so the M7 parser can't misread a diagram line as metadata, which would otherwise silently overwrite fields likestatus), the M7 header contract, pre-replay validation (header round-trip through the inventory parser, placeholder↔params coverage, selector audit), and replay-to-promote viacdp_run_action(never hand-setactive). Ships with a full M7 field reference (references/m7-header-reference.md) and a toolchain-validated worked example (examples/add-product-to-cart.yaml— verified againstparseM7Header,learned-actions.mjs, and Maestro's syntax checker). Routed fromusing-rn-dev-agent(decision tree + skill map) and cross-linked fromrn-testing's M7 section.