canvas-app
Erstellt oder bearbeitet eine Power Apps Canvas App über die Canvas Authoring MCP-Coauthoring-Sitzung. Handhabt die Generierung neuer Apps aus Anforderungen, einfache Inline…
npx skills add https://github.com/microsoft/power-platform-skills --skill canvas-appCreate or Edit a Canvas App
Create or edit a Power Apps canvas app for:
$ARGUMENTS
Establish the Workspace
Canvas Authoring tools operate on a local directory containing the app YAML.
- Reuse the current directory when it already contains
App.pa.yaml. - Otherwise, reuse the single immediate child directory containing
App.pa.yaml, when exactly one exists. - Otherwise, derive a short kebab-case folder name from the app name or requirements,
create it with
Bash, and resolve its absolute path. - Call
sync_canvaswith that absolute working directory before reading or editing app files. Do not proceed if sync fails.
Always use absolute paths for app files. Never edit _EditorState.pa.yaml; Studio owns it.
Route the Request
Inspect the synced .pa.yaml files before choosing a workflow. A blank app normally contains
App.pa.yaml, Screen1.pa.yaml, and _EditorState.pa.yaml.
Treat the app as empty when it has no screens with meaningful leaf controls. Containers without leaf controls do not make the app non-empty.
- Empty app: read
${PLUGIN_ROOT}/references/CreateWorkflow.mdand follow it. - Existing app: read
${PLUGIN_ROOT}/references/EditWorkflow.mdand follow it.
Do not load both workflow documents.
Planned Build Handoff
CREATE and complex EDIT workflows return here after the planner finishes.
- Read
[working directory]/canvas-app-plan.mdreturned by the planner. - Verify its
## Requirement Coveragetable maps every concrete requested noun and interaction to a visible affordance. Any approximation must be explicit and must not use UI copy that claims the unavailable interaction is exact. - Verify its
## Action Contractstable:- Every requested or approved action has its own row and reachable entry point.
- Create, edit, delete, search, filter, approve, reject, period, and export behaviors are not collapsed into vague combined rows.
- When review distinguishes approved and rejected outcomes, Approve and Reject/Decline have separate contracts owned by the same eligible record surface.
- Every mutation names an observable bound result, not only a confirmation message.
- Every mutation declares a write set and receipt proof set. For create/edit, reject the plan when any user-entered or user-selected write-set field is absent from the proof set.
- Supporting setup actions exist when required to exercise an explicitly requested lifecycle, relationship, comparison, or ranking.
- Role-scoped management of all primary records includes separate visible select/edit/save and remove/cancel paths, not only review or status controls.
- Create/edit contracts define required inputs, directly selectable finite choices, stable identity, edit prepopulation, cancel/reset behavior, and post-save evidence.
- Every row names a precondition, source and stable identity, exact transition and postcondition, observer reading that source, and visible evidence.
- Verify its
## Functional Test Matrix:- Every Action Contract has at least one deterministic Given/When/Then success row.
- Every required invalid, blocked, empty, clear/reset, or boundary path has a row.
- Every
Thennames a source postcondition and an evidence surface that reads it. - Local/mock scenarios use concrete seeded IDs and values. Filter scenarios include at least two matching records and one non-matching record.
- EDIT scenarios cover existing behavior touched by changed sources, fields, controls, or observer formulas.
- Verify its
## Dispatchtable:- Every row has
Action,Screen,Target File,YAML Key,Name Prefix, andScreen Brief. - CREATE rows use
Create; EDIT rows useModifyorCreate. - Target files and screen briefs are absolute paths under
[working directory]. - No two rows target the same file.
- No two rows share a
Name Prefix. - In CREATE mode the first row targets
[working directory]/Screen1.pa.yamlwith YAML keyScreen1. ## Editor State Changesexists and contains exact final order lists orNone.
- Every row has
- Confirm
[working directory]/canvas-app-shared.mdand every dispatch row'sScreen Briefexists. Verify each brief's assignment matches its dispatch row and includes every Action Contract owned by that screen under## Required Actionsand every scenario it exercises under## Functional Test Scenarios. - In EDIT mode, apply the
### Before buildersgroup of## App Changesto[working directory]/App.pa.yamlnow. Screens bind to those collections, formulas and variables, and compiling them against a staleApp.pa.yamlproduces a flood of false name errors. - Confirm the planner reported a clean
compile_canvasfor[working directory]/App.pa.yaml. If it did not, compile now and resolve everyApp-level diagnostic before dispatching. For EDIT mode, compile after applying the before-builder app changes and resolve App-level diagnostics before dispatching. - Invoke
canvas-screen-builderonce per dispatch row, in waves of at most three. Fire the wave's invocations together in one message, wait for that wave to return, then dispatch the next.
Never dispatch more than three builders at once. Larger fan-outs have hung without returning, and waves of three get you the first compile sooner, which is where systemic defects surface.
If any pre-dispatch check fails, do not start builders. Re-invoke the planner with the specific defects and repeat the checks on the corrected artifacts.
Pass each builder only:
Action: [Create / Modify]
Screen: [logical screen name]
Target file: `[working directory]/[file].pa.yaml`
YAML screen key: [key from dispatch row]
Control name prefix: [prefix from dispatch row]
Shared plan: `[working directory]/canvas-app-shared.md`
Screen brief: `[working directory]/[file-base].screen-plan.md`
Plugin root: ${PLUGIN_ROOT}
The target file, YAML key, and name prefix are authoritative. Modify actions preserve the key already present in the target file.
Compile after each wave returns, before dispatching the next. A systemic mistake in the first wave is usually repeated in every later screen. Repair files that already exist in place; only rows still waiting for dispatch receive corrected briefs.
A between-wave compile can report a Navigate target that belongs to a later wave as
unrecognized. Confirm it matches a remaining dispatch row and leave it in place.
After all builders finish:
- Check each builder's
Functional:section before accepting itsQA:line. It must contain exactly onePASStrace per Required Action in that screen's brief, and each trace must name the precondition, control event, source/stable-ID operation, postcondition, and observer/evidence. A missing link, generic claim, orBLOCKEDresult sends that screen back for targeted repair and a corrected trace; do not accept checklistPASSas a substitute. - Check each builder's
QA:line. It must list an outcome for every check in${PLUGIN_ROOT}/references/QAChecks.md. Treat these as unrun and send the screen back for self-QA only — not a rebuild — before you compile:- a missing or truncated
QA:line, a line that omits any check listed in${PLUGIN_ROOT}/references/QAChecks.md, or a bare fix count; - an outcome that contradicts the screen structure — for example,
QACHK-CROSS-AXIS-ALIGNMENTisN/Adespite AutoLayout children,QACHK-ACCESSIBLE-LABEL-MISSINGisN/Adespite content or input controls,QACHK-LOW-CONTRAST-TEXTisN/Adespite a non-default coloured surface, orQACHK-ROOT-CONTAINMENTisPASSwhile a responsive root has screen-level siblings; QACHK-GALLERY-ROW-FITS-CONTENTisN/Adespite the screen containing a Gallery;QACHK-ACTION-LABEL-FITisPASSwhile a multiword action directly under vertical AutoLayout lacksWidth: =Parent.Width;PASSis valid after a complete inspection finds no defect; never reject it solely because the screen has many controls. This costs one cheap turn. The defects these checks catch — clipped headings, invisible buttons, placeholder cards — are invisible tocompile_canvas, so if you skip this the app ships broken while reporting clean.
- a missing or truncated
- A self-QA follow-up is not a rebuild or a screen-generation re-dispatch. Tell the
builder to inspect and repair the existing target file, then return the corrected
QA:line without regenerating the screen. - Compare every repeated navigation block against
[working directory]/canvas-app-shared.md: same destination items, same order, no extra brand/label injected into one screen's nav, and width formulas that fit the narrowest target. This is an app-wide check builders cannot perform because each sees only one screen. - Verify each
## Action Contractsrow end to end against the generated files: the entry point is reachable, the named event is wired, and the observable result is visible immediately after the action. For mutations, require an in-viewport receipt bound to the returned record, changed stable ID, or deletion snapshot. Compare the handler formula, declared write set, declared proof set, and receipt controls one-for-one. For create/edit, every user-entered or user-selected field written by the handler needs a readable labeled receipt binding. Navigation, a notification, hidden state, or a row somewhere in a longer list cannot replace it. Compile success does not prove runtime usability. - Execute every
## Functional Test Matrixrow symbolically against the final formulas. Confirm the Given state makes the entry point eligible, the When event targets the declared source and stable ID, the Then values follow from the operation, and the evidence formula reads that post-state. Repair the owning file when any link depends on an unstated assumption or a different source/field. - For every primary-record list, verify each row or its immediately reachable detail renders the canonical human-readable identity as full visible text. Avatar initials, icons, record IDs, accessible labels, or evaluator inference cannot replace the identity.
- When Approve and Reject/Decline are paired contracts, verify every eligible pending record exposes both decisions on the same row or the same immediately reachable detail at phone width. Send the owning screen back when either decision is missing; never accept a single-sided review queue as a density tradeoff.
- For every create/edit lifecycle, verify short static choices use radio buttons, visible choice buttons, or a dropdown that commits by click or tap without typed filtering, then trace create → bound mutation receipt → visible Edit → prepopulated form → stable-ID save → bound mutation receipt with updated values. At phone width, verify identity, status, and required lifecycle actions remain visible or have an immediately visible overflow/detail entry. Send only the owning screen back for self-QA when any link is missing.
- Reject
QACHK-CARD-PLACEHOLDERPASSwhen a ModernCard displays Title, Subtitle and Description withHeight < 180; send that screen back for self-QA. - If a builder returns
Status: Blocked, re-invoke the planner to correct that screen brief, then rerun only the affected builder. Never ask a builder to guess missing definitions. Status: Blockedis the only reason to rerun screen generation from a brief. Compile diagnostics are not. Once a screen file exists you repair it in place with targeted edits. Re-running generation rewrites the whole screen from scratch, discards the fixes already applied, and produces a fresh crop of defects. That loop does not converge.- In EDIT mode, apply the
### After buildersgroup of## App Changesin[working directory]/canvas-app-plan.mdto[working directory]/App.pa.yaml. The### Before buildersgroup was already applied at pre-dispatch. If a group saysNone, do not edit the file for it. - The orchestrator is the sole owner of EDIT changes to
[working directory]/App.pa.yaml. - Apply
## Editor State Changesfrom[working directory]/canvas-app-plan.mdto[working directory]/_EditorState.pa.yamlafter all builders finish. If it saysNone, leave the file unchanged. - Read
${PLUGIN_ROOT}/references/ValidationWorkflow.mdand follow it.
Shared Invariants
- Never guess control properties. Use
describe_control; only use properties returned for that exact control type. - Use exact RGBA values and shared variable names from approved plans.
- Control names are unique across the entire app, not per screen. Two screens may
not both contain a control named
NavBarorbtnBack; the compiler rejects the second withAn entity with name '...' already exists. Every control a builder writes uses the standard control-type abbreviation followed by that screen's assigned name prefix, such asconDiscNavBarorbtnDetailBack. This applies especially to UI blocks repeated on many screens — nav bars, headers, toolbars, badges. - Copy control creation keywords from
describe_control.list_controlsprovides the name used to querydescribe_control; it is not the authority for authored YAML. Copy the returnedControl:value and every requiredComponentName,ComponentLibraryUniqueName,Variant, andLayoutkeyword verbatim. Never strip, normalize, or reconstruct those values. - Never invent an enum type name.
describe_controlprints the exact name on theEnum name:line of each enum property. Copy it verbatim. Enum names do not follow from control names:Badge.AppearanceisBadgeCanvas.Appearance,Progress.ShapeisProgress.Shape, andModernDropdown.Appearanceis justAppearance. An enum member that starts with a digit must be quoted too —DecimalPrecision.'1', neverDecimalPrecision.1, which fails withExpected operatorandExpected an operandrather thanName isn't recognized. - In CREATE mode, reuse
[working directory]/Screen1.pa.yamlfor the landing screen and setApp.StartScreento=Screen1. - Never navigate from
App.OnStartor the start screen'sOnVisible. - Keep mock data compact: roughly 5-8 short rows per collection.
- Builders own exactly one screen file. The planner owns CREATE-mode
App.pa.yaml. The orchestrator owns EDIT-modeApp.pa.yaml. - Compile early and often.
App.pa.yamlis validated before builders are dispatched, and again as soon as the first builder returns. Never defer the first compile until every file is written. - Do not report completion until the workspace compiles clean and the functional conformance gate passes, or remaining compile and functional defects are explicitly reported.