create-site

โดย microsoft

ตรวจสอบปลั๊กอิน: รัน node "${CLAUDE_PLUGIN_ROOT}/scripts/check-version.js" — หากมีข้อความแสดงผล ให้แสดงให้ผู้ใช้เห็นก่อนดำเนินการต่อ

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

Plugin check: Run node "${PLUGIN_ROOT}/scripts/check-version.js" — if it outputs a message, show it to the user before proceeding.

Create Power Pages Code Site

Guide the user through creating a complete, production-quality Power Pages code site from initial concept to deployed site. Follow a systematic approach: discover requirements, scaffold and launch immediately, plan components and design, implement with design applied, validate, review, and deploy.

Core Principles

  • Use best judgement for design details: Once the user picks an aesthetic direction and mood, make confident decisions about specific fonts, colors, page layouts, and component behavior. Do not ask the user to specify every detail — use the design reference and your own taste to make creative, distinctive choices.
  • Use TaskCreate/TaskUpdate: Track all progress throughout all phases — create the path-agnostic upfront tasks first, then append branch-specific tasks after the creation path is selected.
  • Scaffold early, design with intention: Get the dev server running immediately after discovery so the user has something to look at. Then plan the design and features while the scaffold is live — apply the chosen aesthetic during implementation.
  • Live preview feedback loop: The dev server MUST be running before any customization begins. Browse the site via Playwright (browser_navigate + browser_snapshot) to verify every significant change. Do NOT take screenshots — only use accessibility snapshots to check page structure and content.
  • Keep the scaffold loader in sync with reality: The scaffold loader polls public/scaffold-status.json. Update this file before every AskUserQuestion (to raise the "waiting for your input" banner so the user doesn't miss a terminal prompt) and before each implementation step in Phase 5 (so the progress-bar label matches what you're actually doing while the decorative spinner continues its default cycle). See Live Preview Status Protocol.
  • Use real images: Source high-quality photos from Unsplash wherever pages need visual content — hero sections, feature cards, about pages, backgrounds, etc. Use https://images.unsplash.com/photo-{id}?w={width}&h={height}&fit=crop URLs with specific photo IDs found via WebSearch. Never leave image placeholders or broken <img> tags pointing to nonexistent files.
  • Git checkpoints: Commit after every individual page and component — each gets its own commit so breaking changes can be reverted.

Constraint: Only static SPA frameworks are supported (React, Vue, Angular, Astro). NOT supported: Next.js, Nuxt.js, Remix, SvelteKit, Liquid.

Initial request: $ARGUMENTS


Live Preview Status Protocol

While the scaffold loading screen is visible (from Phase 2.6 until the Home page itself is replaced in Phase 5), the loader polls GET /scaffold-status.json every 1.5 seconds. The message you write into <PROJECT_ROOT>/public/scaffold-status.json appears as the label under the progress bar, and awaitingInput controls the "waiting for your input" banner. The decorative spinner above the progress bar continues its built-in phrase cycle; keep the progress-bar label current so the loader still reflects what is actually happening.

Why this matters: When the browser with the loader takes over the user's screen, a prompt in the terminal can sit unanswered for a long time because the user doesn't realize anything is waiting. The banner makes it obvious.

File shape (all fields optional — omit any field you don't want to change):

{
  "message": "Creating Contact page",
  "awaitingInput": false,
  "inputPrompt": "Please check your terminal to respond."
}
  • message — one short present-participle phrase shown as the status line under the progress bar in the loader (replacing the default "Getting started…" / "Setting up infrastructure…" cycle). Include the grouping context inline when it helps (e.g., "Creating Footer component (shared components)").
  • awaitingInput — when true, a prominent pulsing banner appears at the top of the loader and stays visible until this field is cleared. Set this before every AskUserQuestion call and clear it (false) immediately after the user answers.
  • inputPrompt — short context for the banner (e.g., "Choose a framework"). Optional.

When to update the file:

  1. After scaffold launches (end of Phase 2): write an initial status like { "message": "Planning your site", "awaitingInput": false }.
  2. Before any AskUserQuestion that runs while the scaffold is visible (Phases 3, 4, and any in-scaffold prompt in Phase 5): set awaitingInput: true with a short inputPrompt. After the user answers, write again with awaitingInput: false.
  3. Before each implementation step in Phase 5 — applying design tokens, creating each shared component, creating each page, updating the router, updating navigation — update message to the specific action. Examples: "Applying design tokens", "Creating Navbar component", "Creating Contact page".
  4. At the end of Phase 5, after the Home page has been replaced: delete public/scaffold-status.json so it isn't deployed with the site.

Write the file with the Write tool (atomic overwrite). You do not need to read it first.


Phase 1: Discovery

Goal: Understand what site needs to be built and what problem it solves

Actions:

🚦 Gate (plan · create-site:1.purpose): Path-agnostic discovery prompt collecting site name, purpose, and audience. Determines what kind of site the user needs before the skill decides between a template-backed path and the from-scratch scaffold path. Fires only on the "site purpose unclear" branch (step 3 below).

Trigger: Phase 1 when site name, purpose, or audience was not provided in $ARGUMENTS. Why we ask: Wrong purpose/audience context → wrong branch decision and wrong generated site plan; cleanup is annoying. Cancel leaves: Nothing — no scaffolding has started yet.

  1. Create the minimal upfront todo list (see Progress Tracking):

    • Discover site requirements
    • Select template or choose from-scratch
  2. If site name, purpose, and audience are clear from arguments:

    • Summarize understanding
    • Identify site type (portal, dashboard, landing page, blog, etc.)
  3. If site name, purpose, or audience is unclear, use AskUserQuestion:

    QuestionHeaderOptions
    What should the site be called? (e.g., "Contoso Portal", "HR Dashboard")Site Name(free text — use a single generic option so the user types a custom name via "Other")
    What is the site's purpose?PurposeCompany Portal, Blog/Content, Dashboard, Landing Page
    Who is the target audience?AudienceInternal (employees, partners), External (public-facing customers)
  4. From the user's answers, derive:

    • __SITE_NAME__ (Title Case, e.g., Contoso Portal)
    • __SITE_SLUG__ (kebab-case derived from site name, e.g., contoso-portal)
    • __SITE_DESCRIPTION__ (one-line description based on name + purpose)
  5. Summarize the path-agnostic understanding and confirm with user before proceeding:

    • Site name
    • Site purpose/type
    • Target audience

    Do not ask for framework or project location in Phase 1. Each creation path asks for its location after Phase 1.5 selects that path.

Audience influences site generation:

  • Internal: Prioritize data tables, dashboards, authentication, navigation depth, functional over flashy design
  • External: Prioritize landing page appeal, SEO-friendly structure, contact forms, clean marketing-oriented layout

Output: Clear statement of site purpose, audience, and derived naming values.


Phase 1.5: Template Branch Decision

Goal: Route the user into the appropriate creation path after path-agnostic Discovery.

Current implementation state: Template discovery, selection, supporting-solution import, packaged SPA cloning/upload, optional seed data, activation, live-site preview, and terminal telemetry are implemented for kind: "spa". Traditional catalog entries are accepted but not shown until their solution-only provisioning flow is implemented. The user can always choose Start from scratch to continue into the existing scaffold flow.

Actions:

  1. Mark Select template or choose from-scratch as in_progress.

  2. Fetch the template catalog:

    node "${PLUGIN_ROOT}/scripts/fetch-template-catalog.js"
    

    Use the returned immutable commit SHA for every template artifact request in this run. Pass --ref <tag-or-branch> only for a deliberate test or rollback.

    Evaluate the JSON result:

    • If ok: false: tell the user templates are temporarily unavailable and continue with the from-scratch path. This is additive; a catalog failure must never block create-site.
    • If ok: true but selectableCatalog.templates is empty: tell the user no supported SPA templates are currently available and continue with the from-scratch path. Do not offer entries from catalog.templates whose kind is traditional.
    • If supported SPA templates are available: use selectableCatalog.templates for every matching, preview, browse, and selection step below. Keep catalog.templates only as the complete downloaded manifest.
  3. Semantically match the template families against the Phase 1 context ($ARGUMENTS, site name, purpose, audience, and any framework mentioned by the user):

    • Use each family template's displayName, description, keywords, audience, available variant frameworks, and any variant-specific previews.
    • Do not compute a numeric score or invent a ranking script. Keywords guide agent judgement; they are not counted.
    • Treat a template family as the user-facing template and a framework variant as the installable package. A family can have multiple variants (react, vue, angular, astro).
  1. Ask the user how to proceed after semantic matching:

    Match situationQuestionHeaderOptions
    One or more clear matchesI found matching template(s) for your site. What would you like to do?Creation PathShow matching templates (Recommended), Browse all templates, Create from scratch
    No clear matchI couldn't find a matching template for your site. What would you like to do?Creation PathBrowse all templates, Create from scratch (Recommended)

    Branch on the answer:

    • Show matching templates: set TEMPLATE_PREVIEW_FAMILIES to the matched family or families and continue to browser preview.
    • Browse all templates: set TEMPLATE_PREVIEW_FAMILIES to all entries in selectableCatalog.templates and continue to browser preview.
    • Create from scratch: set CREATION_PATH = "from-scratch" and continue to the deferred framework/location questions.
  2. Render TEMPLATE_PREVIEW_FAMILIES for browser preview:

    • Download each previewImages artifact into the SHA-keyed cache before rendering:
      node "${PLUGIN_ROOT}/scripts/fetch-template-artifact.js" --sha "<catalog-sha>" --artifactPath "<preview-image-path>"
      
      Replace each preview image path with the returned localUrl. If a preview download returns ok: false, omit that one image from the gallery and continue; a missing preview should not block using an otherwise-valid template.
    • Write a temporary JSON file containing a TEMPLATES_JSON array with the template families the user should preview and the cached preview image URLs. Include each family's available variants so the browser can show framework badges/tabs, but keep the browser read-only.
    • Run:
      node "${PLUGIN_ROOT}/scripts/render-template-browser.js" --templatesJsonPath "<temp-json>" --outputPath "<temp-html>" --open
      
      Evaluate the JSON result before telling the user to use the browser:
      • status: "ok": continue; the browser preview was generated and opened.
      • status: "invalid": do not continue with template selection. Surface the validation errors, rebuild the TEMPLATES_JSON file from the matched families, and rerun the render. If it is still invalid, fall back to from-scratch rather than showing an empty or incomplete template browser.
      • status: "ok" with opened: false: the HTML validated but the browser could not be opened automatically. Show the file path and continue with terminal selection only after the user has had a chance to open it manually.
    • The browser view is read-only and exists to browse template capabilities and available framework variants; the terminal AskUserQuestion remains the decision surface.
  1. Ask one of the following AskUserQuestion prompts:

    Match situationPrompt options
    One strong family + framework matchUse <displayName> - <framework> (Recommended), Choose another framework, See all templates, Start from scratch
    One strong family but no framework matchOne option per available framework, See all templates, Start from scratch
    Several plausible family matchesOne option per shortlisted family, See all templates, Start from scratch
    Full catalog browseOne option per family, Start from scratch

    When the user chooses See all templates from a matching-template branch, set TEMPLATE_PREVIEW_FAMILIES to all entries in selectableCatalog.templates, render the family-first SPA template gallery, and ask again with the Full catalog browse options. If the selected family has multiple variants, ask a second terminal question for the framework.

  2. Branch on the user's selection:

    • Template family and framework variant selected:
      1. Set SELECTED_TEMPLATE to the family entry and SELECTED_TEMPLATE_VARIANT to the exact framework variant. Resolve the selected template assets once from the pinned catalog SHA. The result combines the family's supporting solutions with the selected variant's website code:
        node "${PLUGIN_ROOT}/scripts/fetch-template-variant.js" \
          --sha "<catalog-sha>" \
          --catalogPath "<catalogPath from fetch-template-catalog.js>" \
          --kind "<SELECTED_TEMPLATE.kind>" \
          --templateId "<SELECTED_TEMPLATE.id>" \
          --variant "<SELECTED_TEMPLATE_VARIANT.variantKey>"
        
        Use the returned websiteCodePath and solutions. Process solutions in the returned order; do not rediscover, reorder, or revalidate the template assets in the skill.
      2. If the result is ok: false, tell the user the selected framework variant is unavailable or invalid. If the same family has other available framework variants, offer those first; otherwise offer Start from scratch or Stop. Do not emit template_used for a variant whose package did not validate. If the user falls back to from-scratch, recommend the framework they had selected.
      3. If the result is ok: true, set CREATION_PATH = "template", SELECTED_TEMPLATE_SOLUTIONS = <result.solutions>, and SELECTED_TEMPLATE_WEBSITE_CODE = <result.websiteCodePath>. Run the template_used telemetry command silently (fail-closed), then append the template pre-install tasks now (see Progress Tracking); append the execution tasks after the reinstall policy is known. Do not proceed to Phase 2. Do not mention this telemetry command to the user and do not print its output.
        node "${PLUGIN_ROOT}/scripts/emit-create-site-template-outcome.js" \
          --eventName template_used \
          --templateId "<SELECTED_TEMPLATE.id>" \
          --templateKind "<SELECTED_TEMPLATE.kind>" \
          --framework "<SELECTED_TEMPLATE_VARIANT.framework>" \
          --audience "<internal|external from Phase 1 discovery>"
        
        --audience is the site audience captured in Phase 1 (internal or external), not the template's audience persona array from the catalog manifest. Do not include site name, URL, subdomain, free-text purpose, or any other user-identifying value.
      4. Mark Choose local template directory as in_progress.
    Ask where to create the local template project:

    | Question | Header | Options |
    |----------|--------|---------|
    | Where should I create the template site's local files? | Project Location | Current directory, New folder in current directory (Recommended), Any other directory |

    Resolve the clone destination:
    - **Current directory**: use `<cwd>`.
    - **New folder in current directory**: use `<cwd>/<__SITE_SLUG__>/`.
    - **Any other directory**: ask for a full path and resolve it to an absolute path.

    The destination must not exist or must be empty. Check it without creating it. If it is non-empty, ask the user to choose another directory. Store the resolved path as `TEMPLATE_CLONE_OUTPUT_DIRECTORY`, confirm "The template project will be created under `<resolved path>`.", and mark **Choose local template directory** as `completed`.
  • Start from scratch or catalog unavailable: set CREATION_PATH = "from-scratch" and continue below.
  1. For the template path only:

    1. Mark Resolve target environment as in_progress.
    2. Resolve the target environment via the shared auth helpers:
      node "${PLUGIN_ROOT}/scripts/resolve-template-import-context.js"
      
      Use the returned environmentUrl for the remaining template workflow. Downstream preflight, import, seed, and polling helpers acquire Azure tokens internally so credentials are never returned in JSON or carried between tasks. If ok: false, surface the error and stop before import. Do not emit template_import_failure because no import was attempted; template_used was already emitted when the template path was selected.

🚦 Gate (consent · create-site:1.5.confirm-environment): Confirm the resolved target environment before running template install preflights.

Trigger: Phase 1.5 after resolve-template-import-context.js returns environmentUrl and before any CLI-tenant, .js unblock, language, solution import, seed, or activation step. Why we ask: PAC auth can point at a different Dataverse environment than the user intended. Even preflights can inspect or modify environment-level settings, so the skill must not continue silently. Cancel leaves: template-cache — template catalog assets, the discovered solution sources, and website code may already be cached locally; no org mutation has happened if cancelled here.

  1. Mark Resolve target environment as completed and Confirm target environment as in_progress, then ask the user to confirm the resolved target environment before any environment preflight:

    QuestionHeaderOptions
    Use <environmentUrl> as the target environment for this template install?Confirm EnvironmentYes, use this environment (Recommended), No, start from scratch, Cancel
    • Yes: continue to the preflight checks below.
    • No, start from scratch: set CREATION_PATH = "from-scratch" and continue to the deferred framework/location questions. Do not run environment preflights or import the template.
    • Cancel: stop before environment preflights. Do not emit template_import_failure because no import was attempted; template_used was already emitted when the template path was selected.
  2. Mark Confirm target environment as completed and Validate CLI tenant alignment as in_progress, then confirm PAC CLI and Azure CLI are authenticated to the same tenant before any import preflight that depends on both CLIs:

    node "${PLUGIN_ROOT}/scripts/validate-cli-tenant-alignment.js" --envUrl "<environmentUrl>"
    
    • ok: true: mark Validate CLI tenant alignment as completed.
    • ok: false: surface the error and the pacTenantId, azTenantId, and tokenTenantId fields when present. Stop before import and tell the user to switch either PAC auth or Azure CLI to the same tenant, then rerun the skill. Do not emit template_import_failure because no import was attempted.
  3. Mark both Validate JavaScript unblock requirement and Validate Dataverse language requirements as in_progress. Run the .js blocked-attachment dry run and the Dataverse language check in parallel because both are read-only preflights against the confirmed target environment:

    node "${PLUGIN_ROOT}/scripts/lib/fix-blocked-attachments.js" --envUrl "<environmentUrl>" --extensions js --dry-run --quiet
    node "${PLUGIN_ROOT}/scripts/check-available-languages.js" --envUrl "<environmentUrl>" --requiredLocaleIds "<SELECTED_TEMPLATE_VARIANT.requiredDataverseLanguages or SELECTED_TEMPLATE.requiredDataverseLanguages comma-separated>"
    

    Capture both JSON results before deciding what to do next. Do not mutate blockedattachments until the language check has also completed; if the language check blocks import, route to the language-requirement question without changing attachment settings. Evaluate the .js result:

    • wasBlocked does not include js: mark Validate JavaScript unblock requirement as completed; JavaScript attachments are allowed.
    • wasBlocked includes js: keep Validate JavaScript unblock requirement as in_progress; this may need the .js unblock consent gate below, but handle language failures first because they block import without any environment mutation. Evaluate the language result:
    • ok: true and hasRequiredLanguages: true: mark Validate Dataverse language requirements as completed; the target environment has every LCID required by the selected variant, falling back to the family requirements when the variant does not override them.
    • ok: false: tell the user the skill could not verify available Dataverse languages, surface the script error, then ask whether to switch to from-scratch or stop. Do not import the template and do not mutate blockedattachments.
    • ok: true and hasRequiredLanguages: false: explain that the selected template requires the missing Dataverse language LCIDs from missingLocaleIds. Block before any solution import mutation. Do not provide a "proceed anyway" branch and do not mutate blockedattachments.

🚦 Gate (consent · create-site:1.5.unblock-js): Preflight unblock of .js from the target environment's blockedattachments setting before uploading website code.

Trigger: Phase 1.5 when fix-blocked-attachments.js --dry-run --extensions js reports .js is blocked in the target environment. Why we ask: The packaged SPA is uploaded with pac pages upload-code-site after its supporting solutions are ready. That upload includes JavaScript files and fails when .js is blocked. Checking before solution import avoids leaving supporting artifacts behind when the site cannot be created. Cancel leaves: attachment-block-modified is possible only if the user approved and the update partially completed. Pure Cancel here leaves the original blockedattachments value untouched and no template installation has started.

  Use `AskUserQuestion`:

  | Question | Header | Options |
  |----------|--------|---------|
  | This environment currently blocks `.js` attachments. The template site's code upload will fail unless `.js` is unblocked. Remove only `js` from `blockedattachments` now? | Unblock JavaScript | Yes, unblock `.js` and continue (Recommended), No, start from scratch, Cancel |

  - **Yes**: run the helper without `--dry-run`, preserving every other blocked extension:
    ```bash
    node "${PLUGIN_ROOT}/scripts/lib/fix-blocked-attachments.js" --envUrl "<environmentUrl>" --extensions js --quiet
    ```
    Confirm the JSON result has `removed` containing `js` or `changed: true`, then rerun the dry-run check and continue only if `.js` is no longer blocked.
  - **No, start from scratch**: set `CREATION_PATH = "from-scratch"` and continue to the deferred framework/location questions. Do not import the template.
  - **Cancel**: stop before template installation. Do not emit `template_import_failure` because no import was attempted; `template_used` was already emitted when the template path was selected.
6. Use `AskUserQuestion` only when the language preflight cannot continue:

   | Question | Header | Options |
   |----------|--------|---------|
   | This template requires Dataverse language LCID(s) `<requiredLocaleIds>`, but the target environment is missing `<missingLocaleIds>` or the language check could not be completed. What would you like to do? | Template Language Requirement | Start from scratch (Recommended), Cancel |

   - **Start from scratch**: set `CREATION_PATH = "from-scratch"` and continue to the deferred framework/location questions. Do not import the template.
   - **Cancel**: stop before template installation. Do not emit `template_import_failure` because no import was attempted; `template_used` was already emitted when the template path was selected.

🚦 Gate (consent · create-site:1.5.template-import): Confirm installing the selected template in the current Power Platform environment.

Trigger: Phase 1.5 after the template variant and its unpacked solutions are downloaded and the target environment is resolved. Why we ask: The install can import unmanaged supporting solutions and create a new code site. Choosing the wrong environment or template is disruptive and cannot be cleanly undone. Cancel leaves: template-cache — the discovered solution sources and preview images may remain in the private SHA-keyed template cache; no org mutation has occurred.

  1. If the language preflight passed but .js was blocked and the user approved/verification passed, mark Validate JavaScript unblock requirement as completed. Then mark Confirm template install as in_progress, present the template and environment, and ask:

    QuestionHeaderOptions
    Install <SELECTED_TEMPLATE.displayName> into <environmentUrl>? This imports any required unmanaged supporting solutions, clones and builds the website code, and uploads the new code site. Seed data is applied before activation when available.Install TemplateYes, install this template (Recommended), No, start from scratch, Cancel
    • No, start from scratch: set CREATION_PATH = "from-scratch" and continue to the deferred framework/location questions.
    • Cancel: stop; no org mutation has happened. Do not emit template_import_failure because no import was attempted; template_used was already emitted when the template path was selected.
  2. Mark Confirm template install as completed. Initialize TEMPLATE_SOLUTIONS_TO_IMPORT = [] and TEMPLATE_SOLUTIONS_TO_SKIP = [], then process every entry in SELECTED_TEMPLATE_SOLUTIONS in the returned order:

    node "${PLUGIN_ROOT}/scripts/inspect-template-solution.js" --solutionPath "<solution.solutionPath>"
    node "${PLUGIN_ROOT}/scripts/check-solution-installed.js" --solutionName "<solution.uniqueName>" --envUrl "<environmentUrl>"
    node "${PLUGIN_ROOT}/scripts/inspect-template-solution.js" --solutionPath "<solution.solutionPath>" --installed "<true|false>" --installedVersion "<version-or-empty>"
    

    Do not derive a website name from a solution or expect supporting-solution import to add a pac pages list -v row. If metadata inspection returns ok: false after variant validation, or check-solution-installed.js exits 1, treat that solution as decision: "ask" rather than assuming it is absent.

    • decision: "import": append the solution to TEMPLATE_SOLUTIONS_TO_IMPORT.

    • decision: "confirm-update": tell the user that this specific solution has a newer version available and confirm before adding it to TEMPLATE_SOLUTIONS_TO_IMPORT.

      🚦 Gate (consent · create-site:1.5.update-installed): Confirm updating an already-installed unmanaged template solution. Repeat for each solution that needs an update.

      Trigger: Phase 1.5 when one of the selected template solutions is already installed and the downloaded source has a newer version. Loop behavior: Fires once per matching entry in SELECTED_TEMPLATE_SOLUTIONS; three solutions needing updates require three confirmations. Why we ask: Updating an unmanaged solution merges changes into the environment and cannot be cleanly rolled back. Cancel leaves: template-cache — downloaded template artifacts remain in the private SHA-keyed template cache; no org mutation happens if cancelled.

      Use AskUserQuestion:

      QuestionHeaderOptions
      Solution <solution.uniqueName> is installed at version <installedVersion>, and the template contains <availableVersion>. Update it in this environment?Update SolutionYes, update this solution (Recommended), No, cancel

      If the user declines or cancels, stop before import; no org mutation has happened. Do not emit template_import_failure because no import was attempted; template_used was already emitted when the template path was selected. If the user confirms, append this solution to TEMPLATE_SOLUTIONS_TO_IMPORT.

    • decision: "offer-clone": append the same-or-newer solution to TEMPLATE_SOLUTIONS_TO_SKIP.

    • decision: "ask" or detection failure: ask whether to import that solution anyway, start from scratch, or stop.

      🚦 Gate (consent · create-site:1.5.reinstall-unknown): Confirm whether to import when installed-solution detection failed.

      Trigger: Phase 1.5 when check-solution-installed.js cannot determine whether one selected template solution already exists. Loop behavior: Fires once per unknown entry in SELECTED_TEMPLATE_SOLUTIONS; an answer applies only to the named solution. Why we ask: Importing an unmanaged solution that may already exist can merge components. Cancel leaves: template-cache — downloaded template artifacts remain in the private SHA-keyed template cache; no org mutation happens if cancelled.

      Use AskUserQuestion:

      QuestionHeaderOptions
      I couldn't determine whether solution <solution.uniqueName> is installed. Importing it may merge unmanaged components. How would you like to proceed?Solution Install UnknownImport anyway (advanced), Start from scratch (Recommended), Stop

      Branch on the answer:

      • Import anyway: append this solution to TEMPLATE_SOLUTIONS_TO_IMPORT.
      • Start from scratch: set CREATION_PATH = "from-scratch" and continue to the deferred framework/location questions.
      • Stop: stop before import; no org mutation has happened. Do not emit template_import_failure because no import was attempted; template_used was already emitted when the template path was selected.

    After all solutions are classified, append the full site-install tasks. Include Import template supporting solutions only when TEMPLATE_SOLUTIONS_TO_IMPORT is non-empty. If every solution was skipped, ask once before creating the site:

    🚦 Gate (consent · create-site:1.5.clone-existing): Confirm creating a new site while reusing already-installed supporting solutions.

    Trigger: Phase 1.5 when every selected template solution is installed at the same or a newer version. Why we ask: The skill will skip all solution imports but still clone and upload a new code site. Cancel leaves: template-cache — downloaded template artifacts remain in the private SHA-keyed template cache; no site clone/upload happens if cancelled.

    QuestionHeaderOptions
    All supporting solutions are already installed at the same or newer versions. Create a new <SELECTED_TEMPLATE_VARIANT.framework> site from the website code?Create Template SiteYes, create the site (Recommended), No, cancel

    If the user confirms, set SKIP_TEMPLATE_SOLUTION_IMPORT = true. If the user declines, stop. Do not emit an import result event because no solution import was attempted.

  3. Render and open a read-only status page:

    # Create <temp-import-status-dir>/ under the operating-system temporary directory,
    # then write this initial status JSON to <temp-import-status-dir>/status.json:
    # Import path:
    # Use "Installing solution" when TEMPLATE_SOLUTIONS_TO_IMPORT has one entry,
    # otherwise use "Installing solutions":
    # { "state": "running", "phase": "solution", "message": "<solution install label>" }
    # SKIP_TEMPLATE_SOLUTION_IMPORT path:
    # { "state": "running", "phase": "site", "message": "Preparing template site" }
    node "${PLUGIN_ROOT}/scripts/render-template-import-status.js" \
      --templateName "<SELECTED_TEMPLATE.displayName>" \
      --statusPath "<temp-import-status-dir>/status.json" \
      --previewImagesJson '<JSON array of SELECTED_TEMPLATE.previewImages localUrl values from the template browser step>' \
      --solutionCount "<TEMPLATE_SOLUTIONS_TO_IMPORT.length, or SELECTED_TEMPLATE_SOLUTIONS.length when imports are skipped>" \
      --outputPath "<temp-import-status-dir>/index.html"
    node "${PLUGIN_ROOT}/scripts/serve-static-dir.js" --root "<temp-import-status-dir>" --urlFile "<temp-import-status-dir>/url.txt" --cleanupRoot
    node "${PLUGIN_ROOT}/scripts/open-url.js" --url "<url from <temp-import-status-dir>/url.txt>"
    

    Reuse the already-downloaded local preview image URLs from the browser step; do not fetch preview images again for this page. The server command returns only after the listener is ready. It removes the temporary status directory after a successful redirect, after the browser stops polling, or when the maximum lifetime expires.

  4. Unless SKIP_TEMPLATE_SOLUTION_IMPORT = true, mark Import template supporting solutions as in_progress. Process TEMPLATE_SOLUTIONS_TO_IMPORT sequentially in its existing case-insensitive lexical unique-name order. For each entry, set CURRENT_TEMPLATE_SOLUTION and prepare its unmanaged solution for import:

    # Update the status JSON:
    # { "state": "running", "phase": "solution", "message": "Preparing solution <CURRENT_TEMPLATE_SOLUTION.uniqueName>" }
    node "${PLUGIN_ROOT}/scripts/pack-template-solution.js" \
      --solutionPath "<CURRENT_TEMPLATE_SOLUTION.solutionPath>"
    

    Set PACKED_TEMPLATE_SOLUTION_ZIP = <result.zipPath>, PACKED_TEMPLATE_SOLUTION_WORK_DIRECTORY = <result.workDirectory>, PACKED_TEMPLATE_SOLUTION_CLEANUP_MARKER = <result.cleanupMarker>, and PACKED_TEMPLATE_SOLUTION_CLEANUP_TOKEN = <result.cleanupToken> for the current solution. The packer creates the ZIP only in a token-owned OS temporary directory. Never write a packed ZIP into the downloaded template cache or another repository path.

    If packing fails, do not call Dataverse and do not emit template_import_failure because no import was attempted. The packer removes partial output automatically.

    🚦 Gate (progress · create-site:1.5.pack-failed): Choose how to proceed after preparing the local solution package fails.

    Trigger: Phase 1.5 when local validation or pac solution pack fails for one discovered solution. Loop behavior: Fires per failed iteration of TEMPLATE_SOLUTIONS_TO_IMPORT; an answer applies only to CURRENT_TEMPLATE_SOLUTION. Why we ask: No environment mutation has happened, but template installation cannot continue without a valid temporary solution ZIP. Cancel leaves: template-cache — downloaded template source remains in the private SHA-keyed template cache; partial pack output has been removed.

    Use AskUserQuestion:

    QuestionHeaderOptions
    Solution <CURRENT_TEMPLATE_SOLUTION.uniqueName> could not be prepared for import. How would you like to proceed?Template Pack FailedRetry packing, Fall back to from-scratch (Recommended), Stop
    • Retry packing: return to the pack command above.
    • Fall back to from-scratch: set CREATION_PATH = "from-scratch" and continue to the deferred framework/location questions.
    • Stop: stop after showing the local pack error. Do not mark Import template supporting solutions as completed.

    After packing succeeds, import the temporary ZIP inline. Do not invoke /import-solution or write ALM artifacts. After ImportSolutionAsync returns the async operation id, immediately clean the packer's work directory, then launch a Task subagent to run poll-async-operation.js and write <temp-import-status-dir>/status.json:

    node "${PLUGIN_ROOT}/scripts/encode-solution-file.js" --zipPath "<PACKED_TEMPLATE_SOLUTION_ZIP>"
    # Write a temp JSON body file containing:
    # {
    #   "CustomizationFile": "<encoded>",
    #   "OverwriteUnmanagedCustomizations": true,
    #   "PublishWorkflows": true,
    #   "ConvertToManaged": false
    # }
    node "${PLUGIN_ROOT}/scripts/dataverse-request.js" "<environmentUrl>" POST "ImportSolutionAsync" \
      --bodyFile "<temp-import-body.json>" \
      --include-headers
    node "${PLUGIN_ROOT}/scripts/pack-template-solution.js" \
      --cleanup \
      --workDirectory "<PACKED_TEMPLATE_SOLUTION_WORK_DIRECTORY>" \
      --cleanupMarker "<PACKED_TEMPLATE_SOLUTION_CLEANUP_MARKER>" \
      --cleanupToken "<PACKED_TEMPLATE_SOLUTION_CLEANUP_TOKEN>"
    # Run this poll command in a Task subagent, not in the main conversation:
    node "${PLUGIN_ROOT}/scripts/poll-async-operation.js" \
      --asyncJobId "<AsyncOperationId from ImportSolutionAsync>" \
      --envUrl "<environmentUrl>" \
      --intervalMs 30000 \
      --maxAttempts 75 \
      --statusFile "<temp-import-status-dir>/status.json"
    

    If encoding or ImportSolutionAsync fails before returning an async operation id, clean PACKED_TEMPLATE_SOLUTION_WORK_DIRECTORY before retrying, falling back, or stopping. Treat a cleanup failure as a local warning and show the work-directory path so the user can remove it manually; do not hide the original failure.

    The subagent must return the poller's final JSON when the command exits. Do not rely only on that notification: read <temp-import-status-dir>/status.json every 30 seconds until state is succeeded, failed, canceled, or timeout. Do not start the next solution import until the current solution succeeds, and do not start site cloning until every solution in TEMPLATE_SOLUTIONS_TO_IMPORT succeeds. If the poll result is not Succeeded, query the import job (using the ImportJobKey returned by ImportSolutionAsync) and parse its component-level error XML, following /import-solution's Phase 6 pattern. Do not auto-clean up the unmanaged partial import. Run the template_import_failure telemetry command silently before asking the recovery question. Do not mention this telemetry command to the user and do not print its output:

    node "${PLUGIN_ROOT}/scripts/emit-create-site-template-outcome.js" \
      --eventName template_import_failure \
      --templateId "<SELECTED_TEMPLATE.id>" \
      --templateKind "<SELECTED_TEMPLATE.kind>" \
      --framework "<SELECTED_TEMPLATE_VARIANT.framework>" \
      --audience "<internal|external from Phase 1 discovery>" \
      --outcome failure \
      --errorClass "ImportSolutionAsync"
    

    --audience is the site audience captured in Phase 1 (internal or external), not the template's audience persona array from the catalog manifest. Do not add free-form error text to telemetry; it can contain paths, URLs, stack traces, or user data.

    🚦 Gate (progress · create-site:1.5.import-failed): Choose how to proceed after template solution import fails.

    Trigger: Phase 1.5 when ImportSolutionAsync fails, times out, or reports component-level failures. Loop behavior: Fires per failed iteration of TEMPLATE_SOLUTIONS_TO_IMPORT; an answer applies only to CURRENT_TEMPLATE_SOLUTION. Why we ask: The environment may contain the current partial unmanaged import plus any earlier solutions imported during this run; retrying or switching paths should be an explicit choice. Cancel leaves: partial-unmanaged-template-import — downloaded template artifacts remain in the private SHA-keyed template cache; the current partial import and any earlier successful solution imports remain in Dataverse and are explained in the error summary.

    Use AskUserQuestion:

    QuestionHeaderOptions
    Supporting solution <CURRENT_TEMPLATE_SOLUTION.uniqueName> failed or partially completed. How would you like to proceed?Template Import FailedRetry import, Fall back to from-scratch (Recommended), Stop

    Branch on the answer:

    • Retry import: return to the pack-and-import command sequence above and poll again.
    • Fall back to from-scratch: set CREATION_PATH = "from-scratch" and continue to the deferred framework/location questions. Tell the user the unmanaged partial import may remain in Dataverse. The eventual from-scratch branch emits the single terminal telemetry event.
    • Stop: stop after showing the error summary. Do not mark Import template supporting solutions as completed and do not clone or upload the site. The template_import_failure event was already emitted when the import failure was detected.

    If the error is AttachmentBlocked, point to /import-solution Phase 5b remediation. Only continue to the next step when the import poll result is Succeeded.

  5. When every required solution import succeeds, mark Import template supporting solutions as completed and set EMIT_TEMPLATE_IMPORT_SUCCESS = true. Defer that telemetry event until the seed-data workstream joins so seedApplied reflects this run. If every solution import was skipped, mark the task as skipped and set EMIT_TEMPLATE_IMPORT_SUCCESS = false.

  6. Start site provisioning and seed-data application concurrently after all required solution imports finish:

    • Mark Clone, build, and upload template site as in_progress.
    • If seed data is present, mark Apply template seed data as in_progress and launch the seed-data workstream with Task using run_in_background: true. The background task must only fetch, apply, and verify seed data. It must not clone, build, upload, activate, update the shared status file, ask the user questions, or retry failed writes.
    • Run the site-provisioning wrapper in the main conversation while the seed-data task runs. These workstreams are independent after the supporting solution import creates the required Dataverse tables.

    When seed data is present, update the status page:

    { "state": "running", "phase": "siteAndSeed", "message": "Creating template site and seeding data" }
    

    When seed data is absent, update it with:

    { "state": "running", "phase": "site", "message": "Cloning, building, and uploading template site" }
    

    Clone the packaged SPA source into the directory selected earlier, then upload the clone:

    node "${PLUGIN_ROOT}/scripts/provision-template-site.js" \
      --sourcePath "<SELECTED_TEMPLATE_WEBSITE_CODE>" \
      --outputDirectory "<TEMPLATE_CLONE_OUTPUT_DIRECTORY>" \
      --siteName "<__SITE_NAME__>"
    

    Treat the wrapper as the sole template-site provisioning entry point. Do not rerun its underlying pac, npm, or build commands directly for diagnosis. Never pipe a mutating command such as pac pages clone or pac pages upload-code-site through head, tail, or another consumer that can close the output stream before the command finishes. The wrapper safely captures a bounded diagnostic tail without interrupting the command. On success, save the returned clonedPath as both CLONED_TEMPLATE_SITE_PATH and PROJECT_ROOT, siteName as IMPORTED_SITE_NAME, and websiteRecordId as IMPORTED_WEBSITE_RECORD_ID.

  7. In the seed-data background task, run:

    node "${PLUGIN_ROOT}/scripts/fetch-template-seed-data.js" --sha "<catalog-sha>" --seedDataPath "<SELECTED_TEMPLATE_VARIANT.seedDataPath or SELECTED_TEMPLATE.seedDataPath>"
    

    If the result is ok: true, use localDir as the attachment base and seedFile as the only seed JSON:

    node "${PLUGIN_ROOT}/scripts/apply-seed-data.js" \
      --seedDir "<localDir>" \
      --seedFile "<seedFile>" \
      --envUrl "<environmentUrl>"
    

    Return the JSON summary (inserted, failed, skipped, errors) to the main conversation. Seed records must use the exact table entity-set names, column logical names, and <NavigationProperty>@odata.bind lookup names from the template solution metadata. Never derive lookup navigation properties from a primary key, entity set, display name, or app-style alias such as categoryId; the seeder rejects ambiguous aliases before its first Dataverse write. For a lightweight read-only verification path, query each seeded entitySetName with dataverse-request.js using GET "<entitySetName>?$top=1" and report whether the seeded table is reachable. Prefer the selected variant's seedDataPath when present; otherwise use the family seedDataPath.

  8. Wait for both workstreams to finish before showing the inactive-site summary or starting activation. Record the seed summary, then mark Apply template seed data as completed; if seed data is absent, mark it skipped. Seed fetch and insertion remain best-effort: surface their result, but do not fail site creation or block activation.

    If EMIT_TEMPLATE_IMPORT_SUCCESS = true, emit the import result now:

    node "${PLUGIN_ROOT}/scripts/emit-create-site-template-outcome.js" \
      --eventName template_import_success \
      --templateId "<SELECTED_TEMPLATE.id>" \
      --templateKind "<SELECTED_TEMPLATE.kind>" \
      --framework "<SELECTED_TEMPLATE_VARIANT.framework>" \
      --audience "<internal|external from Phase 1 discovery>" \
      --seedApplied "<true only when the seed summary has inserted > 0 and failed = 0; otherwise false>"
    

    --audience is the site audience captured in Phase 1 (internal or external), not the template's audience persona array from the catalog manifest. Do not include site name, URL, subdomain, free-text purpose, or any other user-identifying value.

  9. If clone, cloned-identity inspection, dependency installation, build, build-output validation, or upload fails, run template_clone_failure telemetry silently. Map the returned step to errorClass: clone/clone-output → PacPagesClone, install → NpmInstall, build → NpmBuild, build-output → CompiledOutput, and upload → PacPagesUploadCodeSite:

    node "${PLUGIN_ROOT}/scripts/emit-create-site-template-outcome.js" \
      --eventName template_clone_failure \
      --templateId "<SELECTED_TEMPLATE.id>" \
      --templateKind "<SELECTED_TEMPLATE.kind>" \
      --framework "<SELECTED_TEMPLATE_VARIANT.framework>" \
      --audience "<internal|external from Phase 1 discovery>" \
      --outcome failure \
      --errorClass "<PacPagesClone|NpmInstall|NpmBuild|CompiledOutput|PacPagesUploadCodeSite>"
    

    Update the status page before firing the recovery gate:

    { "state": "error", "phase": "site", "message": "Template site creation failed" }
    

    Diagnose the failure only from the wrapper's returned step, error, and preserved local path. Do not rerun the wrapper or any underlying command until the user chooses a recovery option. Then fire this gate:

  <!-- gate: create-site:1.5.clone-failed | category=progress | cancel-leaves=partial-template-clone -->
  > 🚦 **Gate (progress · create-site:1.5.clone-failed):** Choose how to proceed after cloning, building, or uploading the packaged template site fails.
  >
  > **Trigger:** Phase 1.5 when cloning, cloned identity inspection, dependency installation, the project build, compiled-output validation, or `pac pages upload-code-site` fails.
  > **Why we ask:** The selected project directory can contain partial clone or build output, the environment can contain a partial code-site upload, and supporting solutions may already be installed.
  > **Cancel leaves:** `partial-template-clone` — cached template artifacts and local files remain in the selected project directory; supporting solutions or a partial site upload may also remain in Dataverse.

  | Question | Header | Options |
  |----------|--------|---------|
  | The template site could not be cloned, built, or uploaded. How would you like to proceed? | Site Creation Failed | Retry site creation (Recommended), Fall back to from-scratch, Stop |

  Do not retry automatically. If the wrapper returned `outputDirectoryRemoved: true`, **Retry site creation** may reuse the same selected location. Otherwise, ask for a new empty directory using the same **Project Location** prompt, update `TEMPLATE_CLONE_OUTPUT_DIRECTORY`, and rerun the wrapper. If the user falls back to from-scratch, explain that local files, supporting solutions, or a partial site upload may remain and recommend `<SELECTED_TEMPLATE_VARIANT.framework>`.

13. When clone, build, and upload succeed, mark Clone, build, and upload template site as completed and run template_clone_success telemetry silently: bash node "${PLUGIN_ROOT}/scripts/emit-create-site-template-outcome.js" \ --eventName template_clone_success \ --templateId "<SELECTED_TEMPLATE.id>" \ --templateKind "<SELECTED_TEMPLATE.kind>" \ --framework "<SELECTED_TEMPLATE_VARIANT.framework>" \ --audience "<internal|external from Phase 1 discovery>" Do not include the site name, clone path, URL, or Website Record ID in telemetry. 14. Mark Show inactive template site as in_progress. Tell the user: "Template <displayName> was created as <IMPORTED_SITE_NAME> (<IMPORTED_WEBSITE_RECORD_ID>). It is not activated yet. Seed-data processing is complete, and activation is next." If the template has no seed data, say that instead of implying records were inserted. Mark Show inactive template site as completed. 15. Mark Activate template site as in_progress. Before invoking /activate-site, update the status page: json { "state": "running", "phase": "activation", "message": "Activating template site", "awaitingInput": false } Then invoke /activate-site, passing the resolved identity and status path in the request so it skips local-project discovery and can show a toast while waiting for activation input: text Activate cloned template site: - siteName: <IMPORTED_SITE_NAME> - websiteRecordId: <IMPORTED_WEBSITE_RECORD_ID> - environmentUrl: <environmentUrl> - statusPath: <temp-import-status-dir>/status.json - source: create-site template path The activate-site skill owns subdomain selection, the waiting-for-input toast, final activation confirmation, provisioning-status polling, and recovery. Its foreground activation script is the only poll required by this flow. If activation fails, tell the user the cloned site exists but is not live and can be activated later by rerunning /activate-site with this identity. Do not treat activation failure as a failed supporting-solution import or site upload. 16. When /activate-site returns a siteUrl, mark Activate template site as completed and Show live template site as in_progress. 17. Redirect the already-open status page to the live site: json { "state": "succeeded", "message": "Template site is live. Opening it now...", "redirectUrl": "<siteUrl>", "shutdownServer": true } Do not open a second browser page for the template path. The status page polls this file and redirects the same tab to redirectUrl when the URL is http or https. shutdownServer: true tells the local server to remove the temporary status directory after a short redirect grace period. If the user closed the status page, show the siteUrl for manual opening.

   Always surface the activate-site DNS propagation caveat: the site may take a few minutes to load even after activation succeeds. Do not start a separate background command or Task to wait for the live URL to return HTTP 200. The status-page redirect and DNS note handle that delay without leaving work that can resume the conversation after the completion summary. If a reachability poll was started accidentally, stop it before marking **Show live template site** as `completed`.

18. Mark Show live template site as completed, then present the template-path summary: - Template name and framework - Cloned site name and Website Record ID - Live site URL - DNS propagation note: the site may take a few minutes to load everywhere - Local project path (PROJECT_ROOT) - "Your site is live. Want to keep customizing the local project?"

  1. Use AskUserQuestion:

    QuestionHeaderOptions
    Your template site is live. Do you want to customize the local project now?Customize Template SiteYes, customize now (Recommended), No, finish here
    • No, finish here: mark Select template or choose from-scratch as completed, then stop.
    • Yes, customize now: append the template customization tasks (see Progress Tracking), then continue below.
  2. Mark Plan template customizations as in_progress, then ask what the user wants changed in PROJECT_ROOT. Use the existing Phase 3/4/5/6/7 implementation, verification, and review flow against the cloned project; do not run Phase 2 scaffold/copy-template.

  3. After the customization plan is approved, mark Plan template customizations as completed, Implement pages and components as in_progress, and make the requested changes.

  4. Run the existing validation/review flow. Do not automatically deploy unless the user explicitly asks to run /deploy-site.

  5. For the from-scratch path only, tell the user: "I'll scaffold this site from scratch."

  1. Ask the from-scratch-only questions that were deferred from Phase 1:

    QuestionHeaderOptions
    Which frontend framework?FrameworkReact (Recommended), Vue, Angular, Astro
    Where should the project be created?LocationCurrent directory, New folder in current directory (Recommended), Any other directory
  2. Resolve the project location:

  • If "Current directory": Project root = <cwd>.
  • If "New folder in current directory": Create a folder named __SITE_NAME__ inside the cwd. Project root = <cwd>/__SITE_NAME__/.
  • If "Any other directory": Ask for the full path. Verify/create it. Project root = provided path.

After resolving, confirm: "The site will be created at <resolved path>."

Store this as PROJECT_ROOT. 11. Append the from-scratch task list (Phases 2-8) to the todo list (see Progress Tracking), then mark Select template or choose from-scratch as completed.

Output: cloned template site identity (IMPORTED_SITE_NAME, IMPORTED_WEBSITE_RECORD_ID) and a local project path ready for optional customization; or CREATION_PATH = "from-scratch" with selected framework and resolved project location.


Phase 2: Scaffold & Launch Dev Server

Goal: Get a running site immediately so the user has something to preview while features and design are planned

The scaffold is a temporary branded loading screen — it shows a Power Pages animated "Building your site" experience with orbiting elements, status messages, and feature cards. Its only purpose is to get the dev server running quickly so the user has something to look at while you plan and build. During Phase 5 (Implementation), the entire scaffold — including theme.css, Layout, Home page, and all placeholder components — is completely replaced with the user's actual site: their chosen typography, color palette, pages, components, and navigation. Do NOT try to build on top of the loading screen; replace it entirely.

See ${PLUGIN_ROOT}/references/framework-conventions.md for the full framework → build tool → router → output path mapping.

Actions:

2.1 Copy Template

${PLUGIN_ROOT} is already resolved to the plugin's absolute path at runtime. Use it directly in Glob/Read paths — do NOT search for the plugin directory.

Read and copy all files from the matching asset template to the project directory:

FrameworkAsset Directory
React${PLUGIN_ROOT}/skills/create-site/assets/react/
Vue${PLUGIN_ROOT}/skills/create-site/assets/vue/
Angular${PLUGIN_ROOT}/skills/create-site/assets/angular/
Astro${PLUGIN_ROOT}/skills/create-site/assets/astro/

Use Glob to discover all files in the asset directory, Read each file, then Write to the project directory preserving the relative path structure.

Also copy the shared loader icon that the scaffold references from its CSS (url('/power-pages-icon.png')):

Read the binary file ${PLUGIN_ROOT}/skills/create-site/assets/shared/power-pages-icon.png and Write it to <PROJECT_ROOT>/public/power-pages-icon.png. (All four supported frameworks serve public/ at the web root, so the same /power-pages-icon.png URL works for every framework.)

Seed the live status file so the loader shows a real message the moment it mounts. Write <PROJECT_ROOT>/public/scaffold-status.json:

{ "message": "Planning your site", "awaitingInput": false }

See Live Preview Status Protocol for the full contract — from here on, update this file before every AskUserQuestion and before each Phase 5 implementation step.

2.2 Replace Placeholders

After copying, replace all __PLACEHOLDER__ tokens in every file. Use Edit with replace_all: true on each file.

  • Name/slug/description placeholders: Use the actual values from Phase 1 (__SITE_NAME__, __SITE_SLUG__, __SITE_DESCRIPTION__).

Note: The scaffold loading screen uses hardcoded Power Pages branding colors — there are no color placeholders (__PRIMARY_COLOR__, etc.) to replace. The user's chosen color palette is applied fresh during Phase 5 when the scaffold is completely replaced.

2.3 Rename gitignore

Rename gitignore → .gitignore in the project root (stored without dot prefix to avoid git interference in the plugin repo).

2.4 Install Dependencies

Run npm install before initializing git so that package-lock.json is included in the initial commit:

cd "<PROJECT_ROOT>"
npm install

Astro requires Node 22.12 or newer. Astro 7 exits with Node.js vX is not supported by Astro! on anything older, so when the chosen framework is Astro, run node --version first and ask the user to upgrade before continuing.

2.5 Initialize Git Repository

Initialize a git repo and make the first commit. This captures all template files AND package-lock.json in one clean baseline:

cd "<PROJECT_ROOT>"
git init
git add -A
git commit -m "Initial scaffold: __SITE_NAME__ (__FRAMEWORK__)"

From this point, commit after every significant milestone so any breaking change can be reverted.

2.6 Start Dev Server

This MUST happen now — before any planning or customization begins. The dev server gives the user a live preview while features and design are being planned:

cd "<PROJECT_ROOT>"
npm run dev

Run npm run dev in the background using Bash with run_in_background: true. Note the local URL (typically http://localhost:5173 for Vite or http://localhost:4200 for Angular or http://localhost:4321 for Astro).

2.7 Verify in Playwright & Share URL

Immediately after the dev server starts, verify the scaffold is working:

  1. Use mcp__plugin_power-pages_playwright__browser_navigate to open the dev server URL
  2. Use mcp__plugin_power-pages_playwright__browser_snapshot to verify the page loaded correctly (do NOT take screenshots — only use accessibility snapshots)
  3. Share the dev server URL with the user so they can preview the site in their own browser (e.g., "Your site is running at http://localhost:5173 — open it in your browser to follow along as I build.")

GATE: Do NOT proceed to Phase 3 until ALL of the following are true:

  1. Template files copied and placeholders replaced
  2. Git repo initialized with initial scaffold commit
  3. npm install completed successfully
  4. Dev server is running in the background (npm run dev)
  5. Playwright has opened the site and verified it loads via browser_snapshot
  6. The dev server URL has been shared with the user

If any of these are not done, complete them now before moving on.

Output: Running dev server with verified scaffold, URL shared with user


Phase 3: Component Planning

Goal: Determine what pages, components, and design elements the site needs — while the user previews the running scaffold

🚦 Gate (plan · create-site:3.requirements): Three sub-prompts (features multi-select, aesthetic, mood) — shape the Phase 4 plan and the Phase 5 implementation. Fires at step 2 of the action list below.

Trigger: Phase 3 entry; scaffold loader is up. Why we ask: Wrong feature set / aesthetic gets baked into the rendered plan — the Phase 4.7 gate would still catch most errors, but it's wasteful to defer the catch. Cancel leaves: Nothing — scaffold loader files are throwaway artifacts replaced wholesale in Phase 5.

Actions:

  1. Raise the "awaiting input" banner so the user notices the terminal prompt even while the browser loader is full-screen. Write <PROJECT_ROOT>/public/scaffold-status.json:

    { "message": "Planning your site", "awaitingInput": true, "inputPrompt": "Features, aesthetic, and mood — please answer in the terminal." }
    

    Immediately after the user answers, Write the same file again with "awaitingInput": false so the banner disappears.

  2. Use AskUserQuestion to collect feature and design requirements:

    QuestionHeaderOptions
    Which features? (multi-select)Features(generate 3-4 context-aware options based on the site name, purpose, and audience from Phase 1)
    What aesthetic direction do you want?AestheticMinimal & Clean (Recommended), Bold & Vibrant, Dark & Moody, Warm & Organic
    What's the overall mood?MoodProfessional & Trustworthy (Recommended), Creative & Playful, Technical & Precise, Elegant & Premium

    Feature options are NOT hardcoded. Infer relevant features from Phase 1 answers. For example:

    • "HR Dashboard" + Internal → Employee Directory, Leave Requests, Announcements, Org Chart
    • "Contoso Portal" + External → Contact Form, Service Catalog, Knowledge Base, FAQ
    • "Partner Hub" + Internal → Document Library, Partner Directory, Deal Tracker, Notifications

    Always generate options that make sense for the specific site — never reuse a fixed list.

    If you include an Authentication feature option, describe it generically as "Login/signup for tracking application status" or similar. Do NOT mention a specific identity provider (e.g., "Entra ID", "SAML", "Google") in the feature description — the /power-pages:setup-auth skill will ask the user which provider they want.

  3. AI Component Planning — Based on Phase 1 answers (site name, purpose, audience) and the feature selection above, propose which of the Power Pages generative-AI summarization APIs the site might use. The site itself does not depend on them — the page ships with reserved slots and runs without AI; /add-ai-webapi populates the slots later when the user is ready. Use AskUserQuestion with multi-select to let the user opt in:

    QuestionHeaderOptions
    Which AI summarization features should the site have? (multi-select — each can be added later with /add-ai-webapi)AI Summaries(generate 2-4 context-aware options plus "None for now")

    Options are NOT hardcoded. Infer relevant AI summary features from Phase 1 and the features picked above. Examples:

    • "HR Dashboard" + Leave Requests feature → "Data summarization for leave requests", "Search summary on the knowledge base"
    • "Contoso Portal" + Knowledge Base → "Search summary on site-wide search", "Data summarization for articles"
    • "Customer Self-Service" + Support Cases / Incidents → "Data summarization for support cases (Microsoft-shipped recipe)", "Data summarization for attached knowledge articles"

    Treat the standard incident table like any other Dataverse table — propose Data Summarization for it when the site handles support cases, but don't force the Microsoft-shipped recipe ($select=description,title + the portal-comments expand) unless that genuinely fits the user's UX. A custom case-like table or a different facet of the standard incident is a regular Data Summarization pick. Always include None for now so the user can defer. Do NOT integrate the APIs in this skill — only record the user's picks so Phase 4's plan can mention them and Phase 8 can suggest /add-ai-webapi as a recommended next step.

    Capture the selection in memory as AI_SUMMARY_PICKS — a list of one or more of: search-summary, data-summarization.

  4. Map picks to target pages. For each entry in AI_SUMMARY_PICKS, decide which page will carry the AI surface and store the mapping as AI_SUMMARY_PLACEMENTS. This is what Phase 4 shows the user and what Phase 5 reserves slots for. Use the feature selection from step 2 — and treat this mapping as an input to the page list Claude proposes in step 7: if a pick has no natural target page, add one to the plan so the summary has a home:

    PickDefault target pageIf no matching page is planned
    search-summaryA search / search-results page (e.g., SearchResults, Search)Add a search page to the plan so the summary has a home
    data-summarizationThe detail page of the table the user called out (e.g., ProductDetail for products, CaseDetail for support cases) — ask the user if ambiguousPropose adding a detail page; if rejected, fall back to a list/dashboard page

    AI_SUMMARY_PLACEMENTS shape: one record per placement, e.g. [{ pick: "data-summarization", targetPage: "CaseDetail", marker: "POWERPAGES:AI-SLOT kind=data-summarization" }].

    The marker string is the comment tag Phase 5 emits into the page source as a reserved anchor that /add-ai-webapi later finds. Keep the shape uniform — one marker per placement, always the same tag, so the follow-up skill's explore step can grep for them deterministically.

  5. Read the design aesthetics reference: ${PLUGIN_ROOT}/skills/create-site/references/design-aesthetics.md

  6. Map aesthetic + mood to design choices using the Aesthetic x Mood Mapping table from the design reference. Record the chosen font direction, color direction, and motion direction.

  7. Analyze requirements and determine needed components. If AI_SUMMARY_PLACEMENTS from step 4 implies a page that wasn't already in the plan (e.g., a CaseDetail page for a data-summarization pick on the support-case table), add it to the page list now. Present the component plan to the user as a table:

    | Component Type      | Count | Details |
    |---------------------|-------|---------|
    | Pages               | 4     | Home, About, Services, Contact |
    | Shared Components   | 3     | Navbar, Footer, ContactForm |
    | Design Elements     | 4     | Google Fonts (Playfair Display + Source Sans Pro), Color palette (6 CSS vars), Page transitions, Gradient backgrounds |
    | Routes              | 4     | /, /about, /services, /contact |
    
  8. Use best judgement to determine the final color palette based on the chosen aesthetic + mood. These will be written fresh into a new theme.css during Implementation (Phase 5) when the scaffold loading screen is completely replaced:

    CSS VariableDescriptionValue
    --color-primaryPrimary hex color(choose based on aesthetic + mood)
    --color-secondaryComplementary hex color(choose based on aesthetic + mood)
    --color-bgBackground color(choose based on aesthetic + mood)
    --color-surfaceSurface/card color(choose based on aesthetic + mood)
    --color-textMain text color(choose based on aesthetic + mood)
    --color-text-mutedMuted text color(choose based on aesthetic + mood)

Output: Confirmed list of pages, components, design elements, and routes to create


Phase 4: Plan Approval

Goal: Render the implementation plan as an HTML document, open it in the user's default browser, and get approval before starting implementation.

Why HTML instead of a chat message: A structured HTML plan (like the ones produced by /integrate-backend, /add-server-logic, and /add-cloud-flow) lets the user skim sections, compare swatches, and preview typography — all impossible in a terminal. The scaffold loader in their browser may also be full-screen, so surfacing the plan in a new tab puts it where they can actually read it.

4.1 Read the Design Reference

Read the design aesthetics reference: ${PLUGIN_ROOT}/skills/create-site/references/design-aesthetics.md. Every field you populate below should be justified by the chosen aesthetic + mood from Phase 3.

AI Readiness in the plan. If AI_SUMMARY_PLACEMENTS from Phase 3 is non-empty, reflect each placement in the matching PAGES_DATA entry's description or content — e.g., "Reserved slot for an AI summary card; populated later by /add-ai-webapi. The page ships without AI." This keeps the user's expectation honest: the site does not depend on generative-AI features being enabled on the tenant, and there is no "Run /add-ai-webapi" placeholder visible to end-users. If AI_SUMMARY_PLACEMENTS is empty, omit any AI references from the plan.

4.2 Build the Plan Data

Assemble a single JSON object with the following keys. The plan template rejects any data that's missing a required key, so include all of them.

KeyTypeContent
SITE_NAMEstringTitle-case site name from Phase 1
PLAN_TITLEstringAlways "Implementation Plan"
FRAMEWORKstringReact / Vue / Angular / Astro
AESTHETICstringChosen aesthetic (e.g., Minimal & Clean)
MOODstringChosen mood (e.g., Professional & Trustworthy)
SUMMARYstringOne paragraph describing what the site is and who it serves
TYPOGRAPHY_DATAobject{ primary: { name, sample, reason }, secondary: { name, sample, reason } } — name must be a real Google Font family
PALETTE_DATAarray[{ var, hex, description }] — one entry per CSS variable (primary, secondary, bg, surface, text, text-muted)
MOTION_DATAarray[{ label, description }] — page transitions, hover states, etc.
BACKGROUNDS_DATAarray[{ label, description }] — hero backgrounds, section treatments, patterns
PAGES_DATAarray[{ name, route, description, content: [...], components: [...] }] — content is an outline of what's on the page, components is shared component names used
COMPONENTS_DATAarray[{ name, purpose, usedBy: [...] }] — shared components with the page names that consume them
ROUTES_DATAarray[{ path, page }] — every route the router will register
REVIEW_DATAarray of stringsVerification checklist items (e.g., "All pages load without console errors")
DEPLOYMENT_DATAarray[{ title, description, recommended?: boolean }] — mark exactly one as recommended: true

Write the data for the user, not for internal tooling — phrase description and reason fields in plain language.

4.3 Render the HTML Plan

Pick an output path under <PROJECT_ROOT>/docs/. Default is create-site-plan.html; if that file already exists, pick a descriptive variant like create-site-plan-v2.html (the render script refuses to overwrite existing files).

node "${PLUGIN_ROOT}/scripts/render-createsite-plan.js" --output "<PROJECT_ROOT>/docs/create-site-plan.html" --data-inline '<json-string>'

Use --data-inline so no temp JSON file is written. If the JSON is too large for a single shell argument, write it to a temp file and use --data <path> instead, then delete the temp file after the render succeeds.

The script prints {"status":"ok","output":"<path>"} on success. Capture and use that actual output path for the next step.

4.4 Open the Plan in the Default Browser

Open <OUTPUT_PATH> in the default browser using the platform-appropriate file opener for the current environment. For example, use open on macOS, xdg-open on Linux, or the equivalent default-browser opener available on Windows.

4.5 Present a Brief Summary in the Terminal

Keep the terminal message short — the full plan lives in the HTML file now. Include:

  • One sentence confirming the plan was rendered and where (the output path).
  • A 3-5 line bullet summary: framework, page count, component count, palette primary + mood.
  • A pointer: "See the open browser tab for pages, color swatches, typography samples, and deployment options."

Do NOT dump the full plan contents into the terminal — that defeats the purpose of the HTML view.

4.6 Raise the "Awaiting Input" Banner

The user may still be looking at the full-screen scaffold loader when you ask for approval. Write <PROJECT_ROOT>/public/scaffold-status.json:

{ "message": "Ready to build", "awaitingInput": true, "inputPrompt": "Plan approval needed — review the plan in your browser and answer in the terminal." }

Immediately after the user answers, Write the same file again with "awaitingInput": false.

4.7 Ask for Approval

🚦 Gate (plan · create-site:4.7.plan-approval): Final sign-off on the rendered HTML plan before Phase 5 starts replacing the scaffold with real pages, components, and design tokens.

Trigger: Phase 4.3 rendered docs/create-site-plan.html; Phase 4.4 opened it in the browser. Why we ask: Phase 5 rewrites the entire scaffold (theme.css, Layout, Home page, components, routes) — undoing that touches every commit in the implementation phase. Cancel leaves: Nothing destructive — the scaffold itself can be deleted with the project directory; no Dataverse / deploy fired.

Use AskUserQuestion:

QuestionHeaderOptions
Does this plan look good?PlanApprove and start building (Recommended), I'd like to make changes
  • If "Approve": Proceed to Phase 5.
  • If "I'd like to make changes": Ask what they want changed, update the JSON, and re-render to a new filename (the render script won't overwrite). Re-open that new file in the browser and repeat 4.5–4.7.

Output: Approved implementation plan, with an HTML copy committed alongside the project for the user to reference during and after implementation.


Phase 5: Implementation

Goal: Build all pages, components, and design elements with the chosen aesthetic applied from the start

Prerequisite: The dev server MUST already be running and verified via Playwright (completed in Phase 2). If it is not, go back and complete Phase 2.

Design reference: Read ${PLUGIN_ROOT}/skills/create-site/references/design-aesthetics.md and apply its principles throughout this phase. All pages and components should be built with the chosen typography, color palette, motion, and backgrounds from the start — do NOT build with neutral styling first and redesign later.

Actions:

5.1 Create Todos for All Work

Before writing any code, use TaskCreate to create a todo for every piece of work. This gives the user full visibility into what will be built:

  • One todo per page — e.g., "Create Contact page (/contact)", "Create Dashboard page (/dashboard)"
  • One todo per shared component — e.g., "Create ContactForm component", "Create DataTable component"
  • One todo for routing — "Update router with all new routes"
  • One todo for navigation — "Update Layout/Header with navigation links"
  • One todo for design foundations — "Apply design tokens (fonts, colors, motion, backgrounds)"

Each todo should have a clear subject, activeForm, and description that includes the file path and what the page/component does. Then work through the todos in order, marking each in_progress → completed.

5.2 Replace the Scaffold & Build

The scaffold is a temporary loading screen — it must be completely replaced during this phase. Do NOT build on top of it or try to modify the loading animation into a real page. Start fresh with the user's chosen design.

Narrate progress in the loader: Before each of the steps below, update <PROJECT_ROOT>/public/scaffold-status.json so the user — who may still be watching the Home page loader — sees what's actually happening instead of the hardcoded placeholder cycle. Use a short present-participle message (e.g., "Creating Navbar component", "Creating Contact page"). Include any useful grouping context inline in the message itself. The loader picks up changes within ~1.5 seconds. Updates become no-ops once step 4 replaces the Home page.

  1. Design foundations — Completely rewrite theme.css (or styles.css for Angular) from scratch with the chosen color palette as CSS custom properties, Google Fonts, motion/animation utilities, and background treatments. The scaffold's loading screen CSS is discarded entirely. Commit after this step. Before starting, set the loader status to { "message": "Applying design tokens" }.

  2. Layout — Rewrite the Layout component (and Header/Footer for Astro) with proper navigation, header, and footer that reflect the chosen design. The scaffold's passthrough Layout is replaced with a real layout structure. Set status to { "message": "Rewriting Layout" }.

  3. Shared components — Build reusable components (Navbar, Footer, ContactForm, etc.) that pages will use. For each component, set status to { "message": "Creating <Component> component" }.

  4. Pages — Create route components for each requested page, replacing the scaffold Home page and About placeholder entirely. Each page component must update document.title on mount to reflect the current page (e.g., "Contact — Contoso Portal"). Use the framework's idiomatic lifecycle hook: useEffect (React), onMounted (Vue), ngOnInit (Angular), or a <title> tag in the frontmatter (Astro). Format: "<Page Name> — <Site Name>", with the home page using just "<Site Name>". For each page, set status to { "message": "Creating <Page> page" } before writing the file. The loader disappears when the Home page itself is replaced — no further status updates are needed after that.

  5. Router — Register all new routes (the scaffold only has / and /about — add all requested routes)

  6. Navigation — Add links to the new Layout/Header component

  7. Entry HTML — Update index.html (or Layout.astro for Astro) to load the chosen Google Fonts instead of the scaffold's DM Sans + Outfit

  8. Reserve AI summary slots — only if AI_SUMMARY_PLACEMENTS from Phase 3 is non-empty. For each placement, insert a single comment marker in the target page source at the intended insertion point. No visible placeholder UI, no stub components, no extra routes — just a grep-able anchor that /add-ai-webapi will later find and replace. Syntax depends on the framework:

    FrameworkMarker syntax
    React (JSX){/* POWERPAGES:AI-SLOT kind=<pick> */} inside the component's return JSX
    Vue (SFC template)<!-- POWERPAGES:AI-SLOT kind=<pick> --> inside <template>
    Angular (HTML template)<!-- POWERPAGES:AI-SLOT kind=<pick> --> inside the component template
    Astro<!-- POWERPAGES:AI-SLOT kind=<pick> --> inside the component's HTML

    Where <pick> is one of search-summary, data-summarization — verbatim from the placement record.

    Placement within the page:

    • data-summarization (record detail): directly after the page heading, above the detail content — this is where a Copilot-style summary card naturally reads in the reading order.
    • data-summarization (list page): directly above the list / table, below the page heading and any filter bar.
    • search-summary: directly above the search-results list, below the search input — the summary paragraph reads before the keyword hits.

    One marker per placement, exactly as defined in the marker field of the AI_SUMMARY_PLACEMENTS record. Do NOT add stub components (<CopilotSummaryCard />, etc.), CSS classes, or empty <aside> elements — the slot is just a comment. The site must ship as if AI is not a consideration; the follow-up skill does the real work.

Important: Build real, functional UI with distinctive design applied — not placeholder "coming soon" pages, and not generic unstyled markup. Every page and component should reflect the chosen aesthetic from the moment it's created. The scaffold loading screen should be completely gone after this phase — no trace of the Power Pages branded animation should remain.

5.3 Source Real Images

Use high-quality photos from Unsplash wherever the site needs visual content. Do NOT use placeholder services (e.g., placeholder.com, placehold.co), broken <img> tags, or leave empty image slots.

How to find images:

  1. Use WebSearch to search Unsplash for relevant photos (e.g., site:unsplash.com modern office workspace)
  2. Pick specific photos and use their direct URL with sizing parameters: https://images.unsplash.com/photo-{id}?w={width}&h={height}&fit=crop
  3. Choose images that match the site's aesthetic and mood

Where to use images:

  • Hero sections — Striking, high-resolution photos that set the tone for the site
  • Feature/service cards — Relevant photos that illustrate each feature or service
  • About/team sections — Professional or contextual photos matching the site's purpose
  • Backgrounds — Atmospheric photos used as full-bleed or overlay backgrounds
  • Content sections — Supporting photos that break up text and add visual interest

Guidelines:

  • Pick images that feel cohesive together — consistent style, lighting, and color tone
  • Use appropriate sizing (w=800 for cards, w=1600 for heroes/backgrounds) to avoid slow loads
  • Add descriptive alt text to every <img> for accessibility
  • For icons and logos, use inline SVGs instead of photos

5.4 Git Commit Checkpoints

Commit after every individual page and component so breaking changes can be reverted. Each page and each component gets its own commit — do NOT batch multiple pages or components into a single commit.

git add -A
git commit -m "<short description of what was added/changed>"

When to commit:

  • After applying design foundations (fonts, colors, motion)
  • After creating each page (e.g., "Add Home page", "Add Contact page")
  • After creating each shared component (e.g., "Add Navbar component", "Add Footer component")
  • After updating routing and navigation
  • Before attempting anything risky or experimental

If something breaks, revert to the last good commit:

git revert HEAD

5.5 Live Verification

After each significant change (new page or component), browse the site via Playwright to ensure everything is up to the mark:

  1. Use mcp__plugin_power-pages_playwright__browser_navigate to reload or navigate to the updated page
  2. Use mcp__plugin_power-pages_playwright__browser_snapshot to verify the page structure and content are correct — do NOT take screenshots
  3. If something looks wrong in the snapshot, fix it before proceeding

The user is previewing in their own browser via the dev server URL shared in Phase 2.7.

5.6 Clean Up the Live Status File

Once the scaffold loader is gone, public/scaffold-status.json is just dead weight that would ship with the deployed site. Delete the file from <PROJECT_ROOT>/public/ and commit the removal alongside the final implementation.

GATE: Do NOT proceed to Phase 6 until ALL customization is complete with design applied. The site must have distinctive typography (Google Fonts — no generic Inter/Roboto/Arial), a cohesive color palette (CSS variables), motion/animations, and all requested pages/features before moving to accessibility verification.

Output: All pages, components, and design elements implemented and verified


Phase 6: Accessibility Verification

Goal: Verify the site meets WCAG 2.2 AA standards using axe-core automated testing and fix any violations

Prerequisite: All pages and components must be fully implemented (Phase 5 complete). The dev server MUST be running.

Actions:

6.1 Install Playwright Dependency

Install playwright as a dev dependency in the project so the audit script can launch a headless browser. This uses the system-installed browser (Edge/Chrome) — no browser download is needed:

cd "<PROJECT_ROOT>"
npm install --save-dev playwright

6.2 Run axe-core Audit on Every Page

Run the audit script via Bash, passing the dev server URL and all site routes:

node "${PLUGIN_ROOT}/skills/create-site/scripts/axe-audit.js" --url <DEV_SERVER_URL> --routes /,/about,/services,/contact --project-root "<PROJECT_ROOT>"

Parse the returned JSON array of per-route results. Each result contains violations (with id, impact, description, helpUrl, and affected nodes), passes count, and incomplete count. A nonzero exit means at least one critical or serious violation was found.

Parse the JSON output and record all violations.

6.3 Fix Accessibility Violations

For each violation found, identify the source file and apply the fix:

ViolationFix
Missing alt text on imagesAdd descriptive alt attributes to <img> tags
Insufficient color contrastAdjust CSS color variables to meet 4.5:1 (normal text) or 3:1 (large text) ratios
Missing form labelsAdd <label> elements or aria-label attributes
Missing landmark regionsWrap content in <main>, <nav>, <header>, <footer>
Skipped heading levelsCorrect heading hierarchy (h1 → h2 → h3, no gaps)
Missing link textAdd descriptive text or aria-label to links
Missing lang attributeAdd lang="en" to the <html> tag
Inadequate focus indicatorsAdd visible outline styles to interactive elements

After fixing each group of related violations, commit:

git add -A
git commit -m "Fix accessibility: <violation description>"

6.4 Re-verify After Fixes

After all fixes are applied, re-run the audit script (same command as 6.2) to confirm violations are resolved:

  1. If new violations appear (e.g., a fix introduced a regression), repeat 6.3–6.4
  2. Continue until the script exits with code 0 (zero critical and serious violations)

Present a summary table to the user:

| Page | Route | Violations Found | Violations Fixed | Status |
|------|-------|-----------------|-----------------|--------|
| Home | / | 3 | 3 | Pass |
| About | /about | 1 | 1 | Pass |
| Contact | /contact | 2 | 2 | Pass |
| **Total** | | **6** | **6** | **All passing** |

GATE: Do NOT proceed to Phase 7 until all pages pass axe-core with zero critical and serious violations. Minor and moderate violations should also be fixed where possible, but are not blocking.

Output: Accessibility-verified site with zero critical/serious axe-core violations


Phase 7: Review & User Testing

Goal: Ensure the site meets user expectations and all pages work correctly

🚦 Gate (plan · create-site:7.review): Live-site review — last chance to request changes before the deploy prompt. Cancel branch lets the user keep iterating. Fires at step 4 of the action list below.

Trigger: Phase 7 has verified all pages render via Playwright. Why we ask: User loses the chance to spot UI issues before deploy; broken pages get pushed. Cancel leaves: Nothing — site files stay as-is on disk.

Actions:

  1. Browse through each page via Playwright (browser_navigate + browser_snapshot) to verify all pages load correctly — do NOT take screenshots

  2. Present a summary of what was built:

    | Component Type      | Count | Details |
    |---------------------|-------|---------|
    | Pages               | 4     | Home (/), About (/about), Services (/services), Contact (/contact) |
    | Shared Components   | 3     | Navbar, Footer, ContactForm |
    | Design Elements     | 4     | Playfair Display + Source Sans Pro, 6 CSS variables, fade-in transitions, gradient backgrounds |
    | Git Commits         | 7     | scaffold + 6 feature commits |
    
  3. Share the dev server URL with the user and list all available routes

  4. Ask the user to review using AskUserQuestion:

    "The site is ready for review at <dev server URL>. Please check it out in your browser. Would you like any changes?"

  5. If the user requests changes, apply them and re-verify by browsing via browser_snapshot

Output: User-approved site ready for deployment


Phase 8: Deployment & Next Steps

Goal: Deploy the site and suggest enhancements

This phase is MANDATORY. Do NOT end the session without asking about deployment.

🚦 Gate (plan · create-site:8.deploy): Deploy prompt — invokes /deploy-site on Yes. Skipping leaves the site files on disk for the user to deploy later. Fires at step 2 of the action list below.

Trigger: Phase 8 entry; Phase 7 review approved. Why we ask: Auto-deploy picks whatever env PAC CLI happens to be pointing at — wrong-env first deploy is messy to undo. Cancel leaves: Nothing — site files stay on disk; no deploy fired.

Actions:

  1. Record skill usage:

    Reference: ${PLUGIN_ROOT}/references/skill-tracking-reference.md

    Follow the skill tracking instructions in the reference to record this skill's usage. Use --skillName "CreateSite". Note: .powerpages-site may not exist for first-time sites — the script exits silently.

  2. Use AskUserQuestion with options: Deploy now (Recommended), Skip for now:

    "Would you like to deploy your site to Power Pages now?"

  3. If the user chooses to deploy, invoke the /deploy-site skill.

  4. Mark all todos complete

  5. Present a final summary:

    • Site name and purpose
    • Framework and project location
    • Components created (X pages, Y components, Z design elements)
    • Key files and their purposes
    • Total file count and git commit count
  6. Suggest optional enhancement skills:

    • /setup-datamodel — Create Dataverse tables for dynamic content
    • /add-seo — Add meta tags, robots.txt, sitemap.xml, favicon
    • /add-tests — Add unit tests (Vitest) and E2E tests (Playwright)
    • /add-ai-webapi — Add generative-AI summaries (Search Summary and Data Summarization). Recommend first when AI_SUMMARY_PLACEMENTS from Phase 3 is non-empty — the pages already carry POWERPAGES:AI-SLOT comment markers at the intended insertion points, so the follow-up skill's explore step finds them deterministically and the user gets the AI surface they picked during discovery without any page redesign.
  7. Run the create_site_from_scratch telemetry command silently (fail-closed). Do not mention this telemetry command to the user and do not print its output:

    node "${PLUGIN_ROOT}/scripts/emit-create-site-template-outcome.js" \
     --eventName create_site_from_scratch \
     --framework "<framework>" \
     --audience "<audience>"
    

Output: Deployed (or deployment-ready) site with clear next steps


Important Notes

Throughout All Phases

  • Use TaskCreate/TaskUpdate to track progress at every phase
  • Ask for user confirmation at key decision points (see list below)
  • Use best judgement for design details — make confident, creative choices based on the user's aesthetic + mood selection without asking for every specific font, color, or layout decision
  • Apply design from the start — never build neutral then restyle
  • Verify via Playwright after every significant change
  • Commit after every page and component — each gets its own dedicated commit, never batch multiple together
  • No screenshots — only use browser_snapshot (accessibility snapshots) to verify pages; never use browser_take_screenshot as it clutters the user's directory. Give the user the dev server URL for visual preview.

Key Decision Points (Wait for User)

  1. After Phase 1: Confirm site purpose and audience
  2. During Phase 1.5: Choose framework and project location for the from-scratch path
  3. After Phase 4: Approve implementation plan
  4. After Phase 7: Accept site or request changes
  5. At Phase 8: Deploy or skip

Progress Tracking

Before starting Phase 1, create only the path-agnostic upfront tasks using TaskCreate:

Task subjectactiveFormDescription
Discover site requirementsDiscovering requirementsCollect site name, purpose, audience, and derived naming values
Select template or choose from-scratchSelecting creation pathOffer matching templates, or route the user into the from-scratch path

After Phase 1.5 selects the from-scratch path, append the existing from-scratch phase tasks:

Task subjectactiveFormDescription
Scaffold and launch dev serverScaffolding projectCopy template, replace placeholders with defaults, git init, npm install, start dev server, share URL
Plan site componentsPlanning componentsDetermine pages, components, design direction, and routes while user previews scaffold
Approve implementation planGetting plan approvalPresent implementation plan covering design and pages, get user approval
Implement pages and componentsBuilding siteApply chosen design tokens, create all pages, components, routing, navigation
Verify accessibility with axe-coreVerifying accessibilityRun axe-core on every page, fix all critical/serious violations, re-verify until passing
Review with userReviewing siteNavigate all pages, share URL, get user feedback, apply changes
Deploy and wrap upDeploying siteAsk about deployment, present summary, suggest next steps

After Phase 1.5 selects the template path, append the pre-install tasks immediately so the user can see each environment check:

Task subjectactiveFormDescription
Choose local template directoryChoosing project locationAsk where the local template project should be cloned and require a new or empty destination
Resolve target environmentResolving environmentResolve the active PAC/Azure target environment and token before any environment preflight
Confirm target environmentConfirming environmentAsk whether the resolved environment is the one the user wants for the template install
Validate CLI tenant alignmentChecking CLI tenantsVerify PAC CLI and Azure CLI are authenticated to the same tenant before installation
Validate JavaScript unblock requirementChecking JavaScript settingCheck blockedattachments for .js and, with consent, remove only js before site upload
Validate Dataverse language requirementsChecking language availabilityCall RetrieveAvailableLanguages and require every LCID listed in the selected template's requiredDataverseLanguages
Confirm template installConfirming template installShow the selected template and target environment, then ask for final install consent

After the reinstall policy chooses a normal import, update, or import-anyway path, append:

When TEMPLATE_SOLUTIONS_TO_IMPORT contains exactly one entry, use the task subject Import template supporting solution and active form Importing supporting solution. Use the plural forms in the table for two or more entries.

Task subjectactiveFormDescription
Import template supporting solutionsImporting supporting solutionsImport each required unmanaged supporting solution in deterministic order and poll every async job to completion
Clone, build, and upload template siteCreating template siteClone the packaged SPA source into the selected local directory, install dependencies, build and verify the configured compiled output, then upload the resulting code site
Apply template seed dataApplying seed dataIn parallel with site creation, insert optional template seed records using the deterministic seed-data script; failures do not block activation
Show inactive template siteShowing template siteAfter site creation and seeding join, use the Website Record ID written by pac pages clone to .powerpages-site/website.yml and tell the user the uploaded site is not activated yet
Activate template siteActivating template siteInvoke activate-site with the resolved site name and Website Record ID
Show live template siteShowing live siteOpen the activated site URL in the browser and invite the user to continue customizing

If the user chooses to customize the live template, append:

Task subjectactiveFormDescription
Plan template customizationsPlanning customizationsAsk what the user wants changed and plan edits against the existing cloned project

When every supporting solution is already installed at the same or newer version, append the same list without Import template supporting solutions. The packaged SPA clone/upload, site discovery, seed, activation, and live-preview tasks still run.

Mark each task in_progress when starting it and completed when done via TaskUpdate. This gives the user visibility into progress and keeps the workflow deterministic while avoiding permanently skipped tasks on future non-from-scratch branches.

Quality Standards

Every site must meet these standards before completion:

  • Distinctive typography via Google Fonts (no generic Inter/Roboto/Arial)
  • Cohesive color palette via CSS variables
  • Motion/animations (page transitions, hover states)
  • All requested pages and features implemented (not placeholders)
  • All routes working and navigation complete
  • Accessibility verified via axe-core — zero critical/serious violations on all pages
  • Git commits at key milestones
  • Verified via Playwright
  • User reviewed and approved
  • Deployment offered

Example Workflow

User Request

"Create a partner portal for our consultants"

Phase 1: Discovery

  • Name: Partner Portal
  • Purpose: Company Portal
  • Audience: Internal (partners, consultants)

Phase 1.5: Template Branch Decision

  • Creation path: From-scratch
  • Framework: React
  • Location: New folder partner-portal in current directory

Phase 2: Scaffold & Launch

  • React template copied, default placeholders replaced
  • Git initialized, npm installed, dev server running at http://localhost:5173
  • Playwright verified scaffold loads
  • URL shared with user — they can preview immediately

Phase 3: Component Planning

  • Features: Consultant Directory, Project Tracker, Document Library, Announcements
  • Aesthetic: Minimal & Clean
  • Mood: Professional & Trustworthy
  • Component table presented and approved
  • Design choices made: DM Sans + Space Grotesk, #1e3a5f primary, blue-gray palette

Phase 4: Plan Approval

  • Plan data assembled as a single JSON object
  • Rendered to docs/create-site-plan.html via render-createsite-plan.js
  • Opened in the user's default browser
  • Brief summary shown in terminal with a pointer to the browser tab
  • User approved via AskUserQuestion

Phase 5: Implementation

  • Todos created for each page, component, routing, navigation, design foundations
  • Built in order: design tokens (replace defaults with chosen palette) → shared components → pages → router → nav
  • Git commits after each major piece
  • Playwright verified each page

Phase 6: Accessibility Verification

  • axe-core injected and run on all 4 pages via browser_evaluate
  • Found 5 violations: 2 missing alt text, 1 insufficient contrast, 1 missing lang attribute, 1 skipped heading level
  • All violations fixed in source code and committed
  • Re-run confirmed zero critical/serious violations across all pages

Phase 7: Review

  • Summary table presented
  • User reviewed at http://localhost:5173, requested minor color adjustment
  • Adjustment applied, re-verified

Phase 8: Deploy

  • User chose to deploy → invoked /deploy-site
  • Final summary presented with next step suggestions

Begin with Phase 1: Discovery

Skills เพิ่มเติมจาก microsoft

oss-growth
microsoft
บุคลิกภาพนักเติบโตโอเอสเอส
agent-framework-azure-ai-py
microsoft
สร้างเอเจนต์ Azure AI Foundry โดยใช้ Microsoft Agent Framework Python SDK (agent-framework-azure-ai) ใช้เมื่อสร้างเอเจนต์แบบถาวรด้วย AzureAIAgentsProvider ใช้เครื่องมือที่โฮสต์ไว้ (ตัวแปลโค้ด การค้นหาไฟล์ การค้นหาเว็บ) ผสานรวมเซิร์ฟเวอร์ MCP จัดการเธรดการสนทนา หรือใช้งานการตอบสนองแบบสตรีมมิ่ง ครอบคลุมเครื่องมือฟังก์ชัน ผลลัพธ์แบบมีโครงสร้าง และเอเจนต์แบบหลายเครื่องมือ
development
airunway-aks-setup
microsoft
ตั้งค่า AI Runway บน AKS — จากคลัสเตอร์เปล่าสู่การรันโมเดล ครอบคลุมการตรวจสอบคลัสเตอร์ การติดตั้งคอนโทรลเลอร์ การประเมิน GPU การตั้งค่าผู้ให้บริการ และการปรับใช้ครั้งแรก เมื่อ: "ตั้งค่า AI Runway", "เริ่มใช้งานคลัสเตอร์ AKS", "ติดตั้ง AI Runway", "ตั้งค่า airunway", "ปรับใช้โมเดลกับ AKS", "อนุมานด้วย GPU บน AKS", "ตั้งค่า KAITO บน AKS", "รัน LLM บน AKS", "vLLM บน AKS", "ตั้งค่าการให้บริการโมเดลบน AKS", "AI Runway controller
devops
appinsights-instrumentation
microsoft
แนวทางสำหรับการติดตั้งเครื่องมือวัดให้กับเว็บแอปพลิเคชันด้วย Azure Application Insights ให้รูปแบบเทเลเมทรี การตั้งค่า SDK และเอกสารอ้างอิงการกำหนดค่า เมื่อใด: วิธีติดตั้งเครื่องมือวัดให้กับแอป, App Insights SDK, รูปแบบเทเลเมทรี, App Insights คืออะไร, คำแนะนำเกี่ยวกับ Application Insights, ตัวอย่างการติดตั้งเครื่องมือวัด, แนวทางปฏิบัติที่ดีที่สุดสำหรับ APM
devops
applicationinsights-web-ts
microsoft
ใช้เครื่องมือวัดแอปเบราว์เซอร์/เว็บด้วย Application Insights JavaScript SDK (@microsoft/applicationinsights-web) ใช้สำหรับ Real User Monitoring (RUM) — การดูหน้าเว็บ คลิก ดีเพนเดนซี AJAX/fetch ข้อยกเว้น อีเวนต์ที่กำหนดเอง และเทรซเอเจนต์ GenAI ฝั่งเบราว์เซอร์ที่เชื่อมโยงกับเทรซ OpenTelemetry ฝั่งแบ็กเอนด์ ครอบคลุมการตั้งค่า SDK Loader Script และ npm ส่วนขยายเฟรมเวิร์ก (React, React Native, Angular), Click Analytics, ตัวเริ่มต้นเทเลเมทรี และหลักการตั้งชื่อเชิงความหมาย OTel GenAI สำหรับสแปนเอเจนต์/เครื่องมือ/โมเดลที่ส่งจากเบราว์เซอร์
devops
azure-ai-anomalydetector-java
microsoft
สร้างแอปพลิเคชันตรวจจับความผิดปกติด้วย Azure AI Anomaly Detector SDK สำหรับ Java ใช้เมื่อต้องการนำการตรวจจับความผิดปกติแบบตัวแปรเดียว/หลายตัวแปร การวิเคราะห์อนุกรมเวลา หรือการตรวจสอบที่ขับเคลื่อนด้วย AI ไปใช้
development
azure-ai-language-conversations-py
microsoft
ใช้ Conversational Language Understanding (CLU) ด้วย Python SDK ของ azure-ai-language-conversations ใช้เมื่อทำงานกับ ConversationAnalysisClient เพื่อวิเคราะห์เจตนาและเอนทิตีของการสนทนา สร้างฟีเจอร์ NLP หรือผสานความเข้าใจภาษาเข้ากับแอปพลิเคชัน
development
azure-ai-ml-py
microsoft
Azure Machine Learning SDK v2 สำหรับ Python ใช้สำหรับพื้นที่ทำงาน ML งาน โมเดล ชุดข้อมูล คอมพิวต์ และไปป์ไลน์ ทริกเกอร์: "azure-ai-ml", "MLClient", "workspace", "model registry", "training jobs", "datasets
development