npx skills add ...
npx skills add microsoft/power-platform-skills --skill genpage
Creates, updates, and deploys Power Apps generative pages for model-driven apps using React v17, TypeScript, and Fluent UI V9. Orchestrates specialist agents for planning, entity creation, and code generation. Use it when user asks to build, retrieve, or update a page in an existing Microsoft Power Apps model-driven app. Use it when user mentions "generative page", "page in a model-driven", or "genux". This skill stands alone and does not require /app-builder — but if the user wants a whole app built (tables, forms, views, sitemap) rather than pages for an app that already exists, use /app-builder instead.
npx skills add microsoft/power-platform-skills --skill genpage
Plugin check: Run
node "${PLUGIN_ROOT}/scripts/check-version.js"— if it outputs a message, show it to the user before proceeding.
Triggers: genpage, generative page, create genpage, genux page, build genux, power apps page, model page Keywords: power apps, generative pages, genux, model-driven, dataverse, react, fluent ui, pac cli Aliases: /genpage, /gen-page, /genux
This skill orchestrates specialist agents across the create and edit flows:
Create flow:
genpage-planner — validates prerequisites, gathers requirements, detects what
entities and apps exist, and returns a proposed plan for the orchestrator to present.
Writes genpage-plan.md once the orchestrator re-invokes it with the approval outcome.
May pause and return connector_discovery_required (see 2).genpage-connector-builder — top-level orchestrator dispatch for connector
feature-gating and discovery; writes connector-bindings.md + connectors.json.
Runs after the planner has resolved create-vs-edit and the target environment
(discovery is mutating), then the planner is re-invoked with its contract.
genpage-customapi-builder — the same top-level dispatch for server-side
Custom API (Action/Function) needs; writes custom-api-bindings.md + actions.json.genpage-entity-builder — creates Dataverse entities (tables, columns,
relationships, choices, sample data) via the plugin's Node.js Web API scriptsgenpage-page-builder — generates one complete .tsx file per page; multiple
builders run in parallel for multi-page requestsEdit flow:
genpage-connector-builder — top-level orchestrator dispatch when an edit adds,
replaces, discovers, removes, or clears connector bindings; preserves unchanged bindings
when the edit does not touch them, or when the connectors rollback gate is off.
genpage-customapi-builder — the same top-level dispatch when an edit adds, replaces,
discovers, removes, or clears Custom API bindings.genpage-edit-planner — reads the downloaded page artifacts, gathers change
requirements, presents an edit plan, writes genpage-edit-plan.mdYou (the skill) coordinate the agents and own connector and Custom API dispatch, app creation, RuntimeTypes generation, deployment, browser verification, and the inline application of planned edits.
@fluentui/react-components exclusively (DatePicker from @fluentui/react-datepicker-compat, TimePicker from @fluentui/react-timepicker-compat).tsx file100vh/100vwFollow these phases in order for every /genpage invocation.
Derive a short folder name from the user's requirements:
$ARGUMENTScandidate-tracker)mkdir -p <folder-name> (bash/PowerShell; on cmd use mkdir <folder-name>,
which has no -p and errors if the folder exists)Write package.json and genpage.d.ts into the working directory so the
developer can npm install and get IntelliSense, type-checking, and "go to
definition" in their editor. Versions come from
references/supported-dependencies.md (single source of truth:
scripts/lib/supported-dependencies.js).
<kebab-slug> is the same slug used for the working directory.--features charts,datepicker,timepicker (comma-separated) only when
the requirements clearly call for them; otherwise omit and keep the
manifest lean.--force to overwrite (used in regeneration flows when versions drift).⚠️ CRITICAL — the interactive steps run HERE, in the main conversation loop. You MUST NOT dispatch them to a
Tasksubagent.A
Tasksubagent is headless:AskUserQuestion,EnterPlanModeandExitPlanModenever reach the user from inside one. A flow that specifies them there cannot complete — the question is never answered and the approval never given. This is the same rule/app-builderfollows, and the reason its subagents are headless workers only.
genpage-planneris therefore a headless discovery agent. It runs the read-only work and returns what it found; you ask the questions and present the plan.Run in the main loop (never delegated):
- Prerequisite validation (
node --version,pac helpversion > 2.10.0)- Auth verification (
pac auth list, environment selection)- The structured "Create new / Edit existing" question (
AskUserQuestion)- Language detection (
pac model list-languages) — only on new-page path- Entity existence detection (
pac model list-tables --search)- App detection (
pac model list) with proper selection prompts- Plan-mode presentation and approval (
EnterPlanMode/ExitPlanMode)- Telling
genpage-plannerthe approval outcome — it writesgenpage-plan.mditself — and confirming the file exists before Phase 2Steps 1, 2, 4, 5, 6 are read-only discovery and may be delegated to
genpage-planner; steps 3, 7 and 8 never can. Delegating the discovery is an optimisation, not a requirement — running it inline is equally correct, butgenpage-plan.mdis still written by the planner either way (see step 6 of the Steps list): its section headings are a machine-readable contract every downstream phase parses by name, so it has exactly one author. If you ran the discovery inline, dispatch the planner once with what you found, so it has the context to produce the plan without repeating your reads.Never skip the prereq/auth steps, even when
$ARGUMENTSalready states the intent. A stated intent lets you skip question 3; it does not establish that the CLI is present, authenticated, or pointed at the right environment.Whoever runs a step records it in
workflow-log.mdin the documented format —AskUserQuestion: <question> → <answer>,EnterPlanMode calledfollowed by the response. The log is the contract the eval harness reads, and it does not care which loop made the call.
Copilot CLI autopilot and Claude Code auto-accept drive this skill with no user watching. Every gate below is written as "ask the user", and in those modes there is nobody to answer: the run either stalls on a question no one sees or, worse, records an answer nobody gave. Resolve the mode once, at the start of Phase 1, and carry it through every gate:
One JSON line, always exit 0 — "there is no user" is a fact about the run, not a failure of it:
A run is unattended when --non-interactive is passed or
POWER_PLATFORM_SKILLS_NONINTERACTIVE is 1/true — the same switch
/app-builder already uses, so one setting covers both skills.
When interactive is false, do not call AskUserQuestion, EnterPlanMode or
ExitPlanMode at all. Take the documented default and record it in
workflow-log.md as Unattended default: <question> → <answer> (<reason>), so
the log still shows what decided the run:
| Gate | Attended | Unattended |
|---|---|---|
| Recording the resolved mode | Nothing to record | Write the mode itself as Unattended default: interaction mode → unattended (<reason>) before the first gate. Record it with this marker, not as free prose such as Interaction mode: unattended — the evaluator keys on the marker, and prose forms are indistinguishable from an attended log that merely mentions the word (Mode: unattended = false, not unattended). |
| Create new / edit existing (step 2) | AskUserQuestion | Whatever $ARGUMENTS states. With nothing stated, create new — the only additive choice. |
An agent returns needs_input (step 4) | Ask, then re-invoke | Re-invoke with the option the agent marked "default": true. If it marked none, halt. |
| Plan approval (step 5) | EnterPlanMode / ExitPlanMode | Treat the plan as approved and continue to step 6, which still writes genpage-plan.md through the planner. The plan is recorded, just not presented. Log this gate as Unattended default: plan approval → approved (<reason>) — the evaluator looks for the plan/approval wording and approved on that one line, so a paraphrase such as → auto-approve is read as a missing approval record. |
| Browser verification (Phase 7) | Offer it | Skip it. |
Suppressing a prompt never authorizes destructive work. Editing an existing
page overwrites source nobody reviewed, so on the edit path an unattended run
requires the page to be named explicitly in $ARGUMENTS. Do not infer the target
from a search result and do not fall back to "the only page that matched". If the
target is ambiguous, halt and say so — an unattended run that guesses which
page to overwrite is the one failure this table exists to prevent.
Halting is a normal outcome here, not an error to route around: report what was missing and stop, so the run can be re-driven with the decision supplied.
Run the prerequisite, auth and discovery steps (inline, or via
genpage-planner as a headless worker). Connector discovery has not run
yet, so the contract is the literal No connector bindings., with discovery
available on request (see 1a). Custom API discovery is likewise orchestrator-
owned and has not run either, so its contract starts as the literal
No custom API bindings., with discovery available on request (see 1b).
Ask question 3 (create new / edit existing) with AskUserQuestion, unless
$ARGUMENTS already settles it. On edit, jump to the Edit Flow section.
If discovery reports { "action": "connector_discovery_required" }, invoke
genpage-connector-builder with the intent — Mode: create for a new
page, Mode: edit for an edit — using the resolved environment URL, then
re-run discovery with the builder's ## Connector Bindings contract and
connectors.json status. If it instead reports
{ "action": "custom_api_discovery_required" }, invoke genpage-customapi-builder
the same way (same mode, resolved environment URL, plus the returned pageTables),
then re-run the planner with the builder's ## Custom API Bindings contract and
actions.json status (see 1b).
If genpage-connector-builder or genpage-customapi-builder instead reports
that its declared file or process-execution tools are unavailable, do not
retry the same worker. Record the worker failure, read that worker's agent
file, and run the discovery-builder workflow inline in this orchestrator
using the same resolved mode, environment, intent, and safety gates. This
inline fallback is recovery from task-runtime tool exposure only; it does not
bypass connector/custom-API feature gates or user decisions.
If any agent returns { "action": "needs_input", … }, ask its questions here
with AskUserQuestion, record them in workflow-log.md, and re-invoke that
agent with the answers. Agents never prompt; they request.
Present the plan with EnterPlanMode and get approval via ExitPlanMode.
On a revision request, re-invoke the planner with the requested revisions and
present the revised plan again.
On approval, re-invoke genpage-planner with the approval outcome plus
the plan body it returned and everything it already discovered. The planner
writes genpage-plan.md in its own final step, and it only reaches that step
when it is told the plan was approved — a Task subagent is headless, so it
cannot see the ExitPlanMode result any other way. A re-invocation is a fresh
run with no memory of the last one: carry the state forward or it will re-ask
questions the user has already answered, or re-derive a plan that is not the
one they approved. Same rule as Phase 2b. Do not write the file yourself — its
section headings are a machine-readable contract that every downstream phase
parses by name.
If genpage-planner reports that the file tools needed to write the approved
genpage-plan.md are unavailable, do not retry it and do not write the plan
inline. Halt with the approved plan body and failure recorded. Planner
authorship is the provenance gate for every downstream phase.
Confirm <working-dir>/genpage-plan.md exists before starting Phase 2.
Reaching Phase 2 without it means building from a plan nobody approved, and
Phase 2 reads that file as its first action.
If it is missing, do not proceed and do not write it yourself. Re-invoke the planner once more with the approval outcome and the plan body. If it is still missing, stop and tell the user what was approved and what failed to be written — a hand-written substitute is a plan with no provenance, and every later phase will treat it as approved.
genpage-connector-builder is dispatched only by this top-level orchestrator,
not by genpage-planner. This keeps connector discovery and its rollback gate in one
agent while avoiding nested Task calls from the planner.
Never run discovery before the planner returns — not even when $ARGUMENTS
obviously mentions SharePoint, Teams, Office 365 or a custom REST source.
Discovery is a mutating operation: it can create a connection reference. The
planner is what resolves (a) create vs. edit and (b) which environment, and it may
resolve either differently from the active pac auth profile. A connection
reference created in the wrong environment, or in create mode for what turns out
to be an edit, cannot be undone by discarding the local outputs.
So the sequence is always: plan first, then discover, then re-plan.
No connector bindings.
and is told discovery has not run.$ARGUMENTS
or from its own user clarification — it returns
{ "action": "connector_discovery_required", "intent": "..." } together with
the resolved action and environment URL.genpage-connector-builder with that mode, that environment
URL, the working directory and ${PLUGIN_ROOT}. Read
<working-dir>/connector-bindings.md and verify <working-dir>/connectors.json
is a bare JSON array, then re-run the planner with the refreshed contract.The builder remains the single owner of connector discovery and of the connectors
rollback gate: it probes first, writes No connector bindings. + [] when the gate
is off or the page needs no connector, and performs all connection discovery only
when one is required.
genpage-customapi-builder is likewise dispatched only by this top-level orchestrator,
not by genpage-planner — the planner has no Task tool, and the builder may need to ask
the user which Custom API to bind, which only the main loop can do. Custom API discovery is
read-only (a Web API query over the Custom API tables), so unlike connector discovery it
carries no "wrong environment / wrong mode cannot be undone" hazard. It still runs after the
planner so it targets the environment the planner resolved and binds to the page tables it
detected.
No custom API bindings. and is
told discovery has not run.$ARGUMENTS or from its own user clarification — it returns
{ "action": "custom_api_discovery_required", "intent": "...", "resolvedAction": "create", "envUrl": "...", "pageTables": "..." }.genpage-customapi-builder with that mode, environment URL, page tables,
the working directory and ${PLUGIN_ROOT}. Read <working-dir>/custom-api-bindings.md and
verify <working-dir>/actions.json is a bare JSON array, then re-run the planner with the
refreshed contract.The builder remains the single owner of the custom-api feature gate: it probes first, writes
No custom API bindings. + [] when the gate is off or the page needs no Custom API, and
performs discovery only when one is required.
Pass a prompt that includes:
$ARGUMENTS${PLUGIN_ROOT}<working-dir>/connector-bindings.md,
or the literal No connector bindings. when discovery was not needed<working-dir>/connectors.json exists and is
a bare JSON array, or no connectors.json; omit --connectors<working-dir>/custom-api-bindings.md,
or the literal No custom API bindings. when discovery was not needed<working-dir>/actions.json exists and is
a bare JSON array, or no actions.json; omit --actionsExample:
You are the genpage-planner agent. Plan generative page(s) for the following requirements:
[paste $ARGUMENTS here verbatim, or "no arguments provided — gather from user"]
Working directory: [absolute path from Phase 0] Plugin root: ${PLUGIN_ROOT}
Connector discovery is orchestrator-owned. Do not invoke
genpage-connector-builderfrom inside the planner. The----- BEGIN/END CONNECTOR BINDINGS -----lines below are delimiters for this prompt only: they mark where the contract starts and ends. Do not copy them intogenpage-plan.md. The## Connector Bindingssection of the plan is exactly the text between them:----- BEGIN CONNECTOR BINDINGS ----- [paste connector-bindings.md body, or
No connector bindings.] ----- END CONNECTOR BINDINGS -----Connector upload file (orchestration metadata; not part of the
## Connector Bindingssection): [absolute path to connectors.json, ornone — omit --connectors]If your clarification questions reveal connector-backed data that is not covered by the connector contract above, stop and return
{ "action": "connector_discovery_required", "intent": "<connector need>", "resolvedAction": "create" | "edit", "envUrl": "<the environment you resolved>" }instead of trying to discover connectors yourself.resolvedActionandenvUrlare required — discovery is dispatched against exactly those.Custom API discovery is orchestrator-owned too. Do not invoke
genpage-customapi-builderfrom inside the planner. The----- BEGIN/END CUSTOM API BINDINGS -----lines below are delimiters for this prompt only: they mark where the contract starts and ends. Do not copy them intogenpage-plan.md. The## Custom API Bindingssection of the plan is exactly the text between them:----- BEGIN CUSTOM API BINDINGS ----- [paste custom-api-bindings.md body, or
No custom API bindings.] ----- END CUSTOM API BINDINGS -----Custom API upload file (orchestration metadata; not part of the
## Custom API Bindingssection): [absolute path to actions.json, ornone — omit --actions]If your clarification questions reveal a server-side Custom API (Action/Function) not covered by the Custom API contract above, stop and return
{ "action": "custom_api_discovery_required", "intent": "<operation>", "resolvedAction": "create" | "edit", "envUrl": "<the environment you resolved>", "pageTables": "<page tables or none>" }instead of trying to discover it yourself.Follow the instructions in your agent file. Validate prereqs and confirm auth. The create/edit decision and the resolved environment are supplied to you by the orchestrator (it asks; you are headless) — use them rather than prompting. If you need any further decision, return
{ "action": "needs_input", … }. Write genpage-plan.md to the working directory once the orchestrator reports the plan approved. Return the page list, entity status, app selection, and any{ "action": "edit" }signal when complete.
Read genpage-plan.md from the working directory. Check the Entity Creation Required
section.
If the section literally says "No entity creation required — all entities already exist": Skip to Phase 3.
If entities need creating:
Entity creation runs through the plugin's Node.js Web API scripts using az for
auth, and the az and pac identities should normally match. Run the
consolidated pre-flight:
Genpage deploys pages via pac model genpage, so pass --require-pac to keep a missing pac login
a hard blocker (the app-builder skill omits the flag — its build path only needs the az token).
It returns a single JSON object:
ok: true and identitiesMatch: true → proceed to 2b.ok: true and identitiesMatch: false → proceed to 2b but surface the
message to the user as an inline warning ("az is X, pac is Y — WhoAmI works
for now, but if entity creation later returns 403, run the suggested
az login --username to align them").ok: false → show the message field to the user verbatim and
stop the workflow. The script already includes a fix-it command for every
blocker (run az login, etc.).Capture envUrl from the result — Phase 2b passes it to the entity-builder.
Invoke the genpage-entity-builder agent via the Task tool. Pass in the prompt:
genpage-plan.md${PLUGIN_ROOT}pac org who)The entity-builder reads Solution and Publisher Prefix directly from the
plan's ## Environment — no need to re-thread them here.
Wait for completion. The builder writes a transactional log at
<working-dir>/genpage-entity-creation-log.md for recovery on failure.
The builder is headless and will ask for the sample-data decision by returning
{ "action": "needs_input", … } (it has no way to prompt). Handle it here, in
this loop, exactly as Phase 1 step 4 does:
AskUserQuestion.workflow-log.md as AskUserQuestion: <question> → <answer>.provision-entities.js is idempotent
and re-reports the existing tables rather than recreating them — but say which
decision has now been answered so it goes on to the sample-data step instead of
asking again.Repeat until it returns a completion rather than a request. Proceeding to Phase 3
on a needs_input return silently drops the decision the user was asked to make.
Read genpage-plan.md for the app decision and the Solution line in
## Environment.
If "create new":
--solution is mandatory. pac model create errors out with
"The given solution name is not valid: ()" if you omit it — its claimed
"active solution" fallback does not work in practice.
--publish is mandatory. Without it the new appmodule stays in draft and
the genux runtime URL errors with "app not published".
Solution value verbatim. The planner always writes one
(default fallback is literally Default).Solution, pass --solution Default —
every Dataverse env has a built-in "Default Solution" by that unique name.Store the new app-id for Phase 6.
If existing app-id: Use it directly. pac model create is not called, so
the Solution line is informational only for this phase.
If any page uses Dataverse entities, generate the TypeScript schema:
Windows + Bash: Always use forward slashes in file paths (e.g.,
D:/temp/RuntimeTypes.ts).
After generating, read the RuntimeTypes.ts file to verify it generated correctly.
For mock data pages only: Skip this phase.
Re-probe the rollback gate here — do not rely on the plan content alone. Connectors are GA and the flag ships ON, so this normally passes; it exists so a plan authored while the feature was on cannot deploy connectors after it has been turned off:
If it prints disabled: the outcome is Connectors: none regardless of what the
plan's ## Connector Bindings section says. Skip the rest of this phase — do not
create or pass connectors.json, and do not add --connectors on upload. (Backstop:
list-connections.js / create-connection-reference.js also fail closed with exit 3.)
If it prints enabled: read the plan's ## Connector Bindings section and treat it
as bindings only when it contains an actual binding table (a | Logical Name | …
header with at least one data row). If the section is No connector bindings., empty,
missing, or malformed, the page has no connectors: skip this phase entirely — do not
create or pass connectors.json, and do not add --connectors on upload.
Carry this decision into code generation. The outcome is Connectors: <n> binding(s) or Connectors: none for the rest of the run, and Phase 5 must pass
it verbatim in every page-builder dispatch — otherwise the generated page could call
a connector this run never binds, and the page fails at runtime instead of simply
omitting the feature. Note the dispatch value is the binding count, not the flag
state: a disabled gate and an empty binding table both produce none, because the
page-builder only ever needs to know how many bindings it may call.
When there are real bindings, the genpage-connector-builder agent already wrote
<working-dir>/connectors.json during planning — verify it exists and matches the
plan table. If it is missing, derive it from the plan table as a bare JSON
array (never the { "connectorBindings": [...] } object wrapper — that is the
deployed page config.json shape that pac writes):
Do not write connection IDs into connectors.json — the importing maker/admin
fills env-specific ConnectionId values through solution deployment settings.
Re-probe the feature gate here — do not rely on the plan content alone. A plan authored while the flag was ON must not deploy Custom API bindings after it is turned OFF:
If it prints disabled: Custom API support is OFF. Skip this phase entirely — do not
create or pass actions.json, and never add --actions on upload — regardless of what the
plan's ## Custom API Bindings section says. (Backstop: list-custom-apis.js also fails
closed with exit 3 if invoked while OFF.)
If it prints enabled: read the plan's ## Custom API Bindings section and treat it as
bindings only when it contains an actual binding table (a | Name | Kind | … header with
at least one data row). If the section is No custom API bindings., empty, missing, or
malformed, treat the page as having no Custom APIs and skip this phase.
When there are real bindings, the genpage-customapi-builder agent already wrote
<working-dir>/actions.json during planning — verify it exists and matches the plan table. If
it is missing, derive it as a bare JSON array of
{ name, isFunction, boundEntityLogicalName?, displayName, parameterKinds } entries (Action row
isFunction:false, Function true; boundEntityLogicalName only for an entity-bound, non-
(Global), row) — see ${PLUGIN_ROOT}/references/custom-api.md. Never the
{ "actionBindings": [...] } object wrapper (the deployed config.json shape pac writes).
Re-probe the feature gate here — do not rely on the plan content alone.
This phase has no bindings and no artifacts; it only decides whether page-builder is
permitted to instrument. If it prints disabled, generated pages contain no
telemetry calls at all — identical to before the feature existed.
Carry this decision into code generation. The probe result is Telemetry: disabled / Telemetry: enabled for the rest of the run, and Phase 5 must pass it
verbatim in every page-builder dispatch.
enabled is permission, not instruction. Even when it is on, page-builder emits
telemetry only when the maker asked to measure or track something in their own
words; the default output is still a page with zero telemetry. See
${PLUGIN_ROOT}/references/page-telemetry.md.
Read genpage-plan.md and extract the pages table.
Before invoking any builders, verify:
## Pages table### [Page Name] subsection in ## Per-Page Specifications## Pages table are unique. If any are duplicated,
rewrite the plan appending -1, -2, etc. before dispatch. Duplicate filenames
cause silent last-writer-wins data loss under parallel execution.See ${PLUGIN_ROOT}/references/plan-schema.md for the full contract.
If the plan's Pages table contains exactly one row, do NOT dispatch a Task subagent. Inline the page-builder workflow directly in the orchestrator:
${PLUGIN_ROOT}/references/rules.md## Relevant Samplesenabled and the plan's
## Connector Bindings section contains an actual binding table (a
| Logical Name | … header with at least one data row), also read
${PLUGIN_ROOT}/references/connectors.md. Treat a No connector bindings.
sentinel, an empty/missing/malformed section, or a disabled probe as
having no connectors (same contract as Phase 4.5 and genpage-page-builder).
3b. Only when the plan's ## Custom API Bindings section contains an actual
binding table (a | Name | Kind | … header with at least one data row),
also read ${PLUGIN_ROOT}/references/custom-api.md. Treat a
No custom API bindings. sentinel, or an empty/missing/malformed section, as
having no Custom APIs (same contract as Phase 4.6 and genpage-page-builder).Needs caching: true, also read
${PLUGIN_ROOT}/references/data-caching.md## Environment indicates non-English languages, also read
${PLUGIN_ROOT}/references/localization.md
5b. Only when the Phase 4.7 probe printed enabled and the maker's own request
asks to measure, track, monitor, or diagnose something, also read
${PLUGIN_ROOT}/references/page-telemetry.md. In every other case the page
contains no telemetry calls — do not read it.genpage-plan.md (already in working directory) and RuntimeTypes.ts
if Data mode is dataverse.tsx file to <working-dir>/<filename>.tsx following all rules@fluentui/react-icons against
${PLUGIN_ROOT}/references/verified-icons.txt (one Grep per name).
Rewrite any unverified names with the closest verified alternative; do not
load the full icon list into context['"]?borderWidth['"]?\s*:. Griffel rejects
that shorthand only at runtime; the regex catches unquoted, quoted, and
whitespace-separated property syntax. Replace every match with the four
explicit border-side widths before deployment.This saves ~5-15s of Task overhead and ~3K tokens that would otherwise be duplicated in a subagent context.
If the plan's Pages table contains 2+ rows, invoke a genpage-page-builder
agent via the Task tool per page. Fire all invocations in a single message
for parallel execution.
For each page, pass a prompt that includes:
genpage-plan.mdnone or <n> binding(s) — the Phase 4.5 outcome, verbatimenabled or disabled — the Phase 4.7 probe result, verbatim${PLUGIN_ROOT}For Dataverse pages, include the RuntimeTypes line:
You are the genpage-page-builder agent. Generate the [Page Name] page.
- Target file: [filename].tsx
- Plan document: [absolute path to genpage-plan.md]
- Data mode: dataverse
- Connectors: [none| binding(s) from Phase 4.5]
- Telemetry: [enabled|disabled from Phase 4.7]
- RuntimeTypes: [absolute path to RuntimeTypes.ts]
- Working directory: [absolute path from Phase 0]
- Plugin root: ${PLUGIN_ROOT}
Follow the instructions in your agent file. Write [filename].tsx and return your result when done.
For mock data pages, omit the RuntimeTypes line and set Data mode: mock:
You are the genpage-page-builder agent. Generate the [Page Name] page.
- Target file: [filename].tsx
- Plan document: [absolute path to genpage-plan.md]
- Data mode: mock
- Connectors: [none| binding(s) from Phase 4.5]
- Telemetry: [enabled|disabled from Phase 4.7]
- Working directory: [absolute path from Phase 0]
- Plugin root: ${PLUGIN_ROOT}
Follow the instructions in your agent file. Write [filename].tsx and return your result when done.
Wait for all page-builder tasks to complete before proceeding.
After the parallel workers return, confirm every target file exists. If a worker
reported missing declared file/process tools or produced no file, do not
re-dispatch that worker. Run the Phase 5b page-builder workflow inline for only
the failed page, preserving the same plan and dispatch inputs. Then Grep every
generated page with ['"]?borderWidth['"]?\s*: and replace the unsupported
Griffel shorthand before Phase 6.
For each .tsx file produced, deploy to Power Apps.
If Phase 4.5 wrote <working-dir>/connectors.json, first pre-flight the active
PAC CLI:
The help output must contain --connectors. If it does not, stop and surface:
"connector deploy requires a pac build with pac model genpage upload --connectors — build from PowerPlatform-Scale-AdminTools or update pac." Do
not silently drop bindings.
Connector deployment matrix:
--connectors "<working-dir>/connectors.json"
with the first upload --add-to-sitemap.connectors.json and include --connectors with
upload --page-id <id> (full replace).--connectors; pac preserves existing
bindings. Never pass a stale or empty file on an unrelated edit.[] to connectors.json and pass
--connectors so pac clears the page's connectorBindings.If Phase 4.6 wrote <working-dir>/actions.json, pre-flight the same way — the upload --help
must contain --actions; if not, stop and surface "Custom API deploy requires a pac build with
pac model genpage upload --actions (PowerPlatform-Scale-AdminTools)." Don't silently drop bindings.
Custom API deployment follows the identical matrix as connectors, substituting
--actions "<working-dir>/actions.json" for --connectors: pass it on create; on an edit only
when bindings changed/added/removed (full replace); omit it on an unrelated edit (pac preserves
existing); write [] and pass it to clear all actionBindings.
Copy the upload commands below exactly — --app-id, --code-file, --prompt, --agent-message are all required and must use these exact flag names.
Log the full command verbatim into workflow-log.md under a ## Phase 6 — Deploy section before invoking it. Including --prompt and all other flags. The eval harness greps the log for these tokens — a terse summary like Command: pac model genpage upload --add-to-sitemap will fail the --prompt scoping assertion. Format:
When present, the logged command must also include --connectors "<working-dir>/connectors.json"
and/or --actions "<working-dir>/actions.json".
--prompt semantics--add-to-sitemap, no --page-id): full page description
from plan's ## User Requirements.--page-id, no --add-to-sitemap): delta only —
the changes in this upload, written like a commit message, never a
re-statement of the original.Applies in Phase 6 updates, Phase 6.5 PAGEREF re-uploads, Phase 7.5 fix re-deploys, and the entire edit flow.
Omit the --connectors line when Phase 4.5 did not write connectors.json, and the
--actions line when Phase 4.6 did not write actions.json.
For mock data pages: Same but omit --data-sources.
Use --page-id, omit --add-to-sitemap, and scope --prompt to the delta only:
For updates, include the --connectors line only when this upload intentionally
replaces or clears connector bindings; otherwise omit it to preserve the
deployed page's current bindings. The same rule applies to --actions for Custom
API bindings: include it only when this upload intentionally replaces or clears them.
Runs only when the plan has 2+ pages AND any built .tsx contains a PAGEREF_
token. Page-builders emit pageId: "PAGEREF_<filename-without-tsx>" as a
placeholder because GUIDs don't exist until after Phase 6 (see Rule 13). This
phase substitutes the real GUIDs.
Build filename-without-tsx → page-id map from Phase 6 upload output.
Sort keys by length descending so PAGEREF_pet can't match inside
PAGEREF_pet-gallery.
For each .tsx in <working-dir>/*.tsx (top level only, no recursion),
replace every quoted "PAGEREF_<name>" (must be in double quotes — that's
the format page-builders emit) with "<page-id-guid>".
If a placeholder doesn't match any map key (typo, missing sibling), stop and report — never silently ship the literal string.
Re-upload only the files that had at least one replacement. Use the update form
of pac model genpage upload (--page-id, no --add-to-sitemap). Per the
"--prompt semantics" rule in Phase 6, this is an update, so --prompt
describes the delta only — not the original page description:
Pages with no PAGEREF_ strings need no second upload.
Runs only when the plan's ## Solution Packaging has Package into solution: true.
Adds the deployed app, the GenPage(s), and any connection references to the
target solution so they travel cross-environment.
node ${PLUGIN_ROOT}/scripts/provision-solution.js <envUrl> <solutionUniqueName> "<Friendly Name>" [--publisher <uniqueName>]
It prints { "ok": true, "solutionId": …, "uniqueName": …, "publisherPrefix": … };
uniqueName must start with a letter and contain only letters, digits, and
underscores. Without --publisher it resolves the environment's default publisher.--page-ids — the GenPage is added explicitly, it does NOT travel
with the app on its own):
node ${PLUGIN_ROOT}/scripts/add-page-to-solution.js <envUrl> <solutionUniqueName> <app-id> --page-ids "<page-id1,page-id2>" --connection-refs "<logicalName1,logicalName2>"workflow-log.md.Cross-env note: the app (80) pulls the sitemap (62); the GenPage
uxagentproject is added explicitly and pulls its uxagentprojectfile rows
(including config.json with connectorBindings); each connectionreference
is added so bindings resolve. The script discovers both custom-table component
types from EntityDefinitions(...).ObjectTypeCode in the target environment —
their numeric values are environment-specific and must never be hardcoded. At import the
deployer supplies env-specific ConnectionId per connection reference via
pac solution create-settings + pac solution import --settings-file.
Custom API bindings need no extra ALM step: config.json's actionBindings travels
automatically in the uxagentprojectfile rows already pulled with the GenPage. The
referenced Custom APIs are a separate deployment prerequisite (bound by name), not added here.
After successful deployment, ask the user via AskUserQuestion:
"Would you like to verify the page(s) in the browser using Playwright?"
Options: Yes, verify in browser / Skip verification
${PLUGIN_ROOT}/skills/genpage/verify-flow.md
for the full Playwright verification workflow (navigate, structural
verification including below-the-fold, interactive testing, screenshots,
fix-and-redeploy). The orchestrator only loads that file on demand to keep
context lean when verification is skipped.By Phase 8 the workflow-log.md should already contain Phase 0 through Phase 7
sections written incrementally — the planner writes Phase 1 inside its agent
context, you (the orchestrator) write Phase 0 / 0.5 / 3 / 4 / 6 / 6.5 / 7 as
each runs, and the entity-builder and page-builder agents append their own
Phase 2 / 5 sections when invoked.
In Phase 8, append a final ## Phase 8 — Summary section to the same file:
The log MUST contain command-level entries for every prereq / auth / question /
upload / script invocation — not just outcome summaries. The eval harness greps
the log for tokens like node --version, pac auth list, AskUserQuestion,
EnterPlanMode, --prompt, check-auth.js, etc. A decision-only log
(e.g., Decision: new page without the underlying AskUserQuestion) will
fail Layer 1 assertions even when the agent's behavior was correct.
Then present a final summary to the user:
For the edit flow (triggered when the genpage-planner returns
{ "action": "edit" }), see edit-flow.md in this folder.
The edit flow has its own 8 phases (Edit Phase 1-8): discover and select target
app + page via pac model list + pac model genpage list, download, generate
RuntimeTypes if needed, invoke genpage-edit-planner, apply the edit inline,
deploy, verify, summarize.*