create-mobile-app

Use when the user wants to start a new Power Apps mobile app (Expo / React Native / TypeScript, targeting iOS and Android) from scratch.

npx skills add https://github.com/microsoft/power-platform-skills --skill create-mobile-app

πŸ“‹ Shared instructions: shared-instructions.md β€” read first. Covers safety guardrails, memory bank usage, preferred-environment policy, connector-first rule, Windows CLI compat, command-failure handling.

Create Power Apps Code App (Native)

Top-level orchestrator. Owns the user-visible flow; delegates planning to the native-app-planner agent and per-domain mutation to dedicated /add-* skills.

Workflow

  1. Resume check + fresh-template gate β†’ 1. Prerequisites β†’ 2. Gather requirements β†’ 2b. Requirements discovery β†’ 2c. Plan preview (rough cost + abort gate) β†’ 3. Plan (planner agent + 4 gates) β†’ 4. Auth & environment β†’ 5. Prepare existing template β†’ 6. npx power-apps init β†’ 6.5 verify npm install β†’ 6.5b SafeAreaProvider gate (always runs, idempotent) β†’ 6.6 scaffold tsc smoke check β†’ 6.7 seed memory bank β†’ 6.85 Offline profile (always asked) β†’ 7. Auth config β†’ 8. Apply data model β†’ 9. Apply native capabilities β†’ 9b. Design system β†’ 10. Add connectors β†’ 10b. Wire navigation layout β†’ 11. Build screens (parallel) β†’ 11.4 Stylistic fix sweep β†’ 12. Start Metro (npx expo start) β†’ 12.5 Optional debug handoff β†’ 13. Summary

Fresh-template working-directory mode

This skill assumes the user already has a fresh pa-wrap-tools/templates/expo-app-standalone template materialized with degit in the target working directory and has already run npm install there. The skill turns that fresh template into an app; it does not clone, degit, or copy a template itself.

Fresh template required. If the working directory is not a template, or if it already looks like an app created by this skill, STOP and tell the user to materialize a fresh expo-app-standalone template with degit into a new folder, run npm install, then rerun /create-mobile-app --working-dir <fresh-template-dir>.

Use these markers:

StateDetectionAction
Fresh templatepackage.json, app.config.js, auth.config.json, tamagui.config.ts exist; node_modules/expo exists; memory-bank.md, native-app-plan.md, .datamodel-manifest.json, and generated Dataverse services are absentProceed.
Template not installedFresh-template files exist but node_modules/expo is absentSTOP: ask user to run npm install in the template folder, then rerun. Do not provision ADO npm tokens here.
Already-created appmemory-bank.md, native-app-plan.md, .datamodel-manifest.json, or src/generated/services/*.ts existsSTOP: this is not a fresh create target. Ask user to materialize a fresh template folder with degit.
Not templateRequired template files are missingSTOP: ask user to materialize pa-wrap-tools/templates/expo-app-standalone into the working directory with degit and run npm install.

This gate is intentionally simple: /create-mobile-app creates a new app from a fresh template. It does not adopt, repair, resume, or overwrite an already-created app.


TypeScript Gate Policy β€” no quality compromise

tsc is a phase gate, not a reflex after every tiny edit. The app may not advance past a gate until TypeScript is clean.

Required gates:

  • Scaffold gate: Step 6.6 after existing-template preparation, npx power-apps init, and dependency verification.
  • Dataverse/generated-services gate: immediately after Step 8 returns and generated services/models are refreshed.
  • Navigation/skeleton gate: after Step 10b layouts and Step 10.8 shared code/skeletons are written, before Step 11 builders launch.
  • Screen-wave gate: after each Step 11 screen-builder wave returns, before launching the next wave.
  • Final gate: before Step 12 starts the dev server.

When a gate fails:

  1. Capture the full tsc --noEmit output once.
  2. Classify errors by root cause (for example: generated model names, service option shapes, invalid UI props, typed percentage values, create/update payload typing, missing imports).
  3. Repair in a batch.
  4. Re-run the same gate once after the batch.
  5. Continue only when the gate is clean, or stop/block according to the retry policy.

Do not run full-app tsc after every microscopic local edit inside the same repair pass. That is slower and encourages line-by-line patching. Batch root-cause fixes, then re-run the gate. This is a speed improvement only; it does not lower the quality bar.

Hard stops:

  • Do not launch data-source work from a broken scaffold gate.
  • Do not launch screen-builders from broken generated services, layouts, shared code, or skeletons.
  • Do not launch wave N+1 until wave N passes its tsc gate.
  • Do not start the dev server until the final gate is clean.
  • Do not hide approved capability failures behind mocks or TODOs just to satisfy tsc.

Step 0 β€” Resume check + fresh-template gate

If $ARGUMENTS includes a --working-dir (or the user names an existing directory), check whether <working_dir>/memory-bank.md exists.

  • Bank present β†’ read it. Identify the highest-numbered completed step. Inform the user:

    "Found existing project '' at <dir>. Steps 1– already completed (last update ). Resume from Step <N+1>?" Wait for confirmation. If the user says yes, jump to that step. Skip the wizard (Step 2) and re-use the values stored in the bank.

  • Bank absent β†’ fresh project. Continue to Step 1.
  • Bank present but corrupted (missing required headings) β†’ surface the parse error, ask the user whether to overwrite (lose history) or fix manually before proceeding.

The bank is the only resume mechanism. Do not infer resume state from package.json or node_modules/ β€” those can lie.

After the resume check, run the fresh-template gate from the section above. This is a create-only command:

  • If memory-bank.md exists and the user confirms resume, resume as documented above.
  • If any already-created-app marker exists and there is no approved resume path, STOP and tell the user to materialize a fresh template into a new folder with degit.
  • If required template files are missing, STOP and tell the user to materialize pa-wrap-tools/templates/expo-app-standalone into the working directory with degit and run npm install.
  • If node_modules/expo is missing, STOP and tell the user to run npm install in that template folder before rerunning this skill.

Do not silently copy a bundled template over the user's folder. A fresh pa-wrap-tools-1 template may contain placeholder power.config.json with an empty environmentId; Step 5 removes that placeholder immediately before Step 6 runs npx power-apps init.

Step 1 β€” Prerequisites

Run all checks first β€” no point gathering requirements if the toolchain isn't ready.

Important: npm auth and Power Platform app auth are separate. The account used for npm install can be different from the account used by npx power-apps:

WhatUsesTypical account
npm install private feed accessnpm/Azure Artifacts auth configured outside this skillAccount with feed Reader access
npx power-apps init, Dataverse, deploynpx power-apps browser auth + az login --tenant <env-tenant> for Dataverse helper scriptsPower Platform environment account, often a test-tenant/admin account

Renewing npm feed auth does not sign the user into npx power-apps. If the Power Apps CLI prompts for browser auth later, that is expected and unrelated to the npm/ADO feed token.

Then run the checks:

node --version                                      # v22+
npm  --version                                      # v10+
az account show --query "user.name" -o tsv          # Azure CLI logged in (needed for Dataverse helper scripts)
git --version                                       # optional

Do NOT probe Xcode, Java, Android Studio, or CocoaPods here. This plugin's flow is plan β†’ scaffold β†’ code β†’ local Expo dev server. Build + deploy (npm run build / npx power-apps push) is a separate user-driven step via the /deploy skill. Local native compile is the user's choice and lives outside this skill (run the platform-specific native command directly when needed). See shared/version-check.md β€” only the Always required tier matters here.

MissingAction
Node < 22STOP β€” instruct nvm install 22 && nvm use 22
azSTOP β€” instruct az login

Template-only rule: this skill no longer provisions npm feed tokens, PAT fallbacks, vendor fallbacks, or registry rewrites. The user must run npm install in the fresh template folder before invoking /create-mobile-app.

Capture target Power Platform environment for the remaining flow.

Source of truth for env selection: the generated power.config.json first, explicit environment ID second. In the normal template-folder flow, npx power-apps init runs first and writes the selected environment ID into power.config.json; read that ID and pass it to scripts/resolve-environment.js to resolve the Dataverse URL and tenant. If power.config.json is missing or has an empty placeholder environmentId, ask for an environment ID. A Dataverse URL is useful as a resolver fallback for existing apps, but it is not enough for npx power-apps init because init needs --environment-id.

StepSourceWhen user is asked
0. power.config.json has environmentIdscripts/resolve-environment.js <environment-id>Never β€” automatic after npx power-apps init
1. User supplies env IDscripts/resolve-environment.js <environment-id>Ask only if power.config.json is missing/empty or user wants a different env
2. User wants a different accountFollow shared-instructions standalone CLI auth handlingOnly if resolution/token acquisition fails or user asks
3. User wants different envAsk for another env ID and re-run resolverOnly if user selects "use a different environment" at Step 2
4. npx power-apps init -t MobileApp --display-name "$DISPLAY_NAME" --environment-id $ACTIVE_ENV_ID --non-interactivePersists choice into power.config.jsonOnly when this skill owns the initial init path
TARGET_ENV="<environment-id-or-empty>"
if [ -z "$TARGET_ENV" ] && [ -f power.config.json ]; then
  TARGET_ENV=$(node -e "try { const id=require('./power.config.json').environmentId || ''; console.log(id); } catch { console.log(''); }")
fi
test -n "$TARGET_ENV" || { echo "βœ— Environment missing. Provide an environment ID."; exit 2; }
ENV_JSON=$(node "${CLAUDE_SKILL_DIR}/../../scripts/resolve-environment.js" "$TARGET_ENV")
printf '%s\n' "$ENV_JSON" > .resolved-environment.json
ACTIVE_ENV_ID=$(node -e "const j=JSON.parse(process.argv[1]); console.log(j.environmentId || '')" "$ENV_JSON")
ACTIVE_ENV_NAME=$(node -e "const j=JSON.parse(process.argv[1]); console.log(j.displayName || j.environmentUrl || '')" "$ENV_JSON")
ACTIVE_ENV_URL=$(node -e "const j=JSON.parse(process.argv[1]); console.log(j.environmentUrl || '')" "$ENV_JSON")
ACTIVE_TENANT_ID=$(node -e "const j=JSON.parse(process.argv[1]); console.log(j.tenantId || '')" "$ENV_JSON")
test -n "$ACTIVE_ENV_ID" || { echo "βœ— Environment ID missing. Provide the environment ID directly."; exit 2; }
echo "βœ“ Target env: $ACTIVE_ENV_NAME ($ACTIVE_ENV_ID)"
echo "βœ“ Target env URL: $ACTIVE_ENV_URL"
echo "βœ“ Target tenant: ${ACTIVE_TENANT_ID:-unknown}"

Orchestrator handling for exit 2: ask the user for their environment ID directly, then re-run the capture block above. Do not run npx power-apps init here; Step 6 owns initialization after the user confirms the target environment.

Stash $ACTIVE_ENV_ID, $ACTIVE_ENV_NAME, $ACTIVE_ENV_URL, and $ACTIVE_TENANT_ID for Step 2 (env confirmation), Step 6 (npx power-apps init), and Step 7 (auth.config.json tenant/environment cache). If parsing fails, ask for an environment ID again.

If resolve-environment.js cannot get tokens, run az login --tenant <env-tenant> in the foreground. If npx power-apps init later uses the wrong account, follow shared-instructions standalone CLI auth handling and retry once.

Step 1.7 β€” Detect publisher prefix

Detect the publisher prefix for the env's Default solution so the planner uses the correct prefix rather than assuming cr_.

node "${CLAUDE_SKILL_DIR}/../../scripts/detect-publisher-prefix.js" "$ACTIVE_ENV_URL"

Output is one line of JSON, e.g.:

{"prefix": "cr8142a", "source": "detected"}
{"prefix": null, "reason": "no token (run `az login --tenant <env-tenant>`)"}

The script queries the Default solution's publisher via: /api/data/v9.2/solutions?$select=uniquename&$expand=publisherid($select=customizationprefix)&$filter=uniquename eq 'Default'

A second solution name can be passed as a second argument if the env uses a different solution (defaults to 'Default').

Token tenant note: the script's getAuthToken discovers the env's tenant ID from the Dataverse HTTPS auth challenge and passes --tenant <env-tenant> to az, so detection works even when the active az identity is on a DIFFERENT tenant. If the user has not run az login --tenant <env-tenant> at any point, detection may return null.

Stash the result for Step 3 (planner spawn):

OutputStash asBehavior at Step 3
{"prefix": "cr8142a", ...}$DETECTED_PUBLISHER_PREFIX = "cr8142a"Pass to planner prompt as a fact: "Publisher prefix (detected from env): cr8142a_"
{"prefix": null, ...}$DETECTED_PUBLISHER_PREFIX = "" (empty)Pass to planner as: "Publisher prefix: NOT DETECTED β€” use placeholder cr_ and warn the user that Dataverse will normalize the actual prefix at create time."

Do NOT block on null detection β€” the user can still proceed; the Power Apps CLI normalizes prefixes when npx power-apps add-data-source runs. The detection step is purely to make the plan output accurate.

If the script exits non-zero (rare β€” should always exit 0 with prefix: null), treat it as the null case and continue.

Step 2 β€” Gather requirements

Skip questions the user already answered in $ARGUMENTS.

If the user gave no description, ask one open-ended question first:

"What would you like to build? Describe it in your own words β€” what it does, who uses it, and what problem it solves."

Then collect with AskUserQuestion (batch where possible):

QuestionDefault
App display namederived from description
Target platformsios, android (multi-select, default both)
Aestheticminimal / playful / professional / matches existing brand
Target environmentConfirm <ACTIVE_ENV_URL> / <ACTIVE_ENV_ID> from Step 1.6, or choose "use a different environment" and provide another environment ID

App slug is auto-derived from the display name (slugify(displayName) β€” kebab-case, ASCII-only, strip non-alphanumerics). Do NOT ask the user; the derived slug is correct >95% of the time. Show the resolved slug as part of Step 2c's plan preview so the user can override via edit if needed.

Environment override branch: If the user picks "use a different environment", ask for the Power Platform environment ID via AskUserQuestion, then run scripts/resolve-environment.js again and refresh $ACTIVE_ENV_ID / $ACTIVE_ENV_URL / $ACTIVE_TENANT_ID.

App-name collision pre-flight. Once <displayName> is fixed, check the chosen env for a name collision:

npx power-apps list-codeapps --environment-id "$ACTIVE_ENV_ID" --json 2>/dev/null | grep -F "<displayName>" >/dev/null && \
  echo "COLLISION" || echo "OK"

If COLLISION, ask the user via AskUserQuestion:

"An app named <displayName> already exists in <ACTIVE_ENV_NAME>. Choose:

  1. Pick a different name (recommended)
  2. Delete the existing app in Maker portal β€” DESTRUCTIVE, asks confirmation outside this skill
  3. Continue anyway (bg npx power-apps init will fail; you'll have to rename later β€” NOT recommended)"

Re-prompt for name if (1). If (2), send the user to Maker portal to delete the existing app, then re-run the collision check. Only proceed once collision is resolved.

If npx power-apps list-codeapps is unavailable in the installed CLI version, skip the pre-flight silently and continue.

Don't enter plan mode here β€” that's the planner agent's job in Step 3.

Step 2b β€” Requirements discovery

Goal: Turn the user's thin prompt into a confirmed feature brief before the planner runs. The planner agent receives this brief verbatim β€” richer input means better data model inference, accurate connector detection, and correct screen specs.

Step 2b.0 β€” Prompt richness scoring (decides which path to take)

Before asking anything, score the description on four signals. The score decides whether we ask a multi-select feature picker, a single confirmation, or skip the discovery question entirely.

Run this scorer mentally on <description> (the prompt the user gave with /create-mobile-app, plus any clarifying text from Step 2a). Count how many of the four trip:

SignalTrips when
Word countdescription has β‰₯ 60 words
Distinct nounsdescription names β‰₯ 5 distinct domain nouns (people, things, documents, places β€” e.g. "inspector", "aircraft", "gate", "defect", "evidence")
Action verbsdescription uses β‰₯ 3 workflow verbs from this set: log, track, submit, assign, notify, scan, upload, approve, verify, complete, capture, override, dispatch, review, sign
Domain phrasedescription names a known industry domain β€” match against the industry table in shared/references/universal-patterns.md (airline, hospital, retail, manufacturing, field-service, finance, logistics, …) OR explicitly says "field operations" / "ground operations" / "site visit" / similar

Tier the result:

ScoreTierWhat to do
4 / 4auto-planSkip both questions. Extract the brief silently from <description>, write native-app-plan.md placeholder, fall through to Step 2c. The user's next interaction is the cost-estimate gate.
3 / 4one-tapSkip the multi-select. Extract the brief, show it once, ask only "Look right? (yes / adjust)". On yes β†’ Step 2c. On adjust β†’ fall through to walk-through.
≀ 2 / 4walk-throughCurrent behaviour. Run the multi-select feature picker described in Step 2b.1, then the brief confirmation.

Print the chosen tier so the user knows which path is running:

"β†’ Prompt richness: 4/4 β€” skipping discovery questions, extracting brief and going straight to the plan-cost preview." (or 3/4 / ≀2/4 with the matching path name)

--full-discovery escape hatch: if $ARGUMENTS contains --full-discovery, force walk-through regardless of score. Use this in dogfood runs where you want to exercise the multi-select path.

--no-discovery escape hatch: if $ARGUMENTS contains --no-discovery, force auto-plan regardless of score. Use this for fully-headless runs from the wrapper templates repo.

Step 2b.1 β€” Walk-through path (only when tier = walk-through)

Read references/requirements-discovery.md. Infer context-aware options from the user's description, ask exactly one structured AskUserQuestion, and never use markdown checkboxes in the question text.

Wait for the user's response. Summarize their answers into a requirements brief β€” 4–8 bullet points covering what users can do, what data is tracked, and integrations.

Confirm once:

"Here's the brief I'll use for planning: β€’ (bullet 1) β€’ (bullet 2) ... Look right? (yes / adjust)"

Store the confirmed brief as <requirements_brief>. This replaces the thin $ARGUMENTS as the primary input to the planner.

Step 2b.2 β€” One-tap path (tier = one-tap)

Skip the multi-select question. Extract a 6–10 bullet brief directly from <description> covering: user roles, key entities, primary workflow, severity / status enums if present, integrations / connectors, native capabilities, and any explicit constraints. Show it with a single confirm:

"Your description is detailed enough to skip the feature picker. Here's the brief I extracted: β€’ (bullet 1) β€’ (bullet 2) ... Look right? (yes / adjust / start over)"

  • yes β†’ store as <requirements_brief>, fall through to Step 2c.
  • adjust β†’ drop to Step 2b.1 (walk-through) so the user can edit via the multi-select.
  • start over β†’ return to Step 2a and re-prompt for the description.

Step 2b.3 β€” Auto-plan path (tier = auto-plan)

Skip both the multi-select AND the brief confirmation. Extract the brief silently and store it as <requirements_brief>. Print it as a transparency log only:

"β†’ Auto-plan tier (4/4). Extracted brief from your description: β€’ (bullet 1) β€’ (bullet 2) ... β†’ Going straight to the plan-cost preview (Step 2c). The brief above is locked in unless you abort there."

Do not ask for confirmation here β€” the user agreed to this when their prompt scored 4/4. The plan-preview gate at Step 2c remains in force as the last cheap exit before any side effects.

Step 2b.4 β€” Common to all paths

Auto-proceed after yes (or after auto-plan transparency log). Fall through directly to Step 2c (plan preview). Do NOT add a separate "Proceed to planning?" prompt β€” the brief confirmation IS the planning go-ahead. The only abort gate after this is Step 2c's proceed/edit/abort block, which is intentionally distinct because it shows the rough cost estimate.

Design decisions are deferred to Step 6.75 β€” /design-system (ships with this plugin) handles brand inputs, the style picker, and visual companion preference in one flow after the project is scaffolded. Do NOT ask design questions here.

Set tentative defaults (used by Step 3b before /design-system runs):

  • <visual_companion> = yes β€” open _plan_preview.html in browser at Gate 4 by default. /design-system at Step 6.75 may downgrade this to no (path (d) in its cost picker), persisted to memory-bank for future runs.
  • <design_vibe_opt_in> = deferred β€” Step 6.75 sets the real value. While deferred, the planner does NOT prompt for a direction; it writes a placeholder ## Design Direction: <deferred β€” set by /design-system> block so screen-planner can still run.

--no-design escape hatch. For headless / token-constrained runs, set --no-design in $ARGUMENTS. It forces <visual_companion> = no, skips the style-picker handoff at Step 3a entirely, and short-circuits Step 6.75 to a no-op (placeholder block stays in native-app-plan.md; screen-builders fall back to industry-inferred defaults).

Step 2c β€” Plan preview (rough, always shown)

Goal: Give the user a cheap exit before any mutation happens. This is the last point in the flow with zero side effects β€” no git clone, no npm install, no npx power-apps init, no agent tokens spent on planning. After Step 3 starts, every abort gets more expensive (half-written native-app-plan.md, partial _screens_section.md, architect tokens already burnt).

Always runs. There is no --no-preview flag in v0 β€” we need calibration data (~10+ runs with recorded estimate-vs-actual) before we can trust the rough estimates enough to let users skip them. Once the data shows estimates are reliably within Β±50%, evaluate adding a skip flag for repeat-user workflows.

Compute the estimates from inputs already in hand (no agent spawn β€” pure heuristics on the confirmed brief and the wizard answers):

OutputInput proxyComputationConfidence
TablesDistinct nouns in confirmed briefcount(unique_nouns) Γ— [0.7, 1.3] roundedlow β€” architect may merge or split
ConnectorsStep 2b inferred connector listlen(inferred) (already exact)high
ScreensConfirmed features in briefcount(features) Γ— [2, 3]low β€” depends on navigation choice
Planning minTables + screenstables Γ— 0.3 + screens Γ— 0.4 + 2low
Scaffold minFixed1-2 (template preparation + npm install already happened before skill invocation)high
Build minScreens, parallel cap of 5ceil(screens / 5) Γ— 0.6medium
Extra prompts<industry_confidence> + <design_vibe_opt_in>+1 if low-confidence industry; +1 if vibe-opt-in == yeshigh

Print the block once, exactly in this format (substitute computed values; ranges as low-high):

─── Plan preview (rough) ─────────────────────────────────
Based on your confirmed brief, before any agent runs:

Scope (proxy estimates β€” actual numbers come from architects):
  Tables       ~<low>-<high>      ← from <N> nouns in brief; architect may merge/split
  Connectors    <N> inferred      ← <comma-separated names>  (confirm at Gate 3)
  Screens     ~<low>-<high>       ← from <N> features Γ— ~2-3 screens each
  Approval gates  4               ← fixed (data model, native, connectors, screen plan)

Time (rough β€” agent time only, excludes your approval latency at gates):
  Planning      ~<low>-<high> min ← architects + your gate approvals add to this
  Scaffolding   ~1-2 min          ← validates prepared template + runs power-apps init
  Screen build  ~<low>-<high> min ← parallel, capped at 5 concurrent

Token tier: Opus everywhere in v0 (model routing not yet shipped).

⚠ These are proxies, not measurements:
  β€’ Table count is "noun count in brief" β€” architect may collapse or split
  β€’ Time excludes your approval latency at the 4 gates
  β€’ If industry inference is low-confidence, +1 picker prompt
  β€’ If you opted into the design vibe picker, +1 prompt + planner re-spawn
  β€’ If any gate is rejected, that section regenerates (~2-3 min each)

Proceed, edit brief, or abort? [proceed/edit/abort]
─────────────────────────────────────────────────────────

Three-option exit:

User answerAction
proceed (or empty / Enter)Continue to Step 3. Default.
editJump back to Step 2b. Re-confirm the brief with the user's changes. After 2b re-confirms, return here for a fresh preview. No working dir mutations β€” Step 2c runs before mkdir -p <working_dir> in Step 3.
abortPrint "Aborted at Step 2c. No files created. Re-run /create-mobile-app when ready." and exit cleanly. No working dir, no memory bank, no scaffold.

Why "always show" is correct in v0 (do not skip without explicit user request):

  • Cost when user proceeds: ~30s (read + decide). Token cost ~500/run = ~$0.008.
  • Cost when user aborts late (after Step 3 starts): 5-10 min + dirty working dir + frustration.
  • Asymmetry: bounded 30s vs unbounded 30 min. Always show the bounded cost.
  • Forced calibration: every run produces the <estimate, actual> data we need for v0.x model routing decisions. Skipping drops calibration data.

Set expectations before handing off to the planner:

"Brief locked in. Planning surfaces 4 approval prompts (data model β†’ native capabilities β†’ connectors β†’ screens). Total time is 5–12 minutes: β€’ Gate 1 (data model) β€” ~60–90s β€’ Gate 2 (native capabilities) β€” ~10s (quick) β€’ Gate 3 (connectors) β€” ~30–60s β€’ Gate 4 (screens + design) β€” 3–8 minutes (this is the heavy one: design vibe picker if opted in, then per-screen specs and HTML preview generation)

Between gates the spinner will sit quiet β€” sub-agents can't stream their progress to this view. If a gate hasn't surfaced after 12 minutes, something is stuck and you should interrupt."

Step 2d β€” Template-only mode

No background scaffold pipeline is used. The template is already present in <working_dir> and dependencies are expected to be installed before this skill starts (npm install). Continue directly to Step 3.

Step 3 β€” Plan (planner agent + 4 approval gates)

First, create the empty working directory so the planner has a place to write:

mkdir -p <working_dir>

Hard rule β€” planner writes are restricted during Step 3. The planner (and any sub-agents it spawns) is permitted to write to only:

  • <working_dir>/native-app-plan.md
  • <working_dir>/_screens_section.md
  • <working_dir>/.tmp/*

All other paths in <working_dir>/ (notably app/, src/, package.json, power.config.json, tamagui.config.ts, tsconfig.json, node_modules/, memory-bank.md) are owned by the foreground setup phases. Do not mutate them during planning.

If the planner needs to record a DONE_WITH_CONCERNS from a sub-agent (data-model architect, screen-planner), add it to an in-memory queue DEFERRED_CONCERNS[] during Step 3. Do not write memory-bank.md yet. Step 6.7 must always flush DEFERRED_CONCERNS[] into memory-bank.md ## Concerns immediately after the file is created.

Resume-from-draft check. Before spawning, check if <working_dir>/native-app-plan.md already exists with content. If yes, a previous planner run (possibly in a degraded context with no Task/gate tools) already drafted sections. Read it. If it has populated ## Data Model / ## Native Capabilities / ## Connectors but the gates were never run (no ## Approvals block, or the file was authored by an agent that returned BLOCKED: tool surface missing), pass resume_from_draft: true and the existing path to the planner so it loads the draft as baseline instead of regenerating from scratch.

Planner preflight (silent). Before the full Task spawn, do a no-op Task probe for mobile-app:native-app-planner (same pattern as Step 11.0). If the probe fails with Agent type … not found, tool unavailable, or the host clearly cannot route nested agents, fall through to inline-gate mode (described below) without prompting. The orchestrator has the full tool surface itself β€” it can run the gates directly. Do not retry, do not ask the user.

Announce the handoff before the Task call (so the user isn't staring at a blank screen while the planner spins up):

"β†’ Spawning planner agent. First prompt (data model) appears in ~60–90 seconds while the data-model architect analyzes your requirements. Later gates take longer β€” see the timing breakdown above."

Then spawn the mobile-app:native-app-planner agent via Task (the plugin name mobile-app: prefix is required β€” without it Task returns Agent type not found):

Spawn agent: mobile-app:native-app-planner

Prompt:
  Plan a Power Apps mobile app.

  Requirements brief (confirmed with user):
  <requirements_brief β€” bullet points from Step 2b>

  Design vibe opt-in: <design_vibe_opt_in β€” always "deferred" unless `--no-design` is in $ARGUMENTS, in which case use "skip". Never invent yes/no/other values.>
  Visual companion: <visual_companion β€” "yes" or "no">

  Original prompt: <full $ARGUMENTS verbatim>
  Wizard answers: <Step 2 answers>
  Working directory: <absolute path of <working_dir>>
  Plugin root: ${CLAUDE_SKILL_DIR}/../../
  Publisher prefix (detected from env): <DETECTED_PUBLISHER_PREFIX from Step 1.7, e.g. "cr8142a" β€” use literally as `<prefix>_<entity>` in all logical names. If empty/NOT DETECTED, fall back to `cr` placeholder and surface a `DONE_WITH_CONCERNS` note that Dataverse will normalize at create time.>

  Follow native-app-planner.md. Run all 4 approval gates. On terminal return, emit one of `DONE` / `DONE_WITH_CONCERNS:` / `NEEDS_CONTEXT:` / `BLOCKED:` as the literal first line per AGENTS.md rule #10.

The planner runs gates internally for data model β†’ native capabilities β†’ connectors β†’ screen plan, and writes <working_dir>/native-app-plan.md. Wait for it to return before continuing β€” do not proceed on a partially-approved plan.

3.0a β€” Inline-gate fallback (planner unavailable OR returned BLOCKED: tool surface missing)

When the preflight fails OR the planner returns BLOCKED: tool surface missing <…>, the orchestrator runs the four gates inline. Do NOT re-spawn the planner β€” it cannot succeed in this host. Print once:

"β†’ Planner agent unavailable in this host β€” running approval gates inline. (No action needed; this is automatic.)"

Then execute, in order, using your own EnterPlanMode + AskUserQuestion:

  1. If a draft native-app-plan.md exists: read it as baseline. Surface each populated section (## Data Model, ## Native Capabilities, ## Connectors) one at a time via EnterPlanMode, take user feedback inline, edit the file in place. Skip generating sections that are already populated and approved.

  2. If no draft exists: spawn mobile-app:data-model-architect directly via Task (single architect, not the orchestrator agent) to draft ## Data Model; then build ## Native Capabilities + ## Connectors inline from the brief; then spawn mobile-app:screen-planner with phase: graph and phase: specs per the two-phase Gate 4 split.

    Before each screen-planner spawn, print a one-line ETA so the user knows the agent is live and roughly how long to wait (the agent's own Bash echo progress markers β€” see agents/screen-planner.md "Progress streaming" β€” surface every milestone, but the orchestrator's pre-spawn line gives the wall-clock budget):

    • Before phase: graph: > "β†’ [Gate 4a] Spawning screen-planner phase=graph (~2 min for ${N} screens)…"
    • Before phase: specs: > "β†’ [Gate 4b] Spawning screen-planner phase=specs (~1 min/screen, ~${N} min for ${N} screens). Progress markers will appear inline."

MUST forward $DETECTED_PUBLISHER_PREFIX from Step 1.7 in the architect prompt β€” same line as the planner prompt at Step 3 line 1034: "Publisher prefix (detected from env): <DETECTED_PUBLISHER_PREFIX> β€” use literally as <prefix>_<entity> in all logical names. If empty/NOT DETECTED, fall back to cr placeholder and surface a DONE_WITH_CONCERNS note that Dataverse will normalize at create time." Without this, the architect defaults to cr_ and the whole plan needs a post-hoc sweep when the real prefix is something else (e.g. cr3e9).

Why this works even though the planner just returned BLOCKED for tool surface: the orchestrator (this skill, running in the user's slash-command session) always has the full tool surface β€” Task, EnterPlanMode, ExitPlanMode, AskUserQuestion, Read, Write, Bash. What's missing is the surface inside nested agent contexts (the native-app-planner agent runs in a sandbox without EnterPlanMode/AskUserQuestion, which is why its Step 0 preflight returned BLOCKED). The leaf agents data-model-architect and screen-planner only need Read/Write/Bash to draft markdown β€” they don't need EnterPlanMode/AskUserQuestion themselves. Spawn them; the orchestrator owns the gates.

  1. Run the gates yourself β€” use EnterPlanMode four times (data model β†’ native caps + connectors merged β†’ screen graph 4a β†’ screen specs 4b). Same gate prompts as the planner agent would use. Gate 4 is a markdown screen-graph review only β€” design picking happens unconditionally at Step 6.75 via /design-system (no separate style-picker handoff at Gate 4 even in inline mode).

  2. Write the final approved native-app-plan.md with an ## Approvals block at the bottom listing each gate, who approved (user), and a timestamp.

    HARD RULES for the plan structure (mirror the planner agent's template at agents/native-app-planner.md Step 4):

    • Top-level headings are EXACTLY: ## Overview, ## App Requirements, ## Data Model, ## Native Capabilities, ## Design Direction, ## Connectors, ## Screens, ## Approvals. Do NOT invent a ## Brief super-section that nests the data model under it.
    • ## App Requirements is the user's confirmed brief verbatim (the <requirements_brief> from Step 2b), capped at ~80 lines. No expansion, no rewriting, no embedded preview of the data model.
    • Discovery failure notes (e.g. az login on the wrong tenant, 401 from dataverse-request.js, all entities classified Create) go to <working_dir>/memory-bank.md under ## Discovery Notes, NOT into the plan. Keep at most a single one-line breadcrumb in ## Data Model like > Discovery skipped β€” see memory-bank.md. if relevant.
    • Sample data notes, immutability plug-in notes, file-column setup notes, dispatch-block server rules go under a single ### Notes subsection in ## Data Model. Cap each at 2 sentences; link to post-deployment-tasks.md for longer write-ups instead of inlining.

If the orchestrator's OWN Task tool is unavailable (rare β€” would mean even leaf agents can't be spawned), fall further to fully-inline mode: orchestrator drafts the data model from a Dataverse OData probe (resolve-environment.js + table list filter on the brief's domain keywords), drafts native caps + connectors heuristically, drafts the screen graph + specs against shared/references/screen-templates.md, and runs the four gates against the user. This is the last-resort path β€” functional but slower because the orchestrator does work the architects normally parallelize.

Hard rule: never silently skip a gate just because the planner couldn't run. The user MUST approve each section through EnterPlanMode before any mutation step (Step 8 onwards) executes.

3.0 β€” Sub-agent return-status switch (canonical)

Use the plugin-wide protocol in AGENTS.md rule #10 for every Task return in this skill: planner, parallel screen-builders, and future agent spawns. Parse the literal first line and branch: DONE continues; DONE_WITH_CONCERNS: surfaces + records in memory-bank.md; NEEDS_CONTEXT: re-dispatches with missing context, capped at 2 retries; BLOCKED: stops and records under ## Blocks. Unknown first lines are malformed and must be treated as BLOCKED.

Planner-only early-return signals are handled before the status switch: INDUSTRY_CONFIRM_REQUESTED: routes to Step 3.0a; DESIGN_VIBE_REQUESTED: routes to Step 3a. After the handoff, re-spawn the planner and process its new first line through this switch.

Step 3.0a β€” Industry confirmation handoff (orchestrator-owned)

When the planner is uncertain about which industry the app belongs to (no keyword match, ambiguous match, or wizard-aesthetic conflict), it returns early with this single line as its message:

INDUSTRY_CONFIRM_REQUESTED: <inferred-industry>|<reason-code>|<top-3-alternatives-comma-sep>

Example: INDUSTRY_CONFIRM_REQUESTED: productivity|no-keywords|field-ops,healthcare,e-commerce

This fires before Gate 1 β€” it's not a gate, just a confidence check so the wrong industry doesn't silently lock in the design language for the entire app.

Skip this section if <design_vibe_opt_in> is yes or skip β€” in those cases the user is either driving design explicitly (yes) or has opted out of design entirely (skip), so industry inference doesn't matter.

When you see INDUSTRY_CONFIRM_REQUESTED: and <design_vibe_opt_in> is no:

  1. Parse the three pipe-delimited fields. Map reason codes to a short user-facing explanation:

    • no-keywords β†’ "no clear industry signal in your description"
    • ambiguous-match β†’ "your description matches multiple industries"
    • wizard-conflict β†’ "your aesthetic answer doesn't match the inferred industry"
  2. Map each industry slug to a one-line description for the picker (use these exactly):

    SlugDescription
    field-opsField/Ops β€” high contrast, large targets, camera-forward (Uber Driver, ServiceTitan)
    financeFinance β€” blue palette, conservative type, generous whitespace (banking apps)
    healthcareHealthcare β€” warm palette, friendly type, compassionate copy (patient apps)
    educationEducation β€” bright playful, gamification, streak/progress (Duolingo)
    productivityProductivity β€” near-monochrome, dense layout, monospace data (Linear, Notion)
    e-commerceE-commerce β€” brand-forward color, product imagery, frictionless CTAs (retail apps)
    tech-iotTech/IoT β€” dark + accent gradients, data-dense cards, real-time indicators (monitoring dashboards)
  3. Ask one AskUserQuestion:

    "Quick sanity check before I build the design: I inferred this is a app, but . Confirm or pick another:

    (a) β€” recommended (b) (c) (d) (e) Other / let me describe β€” free text

    Which? (a / b / c / d / e β€” default: a)"

  4. Persist the answer:

    echo "<chosen-industry-slug>" > "<working_dir>/.industry-confirmed"
    

    For option (e), let the user free-text a description; map it to the closest slug (or productivity as final fallback) and store that.

  5. Re-spawn the planner. Use the same prompt as Step 3, plus an extra line:

    Industry confirmed: <chosen-industry-slug>
    

    The planner will see this on re-spawn, skip its detection + confidence check, and lock the industry to your value. After the re-spawn, re-check the planner's return value β€” it may now return normally, or it may still return DESIGN_VIBE_REQUESTED: (handled in Step 3a) if the user opted into the vibe picker.

Step 3a β€” Style-picker handoff (no-op in current plugin layout)

/design-system ships with this plugin and always runs at Step 6.75, so the style-picker handoff at Gate 4 is a no-op. Behavior:

  • The planner writes a placeholder ## Design Direction: <deferred β€” set by /design-system> block into native-app-plan.md at Gate 4 and proceeds without asking the user. Step 6.75 rewrites the placeholder with the real direction.
  • If a legacy planner output emits DESIGN_VIBE_REQUESTED: as its first line, write the placeholder block yourself (insert before ## Design, or before ## Screens if ## Design is absent), then re-spawn the planner with Design vibe opt-in: done. Do NOT run a vibe picker here β€” Step 6.75 owns that.
  • If --no-design is in $ARGUMENTS, write the placeholder block, mark <design_vibe_opt_in> = skip, and Step 6.75 also no-ops. Screen-builders fall back to industry-inferred defaults from universal-patterns.md.

If the planner's first return is anything other than DESIGN_VIBE_REQUESTED: β€” i.e. it ran all gates including Gate 4 normally β€” skip directly to Step 3b.

Step 3b β€” Open the plan preview in the user's browser (orchestrator-owned)

The planner emits a line of the form PLAN_PREVIEW_PATH: file://<abs-path>/_plan_preview.html before each Gate 4 plan-mode entry. The planner itself does NOT open the browser β€” sub-agent shells often lose GUI context, and silent open-failures leave the user staring at the spinner with no preview. The orchestrator owns this step because it has the user's interactive session.

When to run this: every time the planner enters or re-enters Gate 4 (initial pass + each reject loop). Detection: scan the planner's most recent visible output for the PLAN_PREVIEW_PATH: token; the value after the colon is the absolute file:// URL.

What to do:

  1. Print the link in a dedicated message so the user always has the fallback (clickable in most terminals):

    "Plan-time visual preview: file:///_plan_preview.html"

  2. If <visual_companion> = no, stop here. Do not attempt to open a browser. The user explicitly opted out; the printed link is their handle. Continue immediately to the planner's Gate 4 prompt.

  3. Else attempt to open in the user's default browser via the OS-portable chain:

    open "<abs-path>/_plan_preview.html" 2>/dev/null \
      || xdg-open "<abs-path>/_plan_preview.html" 2>/dev/null \
      || powershell.exe -NoProfile -Command "Start-Process '<abs-path>\_plan_preview.html'" 2>/dev/null \
      || echo "Auto-open failed. Use the link above."
    
  4. Do NOT block on success. If the chain prints "Auto-open failed", the link from step 1 is the user's fallback. Continue immediately so the planner's plan-mode prompt surfaces without delay.

If the planner returns without emitting a PLAN_PREVIEW_PATH: line, that is expected β€” the planner passes skip_preview: true to screen-planner since /design-system (always installed) renders the single visual preview at Step 6.75 after brand locks. Print:

"β†’ Gate 4 reviewed structurally. Visual preview will appear at Step 6.75 after /design-system locks your brand tokens (~5 min from now after scaffold)."

…and continue without attempting any browser open. Do not warn or treat this as an error β€” it is the documented behavior.

3.9 β€” Post-plan publisher-prefix gate

Before continuing to Step 4, verify the written native-app-plan.md actually uses $DETECTED_PUBLISHER_PREFIX from Step 1.7. Catches both the inline-fallback path missing the prefix and an architect that ignored the instruction.

if [ -n "$DETECTED_PUBLISHER_PREFIX" ]; then
  WRONG=$(grep -oE 'cr[a-z0-9]*_[a-z][a-z0-9_]*' "$WORKING_DIR/native-app-plan.md" \
    | grep -vE "^${DETECTED_PUBLISHER_PREFIX}_" | sort -u || true)
  if [ -n "$WRONG" ]; then
    echo "PLAN PREFIX MISMATCH β€” expected ${DETECTED_PUBLISHER_PREFIX}_, found:"
    echo "$WRONG"
  fi
fi

If mismatches are reported, sweep native-app-plan.md (and any auxiliary files like .datamodel-manifest.json if already written) replacing the wrong prefix with ${DETECTED_PUBLISHER_PREFIX}_ before Step 4. Do NOT proceed to Step 5 with a wrong-prefix plan β€” the sweep cost grows ~500 occurrences once services are generated.

Step 4 β€” Auth & environment selection

node "${CLAUDE_SKILL_DIR}/../../scripts/resolve-environment.js" "$ACTIVE_ENV_ID"

If the resolved environment doesn't match what the planner used in Step 3, ask the user for the intended environment ID and re-run resolve-environment.js. Capture the environment ID for Step 6.

Step 5 β€” Prepare existing template

This step is template-only and foreground-only. Do not clone/copy templates, do not run background scaffold jobs, and do not use any legacy fallback path.

Print before starting:

"β†’ [Step 5/13] Preparing existing Expo standalone template in <working_dir> …"

Required checks:

cd <working_dir>
test -f package.json && test -f app.config.js && test -f auth.config.json && test -f tamagui.config.ts
test -d node_modules/expo

If any required template file is missing, STOP:

"This folder is not a fresh expo-app-standalone template. Materialize a fresh template with degit into a new folder, run npm install, then rerun /create-mobile-app --working-dir <fresh-template-dir>."

If node_modules/expo is missing, STOP:

"Dependencies are not installed. Run npm install in the template folder, then rerun /create-mobile-app --working-dir <fresh-template-dir>."

If already-created markers appear (memory-bank.md, native-app-plan.md, .datamodel-manifest.json, or src/generated/services/*.ts) and Step 0 did not enter the resume path, STOP:

"This folder already looks like a created app. For a new app, materialize a fresh expo-app-standalone template with degit into a new folder and rerun this skill there."

Then apply these safe idempotent prep steps:

  1. Update app identity in app.config.js and package.json from Step 2 answers (displayName, slug) using targeted string replacements only.
  2. Ensure src/generated/index.ts exists with the empty generated barrel if no generated services exist.
  3. Ensure src/components/, src/hooks/, src/utils/, src/tokens/, and src/native/ directories exist.
  4. Copy shared helper files from plugin samples only when the destination file is missing. Do not overwrite user-edited files.
  5. Merge the six path aliases into tsconfig.json (@/components, @/hooks, @/utils, @/tokens, @/generated, @/native) without deleting existing aliases.
  6. Verify app/_layout.tsx imports PowerAppsProvider from @microsoft/power-apps-native-host and imports tamaguiConfig. If either is missing, patch _layout.tsx conservatively; do not rewrite custom navigation or unrelated provider code.
  7. Remove placeholder power.config.json if its environmentId is empty or missing. npx power-apps init in Step 6 writes the real file for the selected environment.

Do not preserve placeholder power.config.json from the template. Keeping it would let downstream steps read an empty or stale environment.

After preparation, continue to Step 6.

Fix 1 β€” App identity in app.config.js and package.json

Substitute the hardcoded template values with wizard answers from Step 2:

FindReplace with
`const APP_NAME = process.env.APP_DISPLAY_NAME
`const APP_SLUG = process.env.APP_SLUG
"name": "powerapps-standalone-app""name": "<slug>"

Bundle ID and scheme are left as template defaults β€” they are fixed across all dev builds and patched by the wrap pipeline at release time.

Fix 2 β€” Delete power.config.json

npx power-apps init in Step 6 creates the correct one for the user's environment. Remove the template copy:

rm -f "<working_dir>/power.config.json"

Fix 3 β€” Clean src/generated/ and src/hooks/ (idempotent)

Newer template snapshots no longer ship the example models / services / hooks (Contacts / Accounts / UserProfile / Office365Users) β€” src/ only contains app infrastructure files such as global.d.ts and playerConfig.ts. Older snapshots still do. If a copied template includes src/queryClient.ts, remove it: PowerAppsProvider already owns the React Query QueryClientProvider and screen code should use useQueryClient(), not an app-owned singleton. The block below is idempotent β€” a no-op on the new template, a real cleanup on the old one. Always run it; never assume one snapshot.

# Remove example generated artefacts if present (no error if missing)
rm -rf "<working_dir>/src/generated/models" \
        "<working_dir>/src/generated/services" \
        "<working_dir>/src/generated/index.ts"

# Wipe example React Query hooks and stale app-owned query client if present
rm -f  "<working_dir>/src/hooks/useContacts.ts" \
  "<working_dir>/src/hooks/useAccounts.ts" \
  "<working_dir>/src/hooks/useUserProfile.ts" \
  "<working_dir>/src/queryClient.ts"

# Reset the generated barrel so `import … from '../generated'` resolves to nothing
mkdir -p "<working_dir>/src/generated"
printf '// Populated by npx power-apps add-data-source. Do not edit.\nexport {};\n' \
  > "<working_dir>/src/generated/index.ts"

Do NOT overwrite app/(app)/home.tsx here. The current template ships a minimal RN stub (View + Text from react-native) that compiles cleanly. Our screen-builder replaces it at Step 11. Replacing it with a Tamagui stub before Fix 8 (which threads brand tamaguiConfig into PowerAppsProvider) would render under the upstream default Tamagui config instead of the project's brand tokens.

Keep src/hooks/ itself β€” screen-builders write new hooks into it.

Fix 3b β€” Scan for dangling imports referencing deleted files (back-compat only)

Only meaningful on older template snapshots that shipped the example hooks. On the current template the scan returns zero matches and you can skip it. Run it unconditionally β€” it is fast and self-skipping.

# Scan for any remaining imports of the deleted modules
grep -rn \
  -e "useContacts" \
  -e "useAccounts" \
  -e "useUserProfile" \
  -e "from.*generated/services" \
  -e "from.*generated/models" \
  --include="*.ts" --include="*.tsx" \
  "<working_dir>/app/" "<working_dir>/src/" \
  || true

If matches found:

  • For screen files (app/(app)/*.tsx): replace the entire file with the same minimal stub used for home.tsx (screen-builder will overwrite at Step 11).
  • For layout files (_layout.tsx): remove only the import lines and any code referencing the deleted symbols. Do NOT replace the whole file β€” layouts have navigation structure that must be preserved.
  • For barrel/index files: remove the re-export lines.

If no matches: Continue β€” template is clean.

Fix 6 β€” Schema generation boundary

app/_layout.tsx imports schemaMap from src/generated/connectorSchemas.ts, which is generated by npm run generate-schemas (the generate-connector-schemas binary from the @microsoft/power-apps-cli devDep). Do not generate an empty schema map during initial scaffold: the template's @ts-ignore boundary lets tsc validate the scaffold without that artifact, and schema generation is more useful after a data source exists or immediately before dev/build entry points.

Do NOT hand-write a stub connectorSchemas.ts β€” the generated output has a specific shape that downstream code depends on; a placeholder will break npx power-apps push.

Why tsc already passes post-clone (current template, PR #30): the template's app/_layout.tsx and src/playerConfig.ts carry // @ts-ignore comments above the power.config.json and connectorSchemas imports specifically so the project type-checks before power.config.json and connectorSchemas.ts exist. Never strip these @ts-ignore lines β€” Fix 8 below preserves them when patching app/_layout.tsx to thread the project's tamaguiConfig into PowerAppsProvider, and any future Edit to either file MUST keep them. Removing them resurfaces a tsc failure against missing generated files.

Fix 7 β€” Create src/components/, src/hooks/, src/utils/, src/tokens/

Copy the shared code structure into the project. This gives screen-builders a production-grade layout with path aliases:

mkdir -p "<working_dir>/src/components"
mkdir -p "<working_dir>/src/hooks"
mkdir -p "<working_dir>/src/utils"
mkdir -p "<working_dir>/src/tokens"

cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/components/index.tsx" "<working_dir>/src/components/index.tsx"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/hooks/index.ts" "<working_dir>/src/hooks/index.ts"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/hooks/useCursorListData.ts" "<working_dir>/src/hooks/useCursorListData.ts"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/hooks/useListData.ts" "<working_dir>/src/hooks/useListData.ts"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/hooks/useSearchFilter.ts" "<working_dir>/src/hooks/useSearchFilter.ts"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/utils/index.ts" "<working_dir>/src/utils/index.ts"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/utils/formatters.ts" "<working_dir>/src/utils/formatters.ts"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/utils/text.ts" "<working_dir>/src/utils/text.ts"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/utils/choices.ts" "<working_dir>/src/utils/choices.ts"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/utils/dataverse.ts" "<working_dir>/src/utils/dataverse.ts"
cp "${CLAUDE_SKILL_DIR}/../../shared/samples/src/tokens/index.ts" "<working_dir>/src/tokens/index.ts"

Fix 8 β€” Thread the project's tamaguiConfig into the host provider (required so screens render under brand tokens, not upstream defaults)

The template ships PowerAppsProvider (composed-tree API, v0.2.0+). Fix 8 adds tamaguiConfig, defaultTheme, theme, and darkTheme props so screens render under brand tokens. Do NOT add an outer <TamaguiProvider> β€” PowerAppsProvider composes it internally and duplicating triggers "useTheme must be used within a TamaguiProvider" warnings on hot reload.

Write app/_layout.tsx (run AFTER npm install):

import { Slot } from 'expo-router';
import { StatusBar } from 'expo-status-bar';
import { useColorScheme } from 'react-native';
import { SafeAreaProvider, SafeAreaView } from 'react-native-safe-area-context';
import { PowerAppsProvider, lightTheme, darkTheme } from 'power-apps-native-host';
import type { ThemeTokens } from 'power-apps-native-host';

import authConfig from '../auth.config.json';
// @ts-ignore - power.config.json is auto-generated at build time
import powerConfig from '../power.config.json';
// @ts-ignore - connectorSchemas is auto-generated at build time
import { schemaMap } from '../src/generated/connectorSchemas';
import tamaguiConfig from '../tamagui.config';

// lightTheme / darkTheme are the built-in defaults from power-apps-native-host.
// When brand/tokens.ts exists, the Brand-token wiring block (Step 9b) replaces
// these props with brand-derived ThemeTokens objects instead.

export default function RootLayout() {
  const colorScheme = useColorScheme();
  return (
    <SafeAreaProvider>
      <PowerAppsProvider
        msalConfig={authConfig.msal}
        powerConfig={powerConfig}
        schemaMap={schemaMap}
        tamaguiConfig={tamaguiConfig}
        defaultTheme={colorScheme === 'dark' ? 'dark' : 'light'}
        theme={lightTheme}
        darkTheme={darkTheme}
      >
        <StatusBar style="auto" />
        <SafeAreaView edges={['top', 'bottom']} style={{ flex: 1 }}>
          <Slot />
        </SafeAreaView>
      </PowerAppsProvider>
    </SafeAreaProvider>
  );
}

Key points:

  • Do NOT remove the two // @ts-ignore lines. They keep tsc green pre-npx power-apps init.
  • Do NOT add an outer <TamaguiProvider> β€” PowerAppsProvider composes it internally.
  • SafeAreaProvider wraps the tree so child screens can call useSafeAreaInsets() without a context error. SafeAreaView around <Slot /> keeps content out of the status-bar / home-indicator areas β€” required by validate-screen-quality.js.
  • tamaguiConfig is imported from '../tamagui.config' (the default export of tamagui.config.ts at project root).
  • defaultTheme flips between light/dark via useColorScheme(). /design-system --add-dark-mode later wires per-token dark variants.

Write the file directly when applying this fix.

Fix 4 β€” Path aliases in tsconfig.json (idempotent JSON merge)

The upstream template's tsconfig.json only ships paths polyfills for react-native, expo-auth-session, expo-secure-store, expo-web-browser β€” it does NOT define the @/components, @/hooks, @/utils, @/tokens aliases that screens (and the helpers Fix 7 just copied) import from. Without this fix, every import { lookupName, formattedValue, newId } from '@/utils' at screen-build time fails to resolve at both tsc --noEmit and Metro bundle time. Run this merge script in <working_dir>:

node -e '
  const fs = require("fs");
  const file = "tsconfig.json";
  const json = JSON.parse(fs.readFileSync(file, "utf8"));
  json.compilerOptions = json.compilerOptions || {};
  json.compilerOptions.baseUrl = json.compilerOptions.baseUrl || ".";
  json.compilerOptions.paths = json.compilerOptions.paths || {};
  const aliases = {
    "@/components": ["src/components"],
    "@/hooks":      ["src/hooks"],
    "@/utils":      ["src/utils"],
    "@/tokens":     ["src/tokens"],
    "@/generated":  ["src/generated"],
    "@/native":     ["src/native"],
  };
  for (const [k, v] of Object.entries(aliases)) json.compilerOptions.paths[k] = v;
  fs.writeFileSync(file, JSON.stringify(json, null, 2) + "\n");
'

Key points:

  • Idempotent. Re-running the script (e.g. on /create-mobile-app resume) overwrites the six alias keys with the same values β€” it does NOT touch react-native, expo-auth-session, expo-secure-store, expo-web-browser, or any other existing paths entries.
  • Six aliases, not four. @/generated and @/native are pre-wired so npx power-apps add-data-source output (src/generated/services/...) and /add-native output (src/native/camera.ts, etc.) can be imported via the alias too. Costs nothing now and avoids a second tsconfig patch later.
  • baseUrl: "." is preserved if already set (the template ships it). The merge script defaults it to "." only if missing.
  • Metro auto-resolves paths defined in tsconfig.json for any project running expo-based bundling, so this single edit covers both the type checker AND the bundler. No babel.config.js plugin needed.

<Gradient> (used by components/index.tsx) requires expo-linear-gradient. Assume the upstream template ships it β€” do NOT edit package.json to add it. If npm install (Step 6.5) later reveals the dep is missing, STOP and ask the user to wait for the next template release; do not work around by adding the dep here (same lockdown rule as /add-native).

Do not run npm install inside Step 5 β€” in template-only mode dependencies must already be installed before the skill starts.

Install note (current template): The template does not read power.config.json during npm install. The Step 6 β†’ Step 6.5 ordering is kept for predictable checkpoints, but do not run npm run generate-schemas during initial scaffold.

Step 6 β€” Initialize

Print before starting:

"β†’ [Step 6/13] Running npx power-apps init -t MobileApp to write power.config.json for environment . ~15–30 seconds."

cd <working_dir>
npx power-apps init -t MobileApp --display-name '<displayName>' --environment-id <environment-id> --non-interactive

Verify power.config.json was created and environmentId matches Step 4. If npx power-apps init fails, report the exact error and STOP β€” do not proceed.

Step 6.5 β€” Verify dependencies

This step verifies dependencies only. The user must have run npm install before invoking the skill.

[ -d "<working_dir>/node_modules/expo" ] && echo "βœ“ node_modules present" || echo "βœ— missing β€” run npm install in the template folder and rerun"

If node_modules/expo is missing, STOP. Tell the user to run npm install in the template folder. Do not provision ADO tokens or run npm install from this skill.

Step 6.5b β€” Ensure SafeAreaProvider wraps the root layout (always runs, idempotent)

Why this step exists. This step idempotently ensures safe-area context is present in the root layout so screens do not render under system bars.

Print before starting:

"β†’ [Step 6.5b/13] Verifying SafeAreaProvider wraps the root layout (idempotent β€” usually a no-op)…"

cd <working_dir>

if [ -f app/_layout.tsx ] && ! grep -q 'SafeAreaProvider' app/_layout.tsx; then
  echo "β†’ [6.5b] Patching app/_layout.tsx to add SafeAreaProvider + SafeAreaView"
  node -e '
    const fs = require("fs");
    const FILE = "app/_layout.tsx";
    let src = fs.readFileSync(FILE, "utf8");
    // 1. Add the import if missing β€” splice in right after the react-native
    //    import; fallback is prepend after the first import line.
    if (!/from\s*["\047]react-native-safe-area-context["\047]/.test(src)) {
      const importLine = "import { SafeAreaProvider, SafeAreaView } from \"react-native-safe-area-context\";\n";
      if (/^import\s*\{[^}]*\}\s*from\s*["\047]react-native["\047];?/m.test(src)) {
        src = src.replace(/(^import\s*\{[^}]*\}\s*from\s*["\047]react-native["\047];?\n)/m, "$1" + importLine);
      } else {
        src = src.replace(/(^import[^\n]*\n)/m, "$1" + importLine);
      }
    }
    // 2. Wrap the outermost <PowerAppsProvider> ... </PowerAppsProvider> with
    //    <SafeAreaProvider> AND wrap the inner <Slot /> with <SafeAreaView>.
    src = src.replace(
      /<PowerAppsProvider([\s\S]*?)>([\s\S]*?)<\/PowerAppsProvider>/,
      "<SafeAreaProvider>\n      <PowerAppsProvider$1>$2</PowerAppsProvider>\n    </SafeAreaProvider>"
    );
    if (!/<SafeAreaView/.test(src)) {
      src = src.replace(
        /<Slot\s*\/>/,
        "<SafeAreaView edges={[\"top\", \"bottom\"]} style={{ flex: 1 }}>\n          <Slot />\n        </SafeAreaView>"
      );
    }
    fs.writeFileSync(FILE, src);
    console.log("  βœ“ app/_layout.tsx wrapped with SafeAreaProvider + SafeAreaView");
  ' || { echo "SafeArea patch of app/_layout.tsx failed β€” see error above"; exit 19; }
elif [ ! -f app/_layout.tsx ]; then
  echo "  β†· app/_layout.tsx does not exist yet, skipping patch"
else
  echo "  β†· SafeAreaProvider already present, skipping"
fi

echo "βœ“ [Step 6.5b] SafeAreaProvider verified"

If the patch fails: the node script exits with an error. The most common cause is an unusual _layout.tsx shape (custom rewrite). Fix manually by importing SafeAreaProvider + SafeAreaView from react-native-safe-area-context, wrapping the outermost provider with <SafeAreaProvider>, and wrapping the inner <Slot /> with <SafeAreaView edges={['top', 'bottom']} style={{ flex: 1 }}>.

Step 6.6 β€” Scaffold TypeScript gate

Print before starting:

"β†’ [Step 6.6/13] Running scaffold tsc smoke check (~10–30 seconds)."

With node_modules/ populated, run the scaffold TypeScript gate. Do not run npm run generate-schemas here just to produce an empty connectorSchemas.ts; the template is intentionally type-checkable before that file exists, and the script is already run after data-source changes and again before Step 12 starts the dev server.

npx tsc --noEmit

tsc must pass here. If it doesn't, the post-clone surgery in Step 5 (Fixes 1–7) is incomplete β€” do not proceed to data sources or screen builders. Re-read the Step 5 fixes against the current working dir contents and reapply any missed edit.

This is the Scaffold gate from the TypeScript Gate Policy. If it fails, capture the full error list once, batch-fix scaffold/template causes, and rerun this gate. Do not continue to Step 6.7 or any app-specific mutation until this gate is clean. If the only failure is a missing generated schema import, preserve the template @ts-ignore boundary rather than generating an empty schema artifact.

Step 6.7 β€” Seed the memory bank

cp "${CLAUDE_SKILL_DIR}/../../shared/memory-bank.md" "<working_dir>/memory-bank.md"

Fill in the Project facts and Power Platform context sections from Steps 2 and 4. From here on, every step appends to the relevant section of <working_dir>/memory-bank.md immediately after success β€” not at the end. This is what enables Step 0's resume on a future run.

Immediately after creating memory-bank.md, flush any queued planner concerns from DEFERRED_CONCERNS[] into ## Concerns (append-only). This flush is unconditional: if the queue is non-empty, write it now before continuing to Step 6.75.

Also persist the Visual Companion preference so re-runs (/edit-app, /preview-screens, future /design-system runs) honor it without re-asking. Append to the Project facts section:

visual_companion: <yes|no>   # set in Step 2b β€” controls whether browser previews open automatically

/preview-screens reads this flag when invoked from inside this project; if no, it prints the file path instead of opening. /edit-app reads it to decide whether to re-open _plan_preview.html after a re-plan. The flag is per-project and does not leak across apps.

Step 6.75 β€” Design system

Print before starting:

"β†’ [Step 6.75/13] Locking your design system β€” source of truth for every screen built next. Takes 5 sec to 3 min depending on path."

Skip this step if --no-design is in $ARGUMENTS β€” placeholder ## Design Direction: <deferred> block stays in the plan, screen-builders fall back to industry-inferred defaults from universal-patterns.md.

Otherwise, invoke /design-system (ships with this plugin):

Invoke skill: /design-system

Arguments:
  --working-dir <working_dir>

The skill detects orchestrator mode (CODE_APPS_NATIVE_ORCHESTRATING=1), collects brand inputs, presents the cost picker (a/b/c/d), runs the internal style picker, writes brand/design-system.md + brand/tokens.ts, renders brand/design-system.html, and returns with status.

Handle the return per the status protocol (AGENTS.md rule #10):

  • DONE β†’ continue to Step 7. Record brand_path, tokens_path, direction in memory-bank.
  • DONE_WITH_CONCERNS β†’ surface concerns, ask user, continue.
  • NEEDS_CONTEXT β†’ surface question, re-invoke with answer.
  • BLOCKED β†’ surface error, STOP.

If the user picked path (c) Skip in the cost picker, the skill returns immediately with DONE and no brand/ files. Screen-builders fall back to ## Design Direction β€” same as today's behavior. But the user still needs a visual preview before code is written β€” fall through to the "Skip path preview" block below.

After /design-system returns DONE β€” two branches:

Branch A β€” brand/ files exist (user picked path a, b, or d)

This is the FIRST and ONLY HTML preview the user sees in the new flow β€” Gate 4 was a structural-only review (markdown screen-graph, no HTML). /design-system owns rendering of _plan_preview.html at its Sub-step 6.5 using the locked brand tokens. No re-spawn from the orchestrator is needed; the preview is fresh when the skill returns.

Branch B β€” Skip path preview (user picked path c β€” no brand/ files)

The user skipped the design system but still deserves to see their screens before code is written. Render a preview with Field/Ops defaults:

  1. Print:

    "β†’ Design system skipped β€” rendering screen preview with Field/Ops defaults so you can validate the layout before code is written."

  2. Render _plan_preview.html β€” read the screen specs from native-app-plan.md ## Screens section and render key screens (one List + one Form + one Detail, first match per archetype) using the tamagui-html-mapping.md reference and industry-inferred defaults from ## Design Direction. Write to <working_dir>/_plan_preview.html.

  3. Open in browser (if <visual_companion> = yes):

    open "<working_dir>/_plan_preview.html" 2>/dev/null \
      || xdg-open "<working_dir>/_plan_preview.html" 2>/dev/null \
      || powershell.exe -NoProfile -Command "Start-Process '<working_dir>\_plan_preview.html'" 2>/dev/null \
      || true
    
  4. Auto-continue β€” no prompt. The user already approved Gates 1–3 via plan-mode and just looked at the preview. A fourth confirmation here adds friction without adding decision power. Print one line and proceed:

β†’ Preview rendered with default styling. Continuing to Step 7. (Interrupt and re-run /design-system or /edit-app to revise.)

This ensures every path through the flow gets at least one visual preview before screen-builders write code.

Why this matters: under the OLD two-preview flow, the user saw screens at Gate 4 with default Tamagui colors, mentally committed, then the brand re-rendered later β€” confusing visual whiplash plus ~3–5 min of wasted token spend on the Gate 4 HTML. Under the NEW flow, Gate 4 is a markdown screen-graph (structural only), and the user only ever sees one HTML preview β€” at Step 6.75, with the locked brand applied. Single visual decision point, no waste.

Step 6.85 β€” Offline profile (always asked)

Print before starting:

"β†’ [Step 6.85/13] Asking whether to set up an offline profile…"

Mobile Offline Profiles let users continue working when their device is disconnected β€” Dataverse syncs queued changes when connectivity returns. This question must be asked on every run of /create-mobile-app β€” do NOT skip it based on the initial prompt's wording, the feature picker checkboxes, the requirements brief content, or any keyword heuristic. The user's intent for offline support is not reliably inferrable from any earlier step; the only authoritative signal is an explicit answer here. The plugin owns the setup via /setup-offline-profile.

Pre-conditions β€” only TWO branches skip this question, both with the explicit print line shown:

ConditionAction
App uses zero Dataverse tables (connectors-only β€” no .datamodel-manifest.json)Skip β€” offline profiles are Dataverse-only. Print: β†· Step 6.85 skipped β€” no Dataverse tables in this app. Continue to Step 7.
memory-bank.md ## Offline profile already has status: done OR status: not-applicable from a prior runSkip β€” answered previously. Print: β†· Step 6.85 skipped β€” offline profile already <done|not-applicable> from a prior run. Continue to Step 7.
Anything else (default β€” including "user didn't say 'offline' anywhere")Ask the question below.

Important β€” do NOT add other skip conditions. Earlier versions of this skill had an "auto-detect / keyword scan" preamble (offline Β· field Β· remote Β· ...) that varied the question default based on whether the initial prompt mentioned offline-indicator keywords. That heuristic was removed because it caused the orchestrator to skip the question entirely when no keywords matched, leaving users with a stale or missing profile on the next sync. The question is now unconditional for any Dataverse-backed app that hasn't already answered.

Ask one AskUserQuestion β€” phrased neutrally, no implication that the user "should" answer Yes or No based on app type:

Question header: Offline support

Question body: "Mobile Offline Profiles let users continue working when their device is disconnected β€” Dataverse syncs queued changes when connectivity returns. Set one up now?"

Options (default = Yes):

  • Yes β€” create profile now (recommended) β€” invokes /setup-offline-profile, walks the 3-gate flow, then continues to Step 7
  • Skip β€” I'll add it later via /setup-offline-profile β€” continues to Step 7 with no profile (memory-bank status stays unset so the question fires again on the next /create-mobile-app run against this dir)
  • Skip β€” this app doesn't need offline support β€” continues to Step 7; sets memory-bank.md ## Offline profile status: not-applicable so future re-runs don't re-ask

If the user picks Yes, invoke /setup-offline-profile as a sub-skill. It reads the same .datamodel-manifest.json you just wrote (Step 6 /add-dataverse's Step 6d output) β€” no need to pass arguments. The sub-skill returns DONE / DONE_WITH_CONCERNS: / BLOCKED: per the agent return-status protocol. On BLOCKED:, propagate up. On DONE_WITH_CONCERNS:, surface concerns to the user inline, then continue.

State transfer: /setup-offline-profile updates memory-bank.md ## Offline profile and writes offline-profile.json to the project root. Step 13 (final summary) reads these for the wrap-up summary.

Hooked into /add-dataverse: Step 6 (just before this step) sets IsAvailableOffline=true + ChangeTrackingEnabled=true on every new custom table (see skills/add-dataverse/SKILL.md Step 5b body skeleton). That means /setup-offline-profile Gate 1 will be a no-op pass-through for fresh scaffolds β€” saving the user one approval click.

Step 7 β€” Auth config

Print before starting:

"β†’ [Step 7/13] Configuring app authentication (Entra ID app registration)…"

The template ships auth.config.json with blank msal.clientId and msal.tenantId. There are no baked-in registration IDs to reuse. Always use the selected Power Platform environment tenant resolved earlier in the flow, then ask the user how they want to provide the Entra app registration client ID.

auth.config.json may also contain a non-secret sibling environment object written by scripts/resolve-environment.js:

{
  "msal": { "clientId": "...", "tenantId": "..." },
  "environment": {
    "environmentId": "<guid>",
    "environmentUrl": "https://orgXXX.crm.dynamics.com",
    "tenantId": "<guid>",
    "cachedAt": "<iso timestamp>"
  }
}

Keep this block when editing auth.config.json. It lets later skills avoid re-running the environment-specific Power Platform API. Do not store tokens, secrets, or current-user Dataverse identity fields there.

7.1 Resolve selected Power Platform tenant

Use the environment selected in Step 4. Prefer $ACTIVE_TENANT_ID, then .resolved-environment.json, then the cached auth.config.json.environment.tenantId. Do not use the old msal.tenantId as an authority source; it may be blank or stale from a previous registration.

TENANT_ID="$ACTIVE_TENANT_ID"
if [ -z "$TENANT_ID" ]; then
  TENANT_ID=$(node -e "const j=require('./.resolved-environment.json'); console.log(j.tenantId || '')" 2>/dev/null || true)
fi
if [ -z "$TENANT_ID" ]; then
  TENANT_ID=$(node -e "const j=require('./auth.config.json'); console.log((j.environment && j.environment.tenantId) || '')" 2>/dev/null || true)
fi
echo "$TENANT_ID"

If TENANT_ID is empty, rerun scripts/resolve-environment.js using the environment ID in power.config.json:

ENV_ID=$(node -e "console.log(require('./power.config.json').environmentId || '')")
node "${PLUGIN_ROOT}/scripts/resolve-environment.js" "$ENV_ID" > .resolved-environment.json
TENANT_ID=$(node -e "const j=require('./.resolved-environment.json'); console.log(j.tenantId || '')")

If TENANT_ID is still empty, STOP and ask the user to fix environment resolution before continuing. Do not guess the tenant and do not copy msal.tenantId from auth.config.json.

7.2 Choose app registration path

Ask one question, using the resolved tenant:

"This app needs an Entra ID app registration in tenant <tenant-guid> to sign in.

Choose one: (a) Paste an existing app registration client ID (b) Create a new app registration from the Power Apps Wrap page, then paste its client ID (c) Skip for now β€” configure auth later"

Do not default to any option silently. The user must choose because app registration ownership varies by tenant/admin role.

  • (a) Paste existing β€” run the client-ID write path in 7.3.
  • (b) Create new in Power Apps Wrap β€” print the environment-specific Wrap URL in 7.4, then ask for the client ID and run 7.3. If the user cannot finish creation, allow skip and follow 7.5.
  • (c) Skip β€” run the skip path in 7.5.

7.3 Write client ID into auth.config.json

Ask:

"Paste the Entra ID app registration client ID for tenant <tenant-guid> (GUID format), or type skip to configure auth later:"

If the user types skip, run 7.5. Otherwise validate UUID format. Write auth.config.json using Edit:

  • Replace msal.clientId with the user's value
  • Replace msal.tenantId with <tenant-guid> from 7.1
  • Preserve the existing top-level environment block if present. If it is missing but .resolved-environment.json exists, add that JSON as top-level environment.

Do not create or modify the registration from this skill. The user owns it. Just wire the IDs into auth.config.json.

Print:

"β†’ Wired app registration into auth.config.json. Client ID: <id> Tenant: <tenant-guid>"

Jump to Step 8.

7.4 Create a new app registration in Power Apps Wrap

Resolve the selected Power Platform environment ID from $ACTIVE_ENV_ID, then power.config.json. Print the public Power Apps Wrap URL:

"Open the Power Apps Wrap app-registration page for the selected environment: https://make.powerapps.com/environments/<environment-id>/wraps#create-app-registration

Create the app registration on that page, then copy the Application (client) ID and paste it here. The Wrap experience configures the native registration for this flow. Do not add redirect URIs or API permissions manually; tenant-wide admin consent is not required. If you cannot create it now, type skip and run /set-app-registration-native later."

Tell the user the registration must be created/configured from the Power Apps Wrap page for the selected environment. Do not direct them to the Entra admin center for manual redirect URI, delegated permission, or admin-consent setup.

After the user creates the registration, run 7.3 to capture and write the client ID.

7.5 Skip auth for later

Write auth.config.json using Edit:

  • Set msal.tenantId to <tenant-guid> from 7.1
  • Leave msal.clientId as ""
  • Preserve or add the top-level environment block from .resolved-environment.json if available

Print:

⚠️ Auth client ID is not configured. The app will fail to sign in until you add one. Run /set-app-registration-native later, or paste an app registration client ID into auth.config.json for tenant <tenant-guid>.

Do NOT touch src/playerConfig.ts β€” auth identifiers live in auth.config.json only.

Step 8 β€” Apply data model

Print before starting:

"β†’ [Step 8/13] Invoking /add-dataverse to create/extend tables and generate TypeScript services. This is the longest single phase β€” expect 2–5 minutes for a typical 4–6 table model."

Environment pre-check (before invoking /add-dataverse): Verify that .resolved-environment.json / power.config.json match the environment captured in Step 1. If they differ, warn the user immediately β€” creating tables in the wrong environment is the #1 silent breakage in this step. /add-dataverse Step 3a does its own check, but catching it here saves a failed attempt.

Read the ## Data Model section from native-app-plan.md. Invoke /add-dataverse with the working directory and a flag to skip its own planning (since the plan section is already approved):

Invoke skill: /add-dataverse

Arguments:
  --working-dir <working_dir>
  --plan-section <native-app-plan.md#data-model>
  --skip-planning   (the planner already ran)

/add-dataverse creates Tier 0 β†’ N tables, applies extensions, runs npx power-apps add-data-source --api-id dataverse --org-url <envUrl> --resource-name <name> per table from the app root, type-checks, returns.

After /add-dataverse returns, run the Dataverse/generated-services gate:

npm run generate-schemas
npx tsc --noEmit

If this fails, do not continue to native capabilities, connectors, navigation, or screens. Capture the full error list once, batch-fix generated-service/model or alias-map issues, then rerun the gate. If the failure is a hidden Dataverse collision already recovered via an alias (for example aircraft β†’ aircraftv2), make sure the alias is reflected in native-app-plan.md, memory-bank.md, and the Generated Services snapshot before rerunning.

Step 8.5 β€” Seed sample data (auto)

Print before starting:

"β†’ [Step 8.5/13] Checking existing record counts and seeding sample data into tables with fewer than 5 records."

Invoke /add-sample-data after Step 8. This step is not optional β€” every fresh-scaffolded app must have data to render on first launch:

Invoke skill: /add-sample-data

Arguments:
  --working-dir <working_dir>

/add-sample-data reads .datamodel-manifest.json, queries the current record count for each table, skips any table that already has β‰₯5 records, and seeds the rest with contextually appropriate rows in dependency-tier order. Inserted GUIDs are tracked in memory-bank.md for idempotent re-runs.

If .datamodel-manifest.json is missing, surface as DONE_WITH_CONCERNS and continue β€” it means Step 8 didn't complete cleanly.

If the seeding step fails (network drop, permission error, etc.), surface the failure but continue to Step 9 β€” the app is still usable, just empty on first launch. The user can re-run /add-sample-data later to retry.

Step 9 β€” Apply native capabilities

Print before starting:

"β†’ [Step 9/13] Wiring native capabilities: . Each runs sequentially."

Read the ## Native Capabilities section from native-app-plan.md. For each capability, invoke /add-native β€” it routes to nested helpers for camera/PDF/pen controls when needed, otherwise generates a generic wrapper:

Invoke skill: /add-native

Arguments:
  --working-dir <working_dir>
  --capability <name>

Run sequentially. Each writes a single file under src/native/ and does not touch package.json or app.config.js, so they could in principle run in parallel β€” but sequential keeps the orchestration log readable.

If the plan says "None β€” this app uses only standard React Native components and Power Platform connectors", skip only the native-capability invocation above and continue to Step 9b. Do NOT skip Step 9b; Tamagui aliases and brand tokens are required for screen quality even when the app has no native capabilities.

Step 9b β€” Apply design system

/design-system owns user-facing brand/design choices. This step owns the internal Tamagui integration that makes those choices usable by generated screens. Even if the user accepts the default design path, run the alias-only integration so screens can rely on the semantic token contract.

Read the ## Design section from native-app-plan.md and follow the execution mapping in shared/references/design-planning.md:

ConditionAction
brand/tokens.ts existsHighest priority. Apply ../design-system/references/tamagui-integration.md in brand-import mode, then wire brand ThemeTokens into app/_layout.tsx (see below).
## Design says requiredApply the same reference using the approved ## Design section. Builds custom token system + aliases.
## Design says add-aliasesApply the same reference in alias-only mode. Adds semantic surface/accent aliases over defaultConfig.
Custom font onlynpx expo install expo-font + useFonts() in _layout.tsx + add-aliases mode.

No skip path. Screen-builders require $surface0–$surface3 and $accent* aliases. Minimum action is always add-aliases. Pass the complete ## Design section verbatim β€” not a summary. Re-run npx tsc --noEmit after Tamagui config changes.

Brand-token wiring β€” when brand/tokens.ts exists, update app/_layout.tsx to spread brand values over the built-in lightTheme/darkTheme with nullish fallback:

import { tokens as brandTokens } from '../brand/tokens';
import { PowerAppsProvider, lightTheme as hostLightTheme, darkTheme as hostDarkTheme } from 'power-apps-native-host';
import type { ThemeTokens } from 'power-apps-native-host';

const brandedLightTheme: ThemeTokens = {
  ...hostLightTheme,
  accentDeep: brandTokens.color.accentDeep ?? hostLightTheme.accentDeep,
  accentBase: brandTokens.color.accentBase ?? hostLightTheme.accentBase,
  accentSoft: brandTokens.color.accentSoft ?? hostLightTheme.accentSoft,
  surface0: brandTokens.color.surface0 ?? hostLightTheme.surface0,
  surface1: brandTokens.color.surface1 ?? hostLightTheme.surface1,
  surface2: brandTokens.color.surface2 ?? hostLightTheme.surface2,
  surface3: brandTokens.color.surface3 ?? hostLightTheme.surface3,
  text0: brandTokens.color.text0 ?? hostLightTheme.text0,
  text1: brandTokens.color.text1 ?? hostLightTheme.text1,
};
const brandedDarkTheme: ThemeTokens = {
  ...hostDarkTheme,
  accentBase: brandTokens.color.accentBase_dark ?? hostDarkTheme.accentBase,
  surface0: brandTokens.color.surface0_dark ?? hostDarkTheme.surface0,
  // ... same pattern for remaining dark tokens
};

// In RootLayout:
<PowerAppsProvider ... theme={brandedLightTheme} darkTheme={brandedDarkTheme}>

Inspect brand/tokens.ts for exact key names before writing. Apply the same ?? hostDarkTheme.* fallback pattern for all dark tokens. For runtime theme switching (in-app theme pickers, per-tenant branding), use useThemeControl() from power-apps-native-host: setTheme({ ...hostLightTheme, accentBase: color }) / resetTheme().

Step 10 β€” Add connectors

Print before starting:

"β†’ [Step 10/13] Adding connectors: . Each runs sequentially (parallel writes would race)."

Read the ## Connectors section from native-app-plan.md. If it says "None", skip this step entirely.

For each row in the table, route to the correct skill based on the API name:

API nameInvoke
sharepointonline/add-sharepoint --working-dir <working_dir>
anything else/add-connector --working-dir <working_dir> --connector <api-name>

Run sequentially β€” each generates files under src/generated/. Parallel writes would race.

Mutation-heavy steps stay sequential. Dataverse table creation (Step 8), connector adds (Step 10), and generated-service writes are all sequential by design. The fast path in this skill is parallel screen generation (Step 11) plus fewer prompts (token cache, sticky policies, auto-proceed) β€” NOT parallelizing the data-source/service mutations. Do not attempt to parallel-batch npx power-apps add-data-source or /add-connector invocations; they share src/generated/ and power.config.json and will race or corrupt state.

Step 10b β€” Wire navigation layout

Read ## Screens β†’ Navigation Pattern from native-app-plan.md.

  • Stack β€” skip. app/(app)/_layout.tsx already renders <Stack>. Nothing to do.
  • Tabs or Tabs + Stack β€” write outer <Tabs> in app/(app)/_layout.tsx AND a per-folder inner <Stack> in each app/(app)/<folder>/_layout.tsx.
  • Drawer β€” write outer <Drawer> in app/(app)/_layout.tsx AND a per-folder inner <Stack> in each app/(app)/<folder>/_layout.tsx.

⚠️ The phantom-tab fix lives here. expo-router auto-registers every top-level .tsx file under app/(app)/ as a tab/drawer entry. Step 10b prevents phantom entries by walking the File column in the Screen Map (not the Screen names): each unique top-level entry under app/(app)/ β€” file OR folder β€” becomes ONE tab/drawer entry. Folders contain detail/modal screens inside their own stack, so they never leak as siblings.

Step 10b.1 β€” Compute the layout structure from the Screen Map

Read the Screen Map's File column. For every row whose File starts with app/(app)/, classify each path into one of three groups:

Path shapeClassificationExample
app/(app)/<name>.tsx (no subfolder)Top-level flat file β€” one outer entry, no inner layoutapp/(app)/home.tsx
app/(app)/<folder>/index.tsxFolder root β€” one outer entry, needs inner _layout.tsxapp/(app)/inspections/index.tsx
app/(app)/<folder>/<child>.tsx (any other file inside a folder)Folder child β€” pushed into the folder's stack, NOT an outer entryapp/(app)/inspections/[id].tsx

Build two lists from the classification:

  1. Outer entries = unique <name> from the top-level flat files + unique <folder> from the folder roots. These get one <Tabs.Screen> or <Drawer.Screen> each in the outer layout.
  2. Inner stacks = one entry per unique <folder>. For each folder, list its children (root + non-root files), with each child's Presentation value from the Screen Map.

Sanity check before writing anything: if any folder has children but no index.tsx row in the Screen Map, STOP and report: BLOCKED: folder app/(app)/<folder>/ has children (<list>) but no index.tsx row in the Screen Map. The screen-planner must emit an index.tsx row for every folder. This catches a planner mistake that would render the folder unreachable from the outer tab.

Step 10b.2 β€” Write per-folder inner _layout.tsx files (if any folders exist)

For each entry in the Inner stacks list, create the folder if missing and write app/(app)/<folder>/_layout.tsx with this template:

import { Stack } from 'expo-router';

export default function <FolderName>Layout() {
  return (
    <Stack screenOptions={{ headerShown: false }}>
      <Stack.Screen name="index" />
      {/* one <Stack.Screen> per non-index child, with presentation from Screen Map */}
      <Stack.Screen name="<child-without-tsx>" options={{ presentation: '<Presentation>' }} />
    </Stack>
  );
}

Rules:

  • headerShown: false at the Stack level β€” each screen sets its own header inline via <Stack.Screen options={{...}}> at the top of its component (the Expo Router idiom).
  • <Stack.Screen name="index" /> is required β€” without it, the folder root won't render.
  • presentation: 'modal' and presentation: 'formSheet' come from the Screen Map's Presentation column. Skip the options prop entirely for default presentation.
  • name for [id].tsx is literally [id] (with brackets).
  • Folder name in the function name is PascalCase (e.g. InspectionsLayout).

Why this must run BEFORE Step 11: screen-builders write their files in parallel, multiple builders may target the same folder, and any of them creating _layout.tsx would race. The orchestrator owns these files.

Step 10b.3 β€” Write outer app/(app)/_layout.tsx

Now rewrite only the return statement in app/(app)/_layout.tsx. Keep every line above the return untouched (auth guard, all imports).

How to build the <Tabs> block (Tabs / Tabs + Stack pattern):

For each entry in the Outer entries list, emit one <Tabs.Screen>. The name is the file/folder name without .tsx:

For each tab, infer a Ionicons icon name from the screen name:

Screen name containsIcon
home, dashboard, overviewhome-outline
inspect, audit, checklist, taskclipboard-outline
profile, account, me, userperson-outline
settings, config, preferencessettings-outline
report, analytics, chart, statsbar-chart-outline
map, location, sites, fieldmap-outline
message, chat, inbox, notifychatbubble-outline
anything elseapps-outline

The Edit to apply:

Add import { Tabs } from 'expo-router';, import { Ionicons } from '@expo/vector-icons';, and import { useThemeTokens } from 'power-apps-native-host'; to the import block if not already present. Inside AppLayout, after the auth state is read, add const theme = useThemeTokens();. Then replace:

return (
  <Stack
    screenOptions={{
      headerShown: false,
    }}
  />
);

with:

return (
  <Tabs
    screenOptions={{
      headerShown: false,
      tabBarActiveTintColor: theme.accentBase,
      tabBarInactiveTintColor: theme.text2,
    }}
  >
    <Tabs.Screen
      name="<screen-file-name>"
      options={{
        title: '<Screen Title>',
        tabBarIcon: ({ color }) => <Ionicons name="<icon>" size={22} color={color} />,
      }}
    />
    {/* one Tabs.Screen per top-level tab */}
  </Tabs>
);

Run npx tsc --noEmit after the edit. If it fails, check that the Tabs.Screen name values exactly match the file names under app/(app)/ (without .tsx).

How to build the <Drawer> block (Drawer pattern only):

Same Outer-entries computation as Tabs β€” one entry per top-level flat file or folder root from Step 10b.1. Detail, modal, and nested routes are inside their folder's inner stack, not drawer items.

Use the same icon mapping table as Tabs (above).

The Edit to apply:

Add import { Drawer } from 'expo-router/drawer';, import { Ionicons } from '@expo/vector-icons';, and import { useThemeTokens } from 'power-apps-native-host'; to the import block if not already present. Inside AppLayout, after the auth state is read, add const theme = useThemeTokens();. Then replace the existing <Stack> return with:

return (
  <Drawer
    screenOptions={{
      headerShown: true,
      drawerType: 'front',
      drawerActiveTintColor: theme.accentBase,
      drawerInactiveTintColor: theme.text2,
      drawerStyle: { width: 280 },
    }}
  >
    <Drawer.Screen
      name="<screen-file-name>"
      options={{
        title: '<Screen Title>',
        drawerIcon: ({ color }) => <Ionicons name="<icon>" size={22} color={color} />,
      }}
    />
    {/* one Drawer.Screen per top-level destination */}
  </Drawer>
);

Key differences from Tabs:

  • Import is from 'expo-router/drawer' (not from 'expo-router')
  • headerShown: true β€” drawer needs the hamburger icon in the header; hiding it makes the drawer unreachable
  • drawerType: 'front' β€” standard mobile pattern (drawer slides over content)
  • Icon prop is drawerIcon (not tabBarIcon)

Run npx tsc --noEmit after the edit. If it fails, check that the Drawer.Screen name values exactly match the file names under app/(app)/ (without .tsx).

Step 10.7 β€” Snapshot generated services into the plan

Print before starting:

"β†’ [Step 10.7/13] Probing src/generated/services/ and writing the service registry into native-app-plan.md…"

Before spawning N parallel screen-builders, the orchestrator probes src/generated/services/ ONCE and writes the result into native-app-plan.md. Without this, every builder runs its own Glob, may spell service names differently, and ends up with mixed states inside one app (some screens use CrXxxService.getAll(), others write // TODO(connector-not-yet-added) for the same service).

cd <working_dir>
ls -1 src/generated/services/*.ts 2>/dev/null | sed 's|src/generated/services/||;s|\.ts$||'

For each service file found, run a quick grep to list its exported methods so builders know what's actually available without re-reading the (large) generated file:

for svc in $(ls -1 src/generated/services/*.ts 2>/dev/null); do
  name=$(basename "$svc" .ts)
  methods=$(grep -oE 'static async [a-zA-Z_]+' "$svc" | sed 's/static async //' | tr '\n' ',' | sed 's/,$//')
  echo "| \`$name\` | \`src/generated/services/$name.ts\` | $methods |"
done

Write the result into native-app-plan.md as a new section immediately after ## Screens (and refresh it on every re-run β€” services come and go as the user runs /add-dataverse, /add-sharepoint, etc.):

## Generated Services (snapshot at <ISO timestamp>)

| Service | Path | Methods present |
|---|---|---|
| `Cr3e9_projectsService` | `src/generated/services/Cr3e9_projectsService.ts` | `getAll, get, create, update, delete` |
| `Cr3e9_tasksService` | `src/generated/services/Cr3e9_tasksService.ts` | `getAll, get, create, update, delete` |

**For screen-builders:** if a service your spec references is in this table, import it and use the exact name + methods listed. If it is NOT in this table, the data source has not been added yet β€” write the screen with the expected import path and a `// TODO(connector-not-yet-added): run /add-dataverse to generate <ServiceName>` comment so the user can see what's blocked. Do not invent or rename services.

If the directory is empty (no data sources added yet), still write the section with an empty table and a one-line note: "No generated services yet β€” builders will emit TODO stubs for any service their spec references."

Step 10.8 β€” Generate app-specific shared code + screen skeletons

Print before starting:

"β†’ [Step 10.8/13] Generating app-specific components, hooks, utils, and screen skeletons from the plan…"

This step analyzes the per-screen specs and generates shared code that multiple screens will use plus typed skeleton files for each screen. Builders then fill in the JSX rather than starting from zero. This cuts builder output by ~50% and eliminates import-path guessing errors.


10.8a β€” Analyze plan for cross-screen patterns

Read all per-screen specs in ## Screens β†’ ### Per-Screen Specs. Identify:

  1. Entity cards/rows β€” if 2+ screens render the same entity (same Service) in a card/row format, generate a shared component.
  2. Choice column maps β€” if 2+ screens reference the same choice column (e.g. status: 1=Pending, 2=Active), generate a constants file.
  3. Custom hooks β€” if 2+ screens call the same service with similar params (e.g. both list + detail call InspectionsService), generate a domain hook.
  4. Shared formatters β€” if screens need entity-specific formatting (e.g. "inspection title" = ${name} Β· ${equipment}), generate a formatter.

Decision rules:

Pattern in specsGenerateWhere
Same entity shown as list-item on 2+ screens<Entity>Card.tsx or <Entity>Row.tsxsrc/components/
Same choice column referenced on 2+ screensconstants.ts with ENTITY_STATUS map + tone mappingsrc/utils/
Same bounded service + similar .getAll() params on 2+ screensuse<Entity>List.ts wrapping useListDatasrc/hooks/
Same cursor-paginated service on 1+ unbounded screensuse<Entity>CursorList.ts wrapping useCursorListDatasrc/hooks/
Entity detail + edit screens for same entityuse<Entity>.ts with get + save + deletesrc/hooks/

Write the files directly into the project (not into samples β€” these are app-specific):

# Example β€” if plan has "Inspections" entity used on list + detail + home screens:
cat > "<working_dir>/src/components/InspectionRow.tsx" << 'EOF'
... generated component ...
EOF

If no cross-screen patterns are found (e.g. only 2 screens total with no overlap), skip this sub-step β€” the shared scaffold is sufficient.


10.8b β€” Generate screen skeletons

For each screen in the plan's Screen Map that will be built by a screen-builder, write a typed skeleton file at its target_file path. The skeleton contains:

  1. All imports (components, hooks, utils, services, types) pre-resolved
  2. The exported component function with typed props/params
  3. The hook calls (e.g. useListData, useSearchFilter, useLocalSearchParams)
  4. An empty return with a // TODO: screen-builder fills JSX here marker

Skeleton template for a Cursor List screen (Pagination: cursor):

import React from 'react';
import { FlatList, RefreshControl } from 'react-native';
import { useRouter } from 'expo-router';
import { YStack, XStack, Text, Input, Spinner } from 'tamagui';
import { Ionicons } from '@expo/vector-icons';
import { SafeAreaView } from 'react-native-safe-area-context';
import { LoadingState, ErrorState, EmptyState, ScreenHeader } from '@/components';
import { useCursorListData } from '@/hooks';
import { containsFilter, formatDate, choiceLabel } from '@/utils';
import { <Service> } from '@/generated/services/<Service>';
import type { <Entity> } from '@/generated/models/<Entity>Model';
// App-specific imports (if generated at 10.8a):
import { <Entity>Row } from '@/components/<Entity>Row';
import { <ENTITY>_STATUS } from '@/utils/constants';

export default function <ScreenName>() {
  const router = useRouter();
  const { items, loading, refreshing, loadingMore, hasNextPage, error, query, setQuery, onRefresh, refetch, loadMore } = useCursorListData<<Entity>>({
    queryKey: ['<entityPlural>'],
    fetchPage: ({ pageSize, search, skipToken }) => <Service>.getAll({
      maxPageSize: pageSize,
      orderBy: ['<orderField> desc', '<primaryKey> asc'],
      select: [<renderedColumns>],
      ...(search ? { filter: containsFilter('<searchColumn>', search) } : {}),
      ...(skipToken ? { skipToken } : {}),
    } as any),
  });

  // TODO: screen-builder fills JSX here. FlatList MUST wire:
  // - data={items}
  // - refreshControl={<RefreshControl refreshing={refreshing} onRefresh={onRefresh} />}
  // - onEndReached={hasNextPage ? loadMore : undefined}
  // - ListFooterComponent={loadingMore ? <Spinner /> : null}
  return null;
}

Skeleton template for a Bounded List screen (Pagination: none):

import React from 'react';
import { FlatList } from 'react-native';
import { useRouter } from 'expo-router';
import { YStack, XStack, Text, Input } from 'tamagui';
import { Ionicons } from '@expo/vector-icons';
import { SafeAreaView } from 'react-native-safe-area-context';
import { LoadingState, ErrorState, EmptyState, ScreenHeader } from '@/components';
import { RefreshControl } from 'react-native';
import { useListData, useSearchFilter } from '@/hooks';
import { formatDate, choiceLabel } from '@/utils';
import { <Service> } from '@/generated/services/<Service>';
import type { <Entity> } from '@/generated/models/<Entity>Model';
// App-specific imports (if generated at 10.8a):
import { <Entity>Row } from '@/components/<Entity>Row';
import { <ENTITY>_STATUS } from '@/utils/constants';

export default function <ScreenName>() {
  const router = useRouter();
  const { items, loading, refreshing, error, onRefresh, refetch } = useListData(
    () => <Service>.getAll({ orderBy: ['<orderField> desc'], top: 50 }),
  );
  const { query, setQuery, filtered } = useSearchFilter(items, [<searchKeys>]);

  // TODO: screen-builder fills JSX here
  return null;
}

Do NOT use the bounded skeleton for a screen whose spec says Pagination: cursor. useListData fetches one bounded page; useSearchFilter filters only loaded rows. Cursor screens must use useCursorListData, useInfiniteQuery, or an app-specific cursor hook generated in 10.8a.

Skeleton template for a Detail screen:

import React from 'react';
import { ScrollView } from 'react-native';
import { useLocalSearchParams, useRouter } from 'expo-router';
import { YStack, XStack, Text, Button } from 'tamagui';
import { Ionicons } from '@expo/vector-icons';
import { SafeAreaView } from 'react-native-safe-area-context';
import { LoadingState, ErrorState, BottomActionBar, InfoRow } from '@/components';
import { formatDate, choiceLabel } from '@/utils';
import { <Service> } from '@/generated/services/<Service>';
import type { <Entity> } from '@/generated/models/<Entity>Model';

export default function <ScreenName>() {
  const { id } = useLocalSearchParams<{ id: string }>();
  const router = useRouter();
  const [item, setItem] = React.useState<<Entity> | null>(null);
  const [loading, setLoading] = React.useState(true);

  React.useEffect(() => {
    if (!id) return;
    <Service>.get(id).then(r => { setItem(r.data ?? null); setLoading(false); });
  }, [id]);

  // TODO: screen-builder fills JSX here
  return null;
}

Skeleton template for a Form screen:

import React, { useState } from 'react';
import { Alert, ScrollView, KeyboardAvoidingView, Platform } from 'react-native';
import { useRouter, useLocalSearchParams } from 'expo-router';
import { YStack, Text, Button, Input } from 'tamagui';
import { ModalHeader, FormField, RowPick } from '@/components';
import { <Service> } from '@/generated/services/<Service>';

export default function <ScreenName>() {
  const router = useRouter();
  const [saving, setSaving] = useState(false);
  // Form state fields from spec:
  <field_declarations>

  const submit = async () => {
    // TODO: screen-builder fills validation + service call
  };

  // TODO: screen-builder fills JSX here
  return null;
}

Skeleton template for an Auth/Profile screen (any screen whose data calls are useAuth() only):

import React from 'react';
import { useRouter } from 'expo-router';
import { YStack, XStack, Text, Button } from 'tamagui';
import { SafeAreaView } from 'react-native-safe-area-context';
import { useAuth } from 'power-apps-native-host';

export default function <ScreenName>() {
  const router = useRouter();
  // AuthState shape (power-apps-native-host): { isLoading, isAuthReady, isSignedIn, error, acquireToken, signIn, signOut }
  // There is NO `user` / `account` field. Display name comes from the ID-token claim, not from useAuth().
  const { isSignedIn, signOut } = useAuth();

  // TODO: screen-builder fills JSX here
  return null;
}

Rules for skeleton generation:

  • Replace <Service>, <Entity>, <ScreenName>, <searchKeys>, <orderField>, <field_declarations> with actual values from the plan's per-screen spec + Generated Services table.
  • If a service is NOT in the Generated Services table, still write the import but add // TODO(connector-not-yet-added) above it.
  • The skeleton is a valid TypeScript file (compiles with return null) β€” builders replace the return null with real JSX.
  • Do NOT write skeletons for screens that already exist in the template (e.g. home.tsx if it's already present).
  • Never destructure user, account, profile, or claims from useAuth() β€” those fields do not exist on AuthState. The only fields are isLoading, isAuthReady, isSignedIn, error, acquireToken, signIn, signOut. If the screen needs the signed-in user's name/email, add a // TODO: decode ID token claim comment β€” do not invent a field.

10.8c β€” DEPRECATED (skeleton is the import source of truth)

This sub-step previously appended ### Standard Imports + per-screen #### Resolved Imports blocks into the plan. That added ~150 lines on a 14-screen plan and duplicated the imports already pre-resolved into each skeleton file at Step 10.8b.

The skeleton file IS now the single source of truth for per-screen imports + hook calls. The screen-builder reads the skeleton at target_file and fills the JSX. Do NOT append duplicate import documentation into the plan.

10.8d β€” Navigation/skeleton TypeScript gate

After Step 10b layouts, Step 10.7 service snapshot, and Step 10.8 shared code/skeletons are all written, run the Navigation/skeleton gate:

npx tsc --noEmit

If this fails, do not launch Step 11. Capture the full error list once, batch-fix layout names, route paths, skeleton imports, shared component exports, generated service imports, or hook signatures, then rerun the gate. Screen-builders should start only from a clean shell with typed skeletons that compile with return null.

Step 11 β€” Build screens (parallel)

Build mode is NEVER a user-facing question. Do not ask "Build mode? parallel/inline" or any variant. The orchestrator decides automatically per the preflight below.

Quality rule β€” screen count/time is NOT a fallback trigger. If Task can spawn mobile-app:screen-builder, always use screen-builder waves, even for 10+ screens. Do NOT write "given the scale/time, I'll write screens inline" or any equivalent shortcut. Screen-builder agents carry the quality checklist, domain-pattern rules, resolved-import discipline, safe-area/contrast/a11y checks, and per-screen return protocol. Inline mode exists only for host/tooling failure, not for convenience.

11.0 β€” Task preflight (silent)

Before the first wave, do a one-shot probe to confirm Task can spawn mobile-app:screen-builder. Spawn ONE no-op builder via Task with screen_name: __preflight__ and target_file: <working_dir>/.preflight-probe.tsx (the probe agent should return DONE immediately and the orchestrator deletes the file).

  • Probe returns DONE (any status code) β†’ parallel mode. Proceed with normal fan-out below. Do not downgrade later because there are many screens or because inline writing seems faster.
  • Probe errors with Agent type … not found, tool unavailable, or any nested-Task failure β†’ silent inline fallback. Print once:

    "β†’ Parallel screen-builders unavailable in this host β€” building screens inline. (No action needed; this is automatic.)" Then iterate the screen list and apply the full screen-builder workflow inline (the orchestrator becomes the builder, reading the same per-screen specs and writing TSX directly). Inline does NOT mean "concise but functional" β€” it must still satisfy screen-builder.md quality gates, operational pattern requirements, safe-area/contrast/a11y rules, resolved imports, and the final checklist for every screen. Do NOT prompt the user.

Hard rule β€” never ask the user about build mode. The probe is the only decision input. If the host changes mid-run (rare), treat the next failure the same way: silently downgrade to inline and continue.

Hard rule β€” no nested agent spawning. Screen-builder agents MUST NOT spawn further agents (no nested Task calls). The top-level orchestrator owns the entire screen-builder fan-out: one Task batch per wave of up to 5 screens. If a builder needs help that previously would have been a nested spawn, it returns NEEDS_CONTEXT: and the orchestrator handles the follow-up at the wave boundary.

Fast-wave style deferral: before spawning the first wave, create <working_dir>/.tmp/defer-style-hooks with a short note. The PostToolUse style hooks (validate-screen-quality, validate-color-contrast) skip blocking writes while this marker exists. This marker does not disable TypeScript, connector-first, protected-path, package, or write-safety validators. It only moves deterministic style debt out of the parallel builder hot path and into Step 11.4's batch report/fix sweep.

mkdir -p <working_dir>/.tmp
printf 'Step 11 fast-wave mode: defer style hook blocking until Step 11.4 report sweep.\n' > <working_dir>/.tmp/defer-style-hooks

Delete the marker immediately after the last screen wave's final TypeScript gate passes and before Step 11.4 starts:

rm -f <working_dir>/.tmp/defer-style-hooks

Never leave this marker in place for Step 11.4 or Step 12. Report mode ignores the marker and should always scan the generated screens.

Print before spawning (substitute computed values; <W> = total waves = ceil(N/5)):

"β†’ [Step 11/13] Building screens in wave(s) of up to 5 concurrent. Wave 1/ starting: ."

Read the ## Screens section's per-screen specs. For each screen the plan marks as new (skip baseline screens already in template), spawn a mobile-app:screen-builder agent via Task in a single message so they run in parallel. The mobile-app: plugin-name prefix is required.

Spawn N agents (parallel): mobile-app:screen-builder

Each prompt:
  working_dir: <working_dir>
  screen_name: <name>
  route: <route>
  target_file: <working_dir>/<File from Screen Map>
  plan_path: <working_dir>/native-app-plan.md
  skeleton_exists: true

  Follow screen-builder.md. Build from the user's compact per-screen spec, shared conventions, and design direction β€” inherited defaults are intentional, and samples are API/import references only, not layouts to copy. A typed skeleton already exists at your target_file with all imports and hook calls pre-resolved from the Generated Services table + per-screen `**Data**` field β€” fill in the JSX, do not discard imports. The skeleton file IS the import source of truth; the plan no longer documents per-screen imports separately. Return per AGENTS.md rule #10: literal first line is `DONE` / `DONE_WITH_CONCERNS:` / `NEEDS_CONTEXT:` / `BLOCKED:`, then a blank line, then the one-line summary.

target_file resolution (HARD): read the File column from the Screen Map row for this screen and prefix it with <working_dir>/. The path may be nested (e.g. <working_dir>/app/(app)/inspections/[id].tsx). The folder is guaranteed to exist because Step 10b.2 created it and wrote the inner _layout.tsx. Do NOT compute the path as <working_dir>/app/(app)/<screen-name>.tsx β€” that strips the folder structure and produces phantom-tab files. If the Screen Map row has no File column (older planner output), fall back to the flat path and surface a DONE_WITH_CONCERNS: Screen Map missing File column β€” used flat fallback paths, expect phantom tabs after the wave.

Cap at 5 concurrent. If the plan has more than 5 new screens, batch them in waves of 5.

Progress streaming β€” print one line per builder as the wave returns, then a wave summary. The Task tool returns all parallel results together, but you can still narrate per-builder by iterating the returned results in order before doing the status-switch branching. Format:

  βœ“ [3/8] HomeScreen β€” DONE
  βœ“ [4/8] ListScreen β€” DONE_WITH_CONCERNS (1 connector stub)
  βœ“ [5/8] DetailScreen β€” DONE
─── Wave 1/2 complete (5/8 screens built; 0 blocked, 1 with concerns) ───

Use βœ“ for DONE / DONE_WITH_CONCERNS, ↻ for NEEDS_CONTEXT (will retry), βœ— for BLOCKED. Always print the running counter [K/N] so the user sees forward motion. The wave summary line goes on its own line after the per-builder block.

After the wave's TypeScript gate passes, and only then, print the next wave start line (if any):

"Wave 2/ starting: ."

After each wave returns, run the Step 3.0 status switch on every builder's first line. Branch per builder:

  • DONE β†’ continue.
  • DONE_WITH_CONCERNS: <list> (typical case: a // TODO(connector-not-yet-added) stub was emitted because the referenced service is not in the Generated Services table) β†’ batch concerns across all builders, surface the consolidated list to the user once at the end of the wave (not per-builder β€” that would be noise), and ask whether to fix any pending connectors via /add-connector before continuing to Step 12. Record in memory-bank.md.
  • NEEDS_CONTEXT: <missing> β†’ re-spawn that one builder with the missing context appended to its prompt (cap 2 retries per screen, then BLOCKED). Print ↻ [K/N] <name> β€” retrying (missing: <missing>) so the user understands the wave isn't fully clean yet.
  • BLOCKED: <reason> β†’ STOP for that screen, print βœ— [K/N] <name> β€” BLOCKED (<reason>) and ask the user whether to (1) fix and retry, (2) skip the screen and continue with a placeholder, or (3) abort the whole flow.

After handling every builder status in the wave, run the Screen-wave gate before launching the next wave:

npx tsc --noEmit

If the wave gate fails, capture the full error list once, group failures by root cause, and repair in batch. For screen-owned files, re-spawn the affected screen-builder(s) with the consolidated TypeScript output appended to their prompts. Affected builders can be re-spawned in parallel. Cap retries at 2 per screen, then surface the failure to the user. Do not launch the next wave until the current wave gate is clean.

Common wave-gate repair classes to batch instead of fixing line-by-line:

  • Generated service/model names: singular vs plural generated names, stale aliases after Dataverse rename.
  • Service option shapes: orderBy must match the generated type, usually string[].
  • UI prop mismatches: invalid Tamagui shorthand props on components that do not support them.
  • React Native style types: percent widths must use a typed percentage or shared ProgressBar helper.
  • Dataverse create/update payload typing: prefer typed helper wrappers; if generated base types require server-owned fields, isolate any as any at the helper boundary, not throughout screen JSX.
  • Stale connector TODOs: remove TODO(connector-not-yet-added) when the service exists in the Generated Services snapshot.

After all waves return and the last wave gate is clean, run one final npx tsc --noEmit before Step 12 to catch cross-screen issues that only appear when all screens exist. If it fails, use the same consolidated batch-repair flow.

Sticky tsc/build error policy (run-level). The first time a tsc or npm run build failure surfaces in this run, ask the user once:

"tsc found error(s) in . Patch + continue, or stop and let me investigate?"

Record the answer in memory-bank.md under ## Policies as tsc_error_policy: patch_continue or tsc_error_policy: stop_for_review. For every subsequent tsc/build error of the same class in the same run (e.g., another screen failing typecheck after a builder retry, the cross-screen tsc after Step 11.4 fixes), apply the recorded policy automatically:

  • patch_continue β†’ re-spawn the matching builder with the error appended (or auto-patch in inline mode), respecting the 2-retry cap. Do not re-prompt the user.
  • stop_for_review β†’ STOP and surface the new error.

Reset the policy only if the user explicitly says "ask me again" or /edit-app is invoked. This avoids the same class of question being asked 3–5 times per run while still letting the user override at any point.

This sticky policy controls how to handle a failed gate, not whether the gate is required. Even with patch_continue, every required TypeScript gate must end clean before the flow advances.

Step 11.4 β€” Stylistic fix sweep (parallel)

Run one controlled stylistic debt sweep after all screen-builder waves and TypeScript gates are clean, before preview or dev-server launch. This keeps screen-builder retries focused on critical compile/data/route issues, then fixes visual and accessibility quality across the full screen set in batches.

Before running any report, assert the Step 11 fast-wave marker is gone:

rm -f <working_dir>/.tmp/defer-style-hooks

Print before starting:

"β†’ [Step 11.4/13] Running stylistic validators in batch + auto-fixing contrast / accessibility / token issues across all screens (~2-3 min)"

Scope: generated screen files only: every file from the Screen Map plus any app/(app)/**/*.tsx screen written by Step 10.8/Step 11. Exclude layout files unless the reported issue is clearly inside generated screen chrome for that route group. Do not scan src/generated/, brand/, node_modules/, .expo/, or sample files.

Available validators in v0:

node "${CLAUDE_SKILL_DIR}/../../hooks/validate-screen-quality.js" --report <screen-files-or-app-dir>
node "${CLAUDE_SKILL_DIR}/../../hooks/validate-color-contrast.js" --report <screen-files-or-app-dir>

validate-screen-quality includes accessibility-label/role, safe-area, touch-target, raw-hex, token, empty-state, shadow, and status-visual checks. If future stylistic hooks exist (for example validate-accessibility-labels.js), include them here only if they support --report and emit the same JSON issue shape.

For each available stylistic validator:

  1. Run in --report mode against all generated screens. Report mode is non-blocking; it emits JSON issues with file, line, rule, match, fix, and autoFixable.
  2. Merge issues by file and rule. Keep exact line numbers for user/debug output, but do not rely on stale line numbers after the first edit in a file.
  3. Split findings into deterministic auto-fixes and judgement calls:
  • Auto-fixable: weak foreground tokens, white-on-yellow/orange status pairs, missing icon-only accessibilityLabel, missing tappable accessibilityRole, tiny icon button hitSlop, obvious raw hex/token substitutions, top-only safe area with bottom UI, allowFontScaling={false}.
  • Needs review: complex safe-area restructuring, dominant red detail headers, redundant status cue design, ambiguous brand colors, empty-state restructuring that requires moving JSX across large blocks.
  1. Build one file-level edit batch per affected file. Apply affected files in parallel because screen files are independent. Do not run one edit per issue when multiple issues are in the same file; that reintroduces slow per-write loops and line-number drift.
  2. Re-run the same validator in --report mode for the touched files. Cap retries at 2 per file per validator.

Hook behavior during the sweep: Do not disable hooks globally and do not recreate <working_dir>/.tmp/defer-style-hooks. If a normal PostToolUse hook blocks an intermediate edit, treat that as signal that the edit batch was incomplete: fold the hook's message into that file's next retry. Only use a temporary skip env var if the validator itself documents one and you immediately re-run --report before advancing.

After all validators report no auto-fixable issues, run:

npx tsc --noEmit

If tsc fails, use the existing TypeScript batch-repair policy. If stylistic issues remain after 2 retries or are judgement calls, do not keep looping. Record them in memory-bank.md and surface them as:

DONE_WITH_CONCERNS: Step 11.4 left <N> stylistic issue(s) for review: <file:line rule summary>

Then continue only if TypeScript is clean. Step 11.4 may leave concerns, but it may not leave the app in a broken TypeScript state.

Optional static preview

After tsc passes, offer a static HTML preview. The dev server starts next (Step 12), so default is skip:

"β†’ N screens built and type-checked. The live app starts next.

Want a static HTML preview first, or go straight to the live app?

(a) Preview all screens β€” HTML phone frames for every screen (b) Preview key screens β€” List + Form + Detail archetypes only (c) Skip preview

[default: c]"

  • (a) β†’ invoke /preview-screens (all screens)
  • (b) β†’ invoke /preview-screens with only List + Form + Detail screen files (skip Login, Splash, Profile, OAuth)
  • (c) β†’ proceed directly to Step 12

Step 12 β€” Start dev server (background)

Print before starting:

"β†’ [Step 12/13] Launching Metro dev server in the background so you can scan the QR."

This skill launches Metro in an async/background terminal so:

  1. The QR code prints in the terminal β€” the user can scan with their dev client immediately.
  2. Hot-reload works on file edits β€” no restart needed for screen tweaks.
  3. The agent owns the terminal β€” when the user says "the screen is blank" / "data isn't showing" / "it crashed", the agent can read Metro's console.log, BUNDLE errors, and red-box stack traces directly via BashOutput (or its equivalent terminal-output tool) without asking the user to copy-paste.

Launch commands:

cd <working_dir>
npm run generate-schemas    # refresh schema map for any data sources added since last run (idempotent)
npx tsc --noEmit            # final gate β€” dev server starts only from a clean TypeScript state

Run the schema regen and final tsc synchronously and check both exits. If either fails, do not launch Metro. Capture the full output once, batch-fix by root cause, rerun the final gate, and continue only when clean. Then launch Metro async:

# Async / background β€” DO NOT block on this. Capture the terminal id.
npx expo start

Use npx expo start here instead of npm run dev because the orchestrator has already run npm run generate-schemas for the final gate. The template keeps predev: npm run generate-schemas as a safety net for humans running npm run dev manually, but the orchestrated path should not regenerate schemas twice.

When invoking the Bash tool: set run_in_background: true (or the equivalent async flag in your tool surface). Capture the returned terminal/shell id as $METRO_TERMINAL_ID.

After launch, wait ≀8s for the "Metro waiting on" line, then:

  1. Read the terminal output once (BashOutput with the captured id).
  2. Extract the native Metro URL from the terminal output:
    • Locate the line beginning β€Ί Metro: β€” it has the form exp+<scheme>://expo-development-client/?url=<encoded-http-url>. Capture the full Metro URL.
  3. Generate QR code PNG and present it to the user (chat-first, deterministic fallback):
  • Run npx --yes qrcode -o <working_dir>/.expo/metro-qr.png "<metro-url>" to generate the PNG. If the project's npm config requires auth and the fetch fails with E401, retry once with npm_config_registry=https://registry.npmjs.org/ npm_config_always_auth=false prefixed.
  • Verify the PNG was created: test -f <working_dir>/.expo/metro-qr.png (exit code 0 = success). If it fails, print the qrcode error and continue to step 4.
  • Chat-first render (best effort): read and base64-encode the file (base64 <working_dir>/.expo/metro-qr.png) and embed in markdown as a data URI (![QR](data:image/png;base64,<data>)) so hosts that support inline image markdown show the QR directly in chat.
  • Guaranteed visible fallback: if inline chat image rendering is unavailable in the host UI, open the PNG directly in the default system image viewer/browser (open <working_dir>/.expo/metro-qr.png on macOS, xdg-open ... on Linux, start "" ... on Windows). This fallback is required whenever chat image rendering is unavailable.
  • Surface only the native Metro URL immediately after the image/fallback message.
  1. Optional: ASCII terminal QR for power users. Extract and print the terminal's ASCII QR banner as a secondary/backup option:
    • Locate the first line composed of unicode block glyphs (β–€ β–„ β–ˆ) β€” that is the top of the QR.
  • Print every line from that line through the β€Ί Metro: line.
  • Cap at 30 lines as a safety net. Print as-is inside a fenced code block so terminal renderers preserve glyph alignment.
  • If the ASCII QR banner is not yet in the output, re-read BashOutput once more after another 4s before giving up. If still absent, skip the ASCII QR β€” PNG delivery from step 3 is the primary path.
  1. Follow with:

    "βœ“ Metro is running in background terminal <id>.

πŸ“± Scan the QR code shown above (or opened from <working_dir>/.expo/metro-qr.png) with your native dev client to load the app. Metro URL: <metro-url> πŸ”„ Edits hot-reload automatically."

Persist the terminal id to memory bank so resumed sessions and downstream skills (/preview-screens, /edit-app, /add-*) can find it:

## Project facts
...
- Metro terminal id: <id> (started <ISO date>)
- Metro launch cmd: cd <working_dir> && npx expo start

This skill stops after Step 12 so the user can iterate locally. Production build + tenant push is a separate, explicit user action via the /deploy skill.

Step 12.5 β€” Optional debug handoff

Do not perform screen-by-screen runtime verification. Do not crawl routes, open browser targets, use React Native Web, or call Metro HTTP endpoints directly.

After Metro is running and the QR has been presented, offer a single optional debug handoff:

"If the app shows an error or a workflow looks wrong after you load it in the native dev client, tell me the symptom and I can run /debug-app "<symptom>" using the Metro terminal logs."

Only invoke /debug-app if the user asks for debugging or gives a concrete symptom. /debug-app must use the captured Metro terminal output as its diagnostic source; it must not probe localhost, request a bundle URL, or run any React Native Web setup. If the user gives no symptom, proceed directly to Step 13.

When the user is ready to deploy:

/deploy            # runs npm run build + npx power-apps push

Step 13 β€” Summary

Print a compact status block, then present exactly 4 options with no explanation. Do not add prose, tips, or "you might want to" text β€” keep it concise.

βœ… Native code app created
─────────────────────────────────────────────
App name      : <displayName>
Project       : <working_dir>
Environment   : <env name> (<env id>)
Data model    : <N tables β€” M reuse, K extend, L create>
Native caps   : <list>
Connectors    : <list>
Screens       : <N total β€” M from template, K built in parallel>
Dev server    : npx expo start β€” running in background terminal <id>
                (scan QR there when you want to run locally)
─────────────────────────────────────────────

If Step 1 emitted warnings, list them in one line each under the block (no decoration).

Then present exactly these 4 options:

What now?

1. Preview screens in browser  (/preview-screens)
2. Deploy to tenant            (/deploy)
3. Edit the app                (/edit-app)
4. Add more capabilities       (/add-dataverse, /add-connector, /add-native)
5. Configure auth later        (/set-app-registration-native)

Which option? (or "none β€” I'll keep iterating locally")

Hard rules for this step:

  • Do NOT add explanatory paragraphs after the options.
  • Do NOT recommend an option ("most users want #2").
  • Do NOT list alternative npm commands β€” the dev server is already running and is the only local iteration process the user needs to know about.
  • Wait for the user's choice before doing anything else. If they pick none, stop.

Notes

  • This skill is the only entry point for new project creation. Do not invoke /add-* skills directly during a fresh-project flow β€” they don't know how to read the plan and would re-prompt the user.
  • The planner agent owns the approval gates. This skill never enters plan mode itself β€” that would create a duplicate gate.
  • For mid-project changes after Step 13, the user should run individual /add-* skills, or /edit-app for plan-backed app iteration.

Reference