[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-create-webroles":3,"mdc-davrev-key":43,"related-repo-microsoft-create-webroles":2025,"related-org-microsoft-create-webroles":2124},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":38,"sourceUrl":41,"mdContent":42},"create-webroles","create and manage Power Pages web roles","Creates and configures web roles for a Power Pages code site. Web roles control access and permissions for site users, including authenticated and anonymous roles. Use when the user wants to create, add, set up, or manage web roles for their site.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,19,22,23],{"name":13,"slug":14,"type":15},"Security","security","tag",{"name":17,"slug":18,"type":15},"Operations","operations",{"name":20,"slug":21,"type":15},"Power Pages","power-pages",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},"Access Control","access-control",564,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fpower-platform-skills","2026-04-06T18:34:38.618785",null,114,[32,33,34,35,36,21,37],"claude-code-plugin","claude-code-skills","code-apps","github-copilot-plugin","power-apps","power-platform",{"repoUrl":27,"stars":26,"forks":30,"topics":39,"description":40},[32,33,34,35,36,21,37],"A plugin marketplace for Claude Code\u002FGitHub Copilot that provides Power Platform development plugins, including reusable skills, agents, and commands for building and deploying solutions.","https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fpower-platform-skills\u002Ftree\u002FHEAD\u002Fplugins\u002Fpower-pages\u002Fskills\u002Fcreate-webroles","---\nname: create-webroles\ndescription: >-\n  Creates and configures web roles for a Power Pages code site. Web roles control access\n  and permissions for site users, including authenticated and anonymous roles. Use when the\n  user wants to create, add, set up, or manage web roles for their site.\nuser-invocable: true\nallowed-tools: Read, Write, Bash, Grep, Glob, AskUserQuestion, Task, TaskCreate, TaskUpdate, TaskList\nmodel: opus\n---\n\n> **Plugin check**: Run `node \"${PLUGIN_ROOT}\u002Fscripts\u002Fcheck-version.js\"` — if it outputs a message, show it to the user before proceeding.\n\n# Create Web Roles\n\nCreate web roles for a Power Pages code site. Web roles define the permissions and access levels for different types of site users.\n\n## Core Principles\n\n- **Use TaskCreate\u002FTaskUpdate**: Track all progress throughout all phases — create the todo list upfront with all phases before starting any work.\n- **Always use the UUID script**: Never generate UUIDs manually — always use `${PLUGIN_ROOT}\u002Fscripts\u002Fgenerate-uuid.js` to produce valid UUID v4 values for each web role.\n- **Preserve uniqueness constraints**: Only one role can have `anonymoususersrole: true` and only one can have `authenticatedusersrole: true`. Always check existing roles before setting these flags.\n- **Caller-suppress mode is opt-in**: When invoked by another skill (e.g. `\u002Fadd-ai-webapi`) with the `[CALLED-BY-PARENT-SKILL]` sentinel in `$ARGUMENTS`, suppress this skill's deploy prompts (Phase 1's missing-deploy ask, Phase 6's deploy ask (step 3), and the closing reminder) and return as soon as roles are created. The caller batches the deploy at end-of-orchestration. Human invocations never trigger this mode. See Phase 0 below for parsing.\n\n> **Prerequisite:** The site must be deployed at least once before web roles can be created, since deployment creates the `.powerpages-site` folder structure that stores web role definitions.\n\n**Initial request:** $ARGUMENTS\n\n## Phase 0: Detect caller-suppress mode\n\nInspect `$ARGUMENTS`. If the text contains the sentinel `[CALLED-BY-PARENT-SKILL]`, set an\ninternal flag **caller-suppress = true** that downstream phases consult. The optional token\n`caller=\u003Cskill-name>` may follow the sentinel for diagnostic purposes (e.g.\n`caller=add-ai-webapi`); record it for the final summary but do not branch on it.\n\nWhen the flag is set, skip every deploy prompt this skill would otherwise issue:\n\n- **Phase 1 missing-deploy ask**: if `.powerpages-site` is absent, do NOT ask the user to\n  deploy now. Stop with a clear contract-violation message back to the caller — the caller\n  was supposed to gate on this before invoking us.\n- **Phase 6 deploy ask (step 3)** and the closing \"Please run `\u002Fdeploy-site`\"\n  reminder: skip both. The caller batches the single deploy decision at end-of-orchestration.\n\nWhen the sentinel is absent, proceed exactly as today (full interactive flow). This is the\nregression guard — no human invocation changes behavior.\n\n---\n\n## Workflow\n\n1. **Phase 1: Verify Site Structure** → Check for `.powerpages-site\u002Fweb-roles\u002F` directory\n2. **Phase 2: Discover Existing Roles** → Read current web role YAML files\n3. **Phase 3: Determine New Roles** → Analyze the site and ask the user what roles are needed\n4. **Phase 4: Create Web Role Files** → Generate YAML files with UUIDs from the Node script\n5. **Phase 5: Verify Web Roles** → Validate all created files exist, have valid UUIDs, and flags are correct\n6. **Phase 6: Review & Deploy** → Present summary and proceed to deployment\n\n---\n\n## Phase 1: Verify Site Structure\n\n**Goal**: Confirm the `.powerpages-site\u002Fweb-roles\u002F` directory exists and is ready for web role files\n\n**Actions**:\n\n1. Locate the project root (`**\u002Fpowerpages.config.json`) and check for `.powerpages-site\u002Fweb-roles\u002F`.\n\n\u003C!-- gate: create-webroles:1.deploy-first | category=plan | cancel-leaves=nothing -->\n\n> 🚦 **Gate (plan · create-webroles:1.deploy-first):** `.powerpages-site` missing — skill cannot proceed without that folder. Prompt to deploy first or stop.\n>\n> **Trigger:** Phase 1 found no `.powerpages-site` directory.\n> **Why we ask:** Web role YAML files written to a non-existent path will never get picked up by deploy; user thinks roles were created but they weren't.\n> **Cancel leaves:** Nothing — no YAML files written.\n\n2. **If `.powerpages-site` does NOT exist:**\n   - **In caller-suppress mode** (Phase 0 flag): stop with a contract-violation message —\n     the calling skill should have gated on this folder existing before invoking us.\n   - **Otherwise**: ask the user to deploy first via `AskUserQuestion` (options: \"Yes, deploy now (Recommended)\", \"No, I'll do it later\"). If yes, invoke `\u002Fdeploy-site` then resume from Phase 2. If no, stop.\n\n3. **If `.powerpages-site` exists but `web-roles\u002F` does NOT:** Create the `\u003CPROJECT_ROOT>\u002F.powerpages-site\u002Fweb-roles\u002F` directory.\n\n4. **If both exist:** Proceed to Phase 2.\n\n**Output**: Confirmed `.powerpages-site\u002Fweb-roles\u002F` directory exists and is ready\n\n---\n\n## Phase 2: Discover Existing Roles\n\n**Goal**: Identify all web roles already defined for the site\n\n**Actions**:\n\n1. Read all YAML files in the `.powerpages-site\u002Fweb-roles\u002F` directory. Each file represents one web role with this format:\n\n   ```yaml\n   anonymoususersrole: false\n   authenticatedusersrole: false\n   id: 778fa3d0-a2ef-4d2b-98b8-e6c7d8ce1444\n   name: Administrators\n   ```\n\n2. Parse each file and compile a list of existing web roles (name, id, and flags).\n\n3. Present the existing roles to the user:\n\n   > \"I found the following existing web roles in your site:\"\n   > - **Administrators** (id: `778fa3d0-...`, authenticated: false, anonymous: false)\n   > - *(etc.)*\n\n4. If no roles exist yet, inform the user:\n\n   > \"No web roles are currently defined for your site.\"\n\n**Output**: Complete list of existing web roles with their names, IDs, and flags\n\n---\n\n## Phase 3: Determine New Roles\n\n**Goal**: Decide which new web roles to create based on site needs and user input\n\n**Actions**:\n\n\u003C!-- gate: create-webroles:3.role-selection | category=plan | cancel-leaves=nothing -->\n\n> 🚦 **Gate (plan · create-webroles:3.role-selection):** Multi-select over suggested + custom web roles. Drives the Phase 4 YAML file writes.\n>\n> **Trigger:** Phase 2 inventoried existing roles; Phase 3 suggests new ones.\n> **Why we ask:** Wrong roles get created locally — fixable but adds churn to the `.powerpages-site\u002Fweb-roles\u002F` folder.\n> **Cancel leaves:** Nothing — no YAML files written yet.\n\n1. Based on the site's purpose and the existing roles, suggest appropriate web roles. Use `AskUserQuestion` to confirm with the user.\n\n   Common web roles for Power Pages sites include:\n   - **Administrators** — Full access to site management\n   - **Authenticated Users** — Default role for logged-in users (set `authenticatedusersrole: true`)\n   - **Anonymous Users** — Default role for non-logged-in visitors (set `anonymoususersrole: true`)\n   - **Content Editors** — Users who can edit site content\n   - **Moderators** — Users who can moderate community content\n   - Custom roles based on business needs\n\n2. Ask the user which roles they want to create:\n\n   | Question | Options |\n   |----------|---------|\n   | Which web roles would you like to create for your site? You can select from suggestions or describe custom roles. | *(Provide relevant suggestions based on site context, existing roles, and business domain)* |\n\n   CRITICAL: Do NOT suggest roles that already exist. Filter out any existing role names before presenting options.\n\n3. Allow the user to specify custom role names as well.\n\n**Output**: Confirmed list of new web roles to create\n\n---\n\n## Phase 4: Create Web Role Files\n\n**Goal**: Generate properly formatted YAML files with valid UUIDs for each new web role\n\n**Actions**:\n\nFor each new web role the user approved, create a YAML file in `.powerpages-site\u002Fweb-roles\u002F`.\n\n### 4.1 Generate UUID\n\nFor each role, generate a UUID using the Node script. **NEVER generate UUIDs yourself — always use the script.**\n\n```bash\nnode \"${PLUGIN_ROOT}\u002Fscripts\u002Fgenerate-uuid.js\"\n```\n\n### 4.2 Create the YAML File\n\nThe filename should be the role name in kebab-case with a `.yml` extension (e.g., `Administrators` → `administrators.yml`, `Content Editors` → `content-editors.yml`).\n\nWrite the file with this exact format (4 fields, no extra whitespace or comments):\n\n```yaml\nanonymoususersrole: \u003Ctrue if this is the anonymous users role, false otherwise>\nauthenticatedusersrole: \u003Ctrue if this is the authenticated users role, false otherwise>\nid: \u003CUUID from generate-uuid.js>\nname: \u003CRole Name>\n```\n\n**Rules:**\n\n- Only ONE role can have `anonymoususersrole: true`\n- Only ONE role can have `authenticatedusersrole: true`\n- If an existing role already has one of these flags set to `true`, do not set it again on a new role\n- Each role MUST have a unique UUID generated by the script — run the script once per role\n\n**Output**: All new web role YAML files created\n\n---\n\n## Phase 5: Verify Web Roles\n\n**Goal**: Validate that all created web role files exist, have valid format, and constraints are satisfied\n\n**Actions**:\n\n1. List all files in `.powerpages-site\u002Fweb-roles\u002F` and read each new file to confirm they were written correctly.\n\n2. For each new web role file, verify:\n   - The file exists at the expected path\n   - The `id` field contains a valid UUID v4 format\n   - The `name` field matches the expected role name\n   - `anonymoususersrole` and `authenticatedusersrole` are valid booleans\n\n3. Verify uniqueness constraints across ALL role files (existing + new):\n   - At most one role has `anonymoususersrole: true`\n   - At most one role has `authenticatedusersrole: true`\n   - No duplicate `id` values exist across roles\n\n4. If any file fails validation, fix the issue before proceeding.\n\n**Output**: All web role files validated — correct format, valid UUIDs, no constraint violations\n\n---\n\n## Phase 6: Review & Deploy\n\n**Goal**: Present a summary of created roles and offer deployment\n\n**Actions**:\n\n1. Record skill usage:\n\n   > Reference: `${PLUGIN_ROOT}\u002Freferences\u002Fskill-tracking-reference.md`\n\n   Follow the skill tracking instructions in the reference to record this skill's usage. Use `--skillName \"CreateWebroles\"`.\n\n2. Present a summary of what was created:\n\n   > \"I've created the following new web roles:\"\n>\n   > | Role Name | ID | Anonymous | Authenticated |\n   > |-----------|-----|-----------|---------------|\n   > | Content Editors | `a1b2c3d4-...` | false | false |\n   > | *(etc.)* |\n\n\u003C!-- gate: create-webroles:6.deploy | category=plan | cancel-leaves=nothing -->\n\n> 🚦 **Gate (plan · create-webroles:6.deploy):** Final post-create prompt — deploy now to make the new roles take effect, or defer.\n>\n> **Trigger:** Phase 5 validation succeeded.\n> **Why we ask:** Auto-invoking `\u002Fdeploy-site` would push the site to whatever env PAC CLI happens to point at — wrong-env push is messy to undo.\n> **Cancel leaves:** Nothing — the YAML files stay on disk; no deploy fired.\n\n3. **In caller-suppress mode** (Phase 0 flag): skip the deploy ask and the closing reminder\n   entirely. Return the created-roles summary to the caller and stop. The caller owns the\n   single end-of-orchestration deploy decision; nesting deploy reminders inside delegations\n   gives the user 2–3 redundant prompts per parent-skill run.\n\n   **Otherwise**, ask the user if they want to deploy the site to apply the new roles:\n\n   | Question | Options |\n   |----------|---------|\n   | The new web roles have been created locally. To apply them in Power Pages, the site needs to be deployed. Would you like to deploy now? | Yes, deploy now (Recommended), No, I'll deploy later |\n\n4. **If \"Yes, deploy now\"**: Tell the user to invoke the deploy skill:\n\n   > \"Please run `\u002Fdeploy-site` to deploy your site and apply the new web roles.\"\n\n5. **If \"No, I'll deploy later\"**: Acknowledge and remind them:\n\n   > \"No problem! Remember to deploy your site using `\u002Fdeploy-site` when you're ready to apply the new web roles to your Power Pages environment.\"\n\n**Output**: Summary presented and deployment offered\n\n---\n\n## Important Notes\n\n### Key Decision Points (Wait for User)\n\n1. After Phase 1: Confirm deployment if `.powerpages-site` is missing\n2. After Phase 3: Confirm which roles to create\n3. After Phase 6: Deploy or skip\n\n### Progress Tracking\n\nBefore starting Phase 1, create a task list with all phases using `TaskCreate`:\n\n| Task subject | activeForm | Description |\n|-------------|------------|-------------|\n| Verify site structure | Verifying site structure | Check for `.powerpages-site\u002Fweb-roles\u002F` directory, create if needed |\n| Discover existing roles | Discovering existing roles | Read current web role YAML files and compile list of existing roles |\n| Determine new roles | Determining new roles | Analyze site needs and ask user which roles to create |\n| Create web role files | Creating web role files | Generate YAML files with UUIDs from the Node script for each new role |\n| Verify web roles | Verifying web roles | Validate all files exist, have valid UUIDs, and uniqueness constraints are satisfied |\n| Review and deploy | Reviewing and deploying | Present summary of created roles and offer deployment |\n\nMark 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.\n\n---\n\n**Begin with Phase 1: Verify Site Structure**\n",{"data":44,"body":48},{"name":4,"description":6,"user-invocable":45,"allowed-tools":46,"model":47},true,"Read, Write, Bash, Grep, Glob, AskUserQuestion, Task, TaskCreate, TaskUpdate, TaskList","opus",{"type":49,"children":50},"root",[51,78,85,90,97,190,211,221,227,269,274,312,317,321,327,399,402,407,424,434,457,510,609,626,629,634,643,651,814,823,826,831,840,848,890,1040,1049,1052,1057,1066,1074,1085,1092,1102,1146,1152,1194,1199,1270,1278,1318,1327,1330,1335,1344,1352,1464,1473,1476,1481,1490,1498,1545,1624,1666,1770,1779,1782,1788,1794,1819,1825,1837,1979,2008,2011,2019],{"type":52,"tag":53,"props":54,"children":55},"element","blockquote",{},[56],{"type":52,"tag":57,"props":58,"children":59},"p",{},[60,67,69,76],{"type":52,"tag":61,"props":62,"children":63},"strong",{},[64],{"type":65,"value":66},"text","Plugin check",{"type":65,"value":68},": Run ",{"type":52,"tag":70,"props":71,"children":73},"code",{"className":72},[],[74],{"type":65,"value":75},"node \"${PLUGIN_ROOT}\u002Fscripts\u002Fcheck-version.js\"",{"type":65,"value":77}," — if it outputs a message, show it to the user before proceeding.",{"type":52,"tag":79,"props":80,"children":82},"h1",{"id":81},"create-web-roles",[83],{"type":65,"value":84},"Create Web Roles",{"type":52,"tag":57,"props":86,"children":87},{},[88],{"type":65,"value":89},"Create web roles for a Power Pages code site. Web roles define the permissions and access levels for different types of site users.",{"type":52,"tag":91,"props":92,"children":94},"h2",{"id":93},"core-principles",[95],{"type":65,"value":96},"Core Principles",{"type":52,"tag":98,"props":99,"children":100},"ul",{},[101,112,130,156],{"type":52,"tag":102,"props":103,"children":104},"li",{},[105,110],{"type":52,"tag":61,"props":106,"children":107},{},[108],{"type":65,"value":109},"Use TaskCreate\u002FTaskUpdate",{"type":65,"value":111},": Track all progress throughout all phases — create the todo list upfront with all phases before starting any work.",{"type":52,"tag":102,"props":113,"children":114},{},[115,120,122,128],{"type":52,"tag":61,"props":116,"children":117},{},[118],{"type":65,"value":119},"Always use the UUID script",{"type":65,"value":121},": Never generate UUIDs manually — always use ",{"type":52,"tag":70,"props":123,"children":125},{"className":124},[],[126],{"type":65,"value":127},"${PLUGIN_ROOT}\u002Fscripts\u002Fgenerate-uuid.js",{"type":65,"value":129}," to produce valid UUID v4 values for each web role.",{"type":52,"tag":102,"props":131,"children":132},{},[133,138,140,146,148,154],{"type":52,"tag":61,"props":134,"children":135},{},[136],{"type":65,"value":137},"Preserve uniqueness constraints",{"type":65,"value":139},": Only one role can have ",{"type":52,"tag":70,"props":141,"children":143},{"className":142},[],[144],{"type":65,"value":145},"anonymoususersrole: true",{"type":65,"value":147}," and only one can have ",{"type":52,"tag":70,"props":149,"children":151},{"className":150},[],[152],{"type":65,"value":153},"authenticatedusersrole: true",{"type":65,"value":155},". Always check existing roles before setting these flags.",{"type":52,"tag":102,"props":157,"children":158},{},[159,164,166,172,174,180,182,188],{"type":52,"tag":61,"props":160,"children":161},{},[162],{"type":65,"value":163},"Caller-suppress mode is opt-in",{"type":65,"value":165},": When invoked by another skill (e.g. ",{"type":52,"tag":70,"props":167,"children":169},{"className":168},[],[170],{"type":65,"value":171},"\u002Fadd-ai-webapi",{"type":65,"value":173},") with the ",{"type":52,"tag":70,"props":175,"children":177},{"className":176},[],[178],{"type":65,"value":179},"[CALLED-BY-PARENT-SKILL]",{"type":65,"value":181}," sentinel in ",{"type":52,"tag":70,"props":183,"children":185},{"className":184},[],[186],{"type":65,"value":187},"$ARGUMENTS",{"type":65,"value":189},", suppress this skill's deploy prompts (Phase 1's missing-deploy ask, Phase 6's deploy ask (step 3), and the closing reminder) and return as soon as roles are created. The caller batches the deploy at end-of-orchestration. Human invocations never trigger this mode. See Phase 0 below for parsing.",{"type":52,"tag":53,"props":191,"children":192},{},[193],{"type":52,"tag":57,"props":194,"children":195},{},[196,201,203,209],{"type":52,"tag":61,"props":197,"children":198},{},[199],{"type":65,"value":200},"Prerequisite:",{"type":65,"value":202}," The site must be deployed at least once before web roles can be created, since deployment creates the ",{"type":52,"tag":70,"props":204,"children":206},{"className":205},[],[207],{"type":65,"value":208},".powerpages-site",{"type":65,"value":210}," folder structure that stores web role definitions.",{"type":52,"tag":57,"props":212,"children":213},{},[214,219],{"type":52,"tag":61,"props":215,"children":216},{},[217],{"type":65,"value":218},"Initial request:",{"type":65,"value":220}," $ARGUMENTS",{"type":52,"tag":91,"props":222,"children":224},{"id":223},"phase-0-detect-caller-suppress-mode",[225],{"type":65,"value":226},"Phase 0: Detect caller-suppress mode",{"type":52,"tag":57,"props":228,"children":229},{},[230,232,237,239,244,246,251,253,259,261,267],{"type":65,"value":231},"Inspect ",{"type":52,"tag":70,"props":233,"children":235},{"className":234},[],[236],{"type":65,"value":187},{"type":65,"value":238},". If the text contains the sentinel ",{"type":52,"tag":70,"props":240,"children":242},{"className":241},[],[243],{"type":65,"value":179},{"type":65,"value":245},", set an\ninternal flag ",{"type":52,"tag":61,"props":247,"children":248},{},[249],{"type":65,"value":250},"caller-suppress = true",{"type":65,"value":252}," that downstream phases consult. The optional token\n",{"type":52,"tag":70,"props":254,"children":256},{"className":255},[],[257],{"type":65,"value":258},"caller=\u003Cskill-name>",{"type":65,"value":260}," may follow the sentinel for diagnostic purposes (e.g.\n",{"type":52,"tag":70,"props":262,"children":264},{"className":263},[],[265],{"type":65,"value":266},"caller=add-ai-webapi",{"type":65,"value":268},"); record it for the final summary but do not branch on it.",{"type":52,"tag":57,"props":270,"children":271},{},[272],{"type":65,"value":273},"When the flag is set, skip every deploy prompt this skill would otherwise issue:",{"type":52,"tag":98,"props":275,"children":276},{},[277,294],{"type":52,"tag":102,"props":278,"children":279},{},[280,285,287,292],{"type":52,"tag":61,"props":281,"children":282},{},[283],{"type":65,"value":284},"Phase 1 missing-deploy ask",{"type":65,"value":286},": if ",{"type":52,"tag":70,"props":288,"children":290},{"className":289},[],[291],{"type":65,"value":208},{"type":65,"value":293}," is absent, do NOT ask the user to\ndeploy now. Stop with a clear contract-violation message back to the caller — the caller\nwas supposed to gate on this before invoking us.",{"type":52,"tag":102,"props":295,"children":296},{},[297,302,304,310],{"type":52,"tag":61,"props":298,"children":299},{},[300],{"type":65,"value":301},"Phase 6 deploy ask (step 3)",{"type":65,"value":303}," and the closing \"Please run ",{"type":52,"tag":70,"props":305,"children":307},{"className":306},[],[308],{"type":65,"value":309},"\u002Fdeploy-site",{"type":65,"value":311},"\"\nreminder: skip both. The caller batches the single deploy decision at end-of-orchestration.",{"type":52,"tag":57,"props":313,"children":314},{},[315],{"type":65,"value":316},"When the sentinel is absent, proceed exactly as today (full interactive flow). This is the\nregression guard — no human invocation changes behavior.",{"type":52,"tag":318,"props":319,"children":320},"hr",{},[],{"type":52,"tag":91,"props":322,"children":324},{"id":323},"workflow",[325],{"type":65,"value":326},"Workflow",{"type":52,"tag":328,"props":329,"children":330},"ol",{},[331,349,359,369,379,389],{"type":52,"tag":102,"props":332,"children":333},{},[334,339,341,347],{"type":52,"tag":61,"props":335,"children":336},{},[337],{"type":65,"value":338},"Phase 1: Verify Site Structure",{"type":65,"value":340}," → Check for ",{"type":52,"tag":70,"props":342,"children":344},{"className":343},[],[345],{"type":65,"value":346},".powerpages-site\u002Fweb-roles\u002F",{"type":65,"value":348}," directory",{"type":52,"tag":102,"props":350,"children":351},{},[352,357],{"type":52,"tag":61,"props":353,"children":354},{},[355],{"type":65,"value":356},"Phase 2: Discover Existing Roles",{"type":65,"value":358}," → Read current web role YAML files",{"type":52,"tag":102,"props":360,"children":361},{},[362,367],{"type":52,"tag":61,"props":363,"children":364},{},[365],{"type":65,"value":366},"Phase 3: Determine New Roles",{"type":65,"value":368}," → Analyze the site and ask the user what roles are needed",{"type":52,"tag":102,"props":370,"children":371},{},[372,377],{"type":52,"tag":61,"props":373,"children":374},{},[375],{"type":65,"value":376},"Phase 4: Create Web Role Files",{"type":65,"value":378}," → Generate YAML files with UUIDs from the Node script",{"type":52,"tag":102,"props":380,"children":381},{},[382,387],{"type":52,"tag":61,"props":383,"children":384},{},[385],{"type":65,"value":386},"Phase 5: Verify Web Roles",{"type":65,"value":388}," → Validate all created files exist, have valid UUIDs, and flags are correct",{"type":52,"tag":102,"props":390,"children":391},{},[392,397],{"type":52,"tag":61,"props":393,"children":394},{},[395],{"type":65,"value":396},"Phase 6: Review & Deploy",{"type":65,"value":398}," → Present summary and proceed to deployment",{"type":52,"tag":318,"props":400,"children":401},{},[],{"type":52,"tag":91,"props":403,"children":405},{"id":404},"phase-1-verify-site-structure",[406],{"type":65,"value":338},{"type":52,"tag":57,"props":408,"children":409},{},[410,415,417,422],{"type":52,"tag":61,"props":411,"children":412},{},[413],{"type":65,"value":414},"Goal",{"type":65,"value":416},": Confirm the ",{"type":52,"tag":70,"props":418,"children":420},{"className":419},[],[421],{"type":65,"value":346},{"type":65,"value":423}," directory exists and is ready for web role files",{"type":52,"tag":57,"props":425,"children":426},{},[427,432],{"type":52,"tag":61,"props":428,"children":429},{},[430],{"type":65,"value":431},"Actions",{"type":65,"value":433},":",{"type":52,"tag":328,"props":435,"children":436},{},[437],{"type":52,"tag":102,"props":438,"children":439},{},[440,442,448,450,455],{"type":65,"value":441},"Locate the project root (",{"type":52,"tag":70,"props":443,"children":445},{"className":444},[],[446],{"type":65,"value":447},"**\u002Fpowerpages.config.json",{"type":65,"value":449},") and check for ",{"type":52,"tag":70,"props":451,"children":453},{"className":452},[],[454],{"type":65,"value":346},{"type":65,"value":456},".",{"type":52,"tag":53,"props":458,"children":459},{},[460,479],{"type":52,"tag":57,"props":461,"children":462},{},[463,465,470,472,477],{"type":65,"value":464},"🚦 ",{"type":52,"tag":61,"props":466,"children":467},{},[468],{"type":65,"value":469},"Gate (plan · create-webroles:1.deploy-first):",{"type":65,"value":471}," ",{"type":52,"tag":70,"props":473,"children":475},{"className":474},[],[476],{"type":65,"value":208},{"type":65,"value":478}," missing — skill cannot proceed without that folder. Prompt to deploy first or stop.",{"type":52,"tag":57,"props":480,"children":481},{},[482,487,489,494,496,501,503,508],{"type":52,"tag":61,"props":483,"children":484},{},[485],{"type":65,"value":486},"Trigger:",{"type":65,"value":488}," Phase 1 found no ",{"type":52,"tag":70,"props":490,"children":492},{"className":491},[],[493],{"type":65,"value":208},{"type":65,"value":495}," directory.\n",{"type":52,"tag":61,"props":497,"children":498},{},[499],{"type":65,"value":500},"Why we ask:",{"type":65,"value":502}," Web role YAML files written to a non-existent path will never get picked up by deploy; user thinks roles were created but they weren't.\n",{"type":52,"tag":61,"props":504,"children":505},{},[506],{"type":65,"value":507},"Cancel leaves:",{"type":65,"value":509}," Nothing — no YAML files written.",{"type":52,"tag":328,"props":511,"children":513},{"start":512},2,[514,567,599],{"type":52,"tag":102,"props":515,"children":516},{},[517,529],{"type":52,"tag":61,"props":518,"children":519},{},[520,522,527],{"type":65,"value":521},"If ",{"type":52,"tag":70,"props":523,"children":525},{"className":524},[],[526],{"type":65,"value":208},{"type":65,"value":528}," does NOT exist:",{"type":52,"tag":98,"props":530,"children":531},{},[532,542],{"type":52,"tag":102,"props":533,"children":534},{},[535,540],{"type":52,"tag":61,"props":536,"children":537},{},[538],{"type":65,"value":539},"In caller-suppress mode",{"type":65,"value":541}," (Phase 0 flag): stop with a contract-violation message —\nthe calling skill should have gated on this folder existing before invoking us.",{"type":52,"tag":102,"props":543,"children":544},{},[545,550,552,558,560,565],{"type":52,"tag":61,"props":546,"children":547},{},[548],{"type":65,"value":549},"Otherwise",{"type":65,"value":551},": ask the user to deploy first via ",{"type":52,"tag":70,"props":553,"children":555},{"className":554},[],[556],{"type":65,"value":557},"AskUserQuestion",{"type":65,"value":559}," (options: \"Yes, deploy now (Recommended)\", \"No, I'll do it later\"). If yes, invoke ",{"type":52,"tag":70,"props":561,"children":563},{"className":562},[],[564],{"type":65,"value":309},{"type":65,"value":566}," then resume from Phase 2. If no, stop.",{"type":52,"tag":102,"props":568,"children":569},{},[570,589,591,597],{"type":52,"tag":61,"props":571,"children":572},{},[573,574,579,581,587],{"type":65,"value":521},{"type":52,"tag":70,"props":575,"children":577},{"className":576},[],[578],{"type":65,"value":208},{"type":65,"value":580}," exists but ",{"type":52,"tag":70,"props":582,"children":584},{"className":583},[],[585],{"type":65,"value":586},"web-roles\u002F",{"type":65,"value":588}," does NOT:",{"type":65,"value":590}," Create the ",{"type":52,"tag":70,"props":592,"children":594},{"className":593},[],[595],{"type":65,"value":596},"\u003CPROJECT_ROOT>\u002F.powerpages-site\u002Fweb-roles\u002F",{"type":65,"value":598}," directory.",{"type":52,"tag":102,"props":600,"children":601},{},[602,607],{"type":52,"tag":61,"props":603,"children":604},{},[605],{"type":65,"value":606},"If both exist:",{"type":65,"value":608}," Proceed to Phase 2.",{"type":52,"tag":57,"props":610,"children":611},{},[612,617,619,624],{"type":52,"tag":61,"props":613,"children":614},{},[615],{"type":65,"value":616},"Output",{"type":65,"value":618},": Confirmed ",{"type":52,"tag":70,"props":620,"children":622},{"className":621},[],[623],{"type":65,"value":346},{"type":65,"value":625}," directory exists and is ready",{"type":52,"tag":318,"props":627,"children":628},{},[],{"type":52,"tag":91,"props":630,"children":632},{"id":631},"phase-2-discover-existing-roles",[633],{"type":65,"value":356},{"type":52,"tag":57,"props":635,"children":636},{},[637,641],{"type":52,"tag":61,"props":638,"children":639},{},[640],{"type":65,"value":414},{"type":65,"value":642},": Identify all web roles already defined for the site",{"type":52,"tag":57,"props":644,"children":645},{},[646,650],{"type":52,"tag":61,"props":647,"children":648},{},[649],{"type":65,"value":431},{"type":65,"value":433},{"type":52,"tag":328,"props":652,"children":653},{},[654,753,758,801],{"type":52,"tag":102,"props":655,"children":656},{},[657,659,664,666],{"type":65,"value":658},"Read all YAML files in the ",{"type":52,"tag":70,"props":660,"children":662},{"className":661},[],[663],{"type":65,"value":346},{"type":65,"value":665}," directory. Each file represents one web role with this format:",{"type":52,"tag":667,"props":668,"children":673},"pre",{"className":669,"code":670,"language":671,"meta":672,"style":672},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","anonymoususersrole: false\nauthenticatedusersrole: false\nid: 778fa3d0-a2ef-4d2b-98b8-e6c7d8ce1444\nname: Administrators\n","yaml","",[674],{"type":52,"tag":70,"props":675,"children":676},{"__ignoreMap":672},[677,700,716,735],{"type":52,"tag":678,"props":679,"children":682},"span",{"class":680,"line":681},"line",1,[683,689,694],{"type":52,"tag":678,"props":684,"children":686},{"style":685},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[687],{"type":65,"value":688},"anonymoususersrole",{"type":52,"tag":678,"props":690,"children":692},{"style":691},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[693],{"type":65,"value":433},{"type":52,"tag":678,"props":695,"children":697},{"style":696},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[698],{"type":65,"value":699}," false\n",{"type":52,"tag":678,"props":701,"children":702},{"class":680,"line":512},[703,708,712],{"type":52,"tag":678,"props":704,"children":705},{"style":685},[706],{"type":65,"value":707},"authenticatedusersrole",{"type":52,"tag":678,"props":709,"children":710},{"style":691},[711],{"type":65,"value":433},{"type":52,"tag":678,"props":713,"children":714},{"style":696},[715],{"type":65,"value":699},{"type":52,"tag":678,"props":717,"children":719},{"class":680,"line":718},3,[720,725,729],{"type":52,"tag":678,"props":721,"children":722},{"style":685},[723],{"type":65,"value":724},"id",{"type":52,"tag":678,"props":726,"children":727},{"style":691},[728],{"type":65,"value":433},{"type":52,"tag":678,"props":730,"children":732},{"style":731},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[733],{"type":65,"value":734}," 778fa3d0-a2ef-4d2b-98b8-e6c7d8ce1444\n",{"type":52,"tag":678,"props":736,"children":738},{"class":680,"line":737},4,[739,744,748],{"type":52,"tag":678,"props":740,"children":741},{"style":685},[742],{"type":65,"value":743},"name",{"type":52,"tag":678,"props":745,"children":746},{"style":691},[747],{"type":65,"value":433},{"type":52,"tag":678,"props":749,"children":750},{"style":731},[751],{"type":65,"value":752}," Administrators\n",{"type":52,"tag":102,"props":754,"children":755},{},[756],{"type":65,"value":757},"Parse each file and compile a list of existing web roles (name, id, and flags).",{"type":52,"tag":102,"props":759,"children":760},{},[761,763],{"type":65,"value":762},"Present the existing roles to the user:",{"type":52,"tag":53,"props":764,"children":765},{},[766,771],{"type":52,"tag":57,"props":767,"children":768},{},[769],{"type":65,"value":770},"\"I found the following existing web roles in your site:\"",{"type":52,"tag":98,"props":772,"children":773},{},[774,792],{"type":52,"tag":102,"props":775,"children":776},{},[777,782,784,790],{"type":52,"tag":61,"props":778,"children":779},{},[780],{"type":65,"value":781},"Administrators",{"type":65,"value":783}," (id: ",{"type":52,"tag":70,"props":785,"children":787},{"className":786},[],[788],{"type":65,"value":789},"778fa3d0-...",{"type":65,"value":791},", authenticated: false, anonymous: false)",{"type":52,"tag":102,"props":793,"children":794},{},[795],{"type":52,"tag":796,"props":797,"children":798},"em",{},[799],{"type":65,"value":800},"(etc.)",{"type":52,"tag":102,"props":802,"children":803},{},[804,806],{"type":65,"value":805},"If no roles exist yet, inform the user:",{"type":52,"tag":53,"props":807,"children":808},{},[809],{"type":52,"tag":57,"props":810,"children":811},{},[812],{"type":65,"value":813},"\"No web roles are currently defined for your site.\"",{"type":52,"tag":57,"props":815,"children":816},{},[817,821],{"type":52,"tag":61,"props":818,"children":819},{},[820],{"type":65,"value":616},{"type":65,"value":822},": Complete list of existing web roles with their names, IDs, and flags",{"type":52,"tag":318,"props":824,"children":825},{},[],{"type":52,"tag":91,"props":827,"children":829},{"id":828},"phase-3-determine-new-roles",[830],{"type":65,"value":366},{"type":52,"tag":57,"props":832,"children":833},{},[834,838],{"type":52,"tag":61,"props":835,"children":836},{},[837],{"type":65,"value":414},{"type":65,"value":839},": Decide which new web roles to create based on site needs and user input",{"type":52,"tag":57,"props":841,"children":842},{},[843,847],{"type":52,"tag":61,"props":844,"children":845},{},[846],{"type":65,"value":431},{"type":65,"value":433},{"type":52,"tag":53,"props":849,"children":850},{},[851,862],{"type":52,"tag":57,"props":852,"children":853},{},[854,855,860],{"type":65,"value":464},{"type":52,"tag":61,"props":856,"children":857},{},[858],{"type":65,"value":859},"Gate (plan · create-webroles:3.role-selection):",{"type":65,"value":861}," Multi-select over suggested + custom web roles. Drives the Phase 4 YAML file writes.",{"type":52,"tag":57,"props":863,"children":864},{},[865,869,871,875,877,882,884,888],{"type":52,"tag":61,"props":866,"children":867},{},[868],{"type":65,"value":486},{"type":65,"value":870}," Phase 2 inventoried existing roles; Phase 3 suggests new ones.\n",{"type":52,"tag":61,"props":872,"children":873},{},[874],{"type":65,"value":500},{"type":65,"value":876}," Wrong roles get created locally — fixable but adds churn to the ",{"type":52,"tag":70,"props":878,"children":880},{"className":879},[],[881],{"type":65,"value":346},{"type":65,"value":883}," folder.\n",{"type":52,"tag":61,"props":885,"children":886},{},[887],{"type":65,"value":507},{"type":65,"value":889}," Nothing — no YAML files written yet.",{"type":52,"tag":328,"props":891,"children":892},{},[893,981,1035],{"type":52,"tag":102,"props":894,"children":895},{},[896,898,903,905,909,911],{"type":65,"value":897},"Based on the site's purpose and the existing roles, suggest appropriate web roles. Use ",{"type":52,"tag":70,"props":899,"children":901},{"className":900},[],[902],{"type":65,"value":557},{"type":65,"value":904}," to confirm with the user.",{"type":52,"tag":906,"props":907,"children":908},"br",{},[],{"type":65,"value":910},"Common web roles for Power Pages sites include:",{"type":52,"tag":98,"props":912,"children":913},{},[914,923,940,956,966,976],{"type":52,"tag":102,"props":915,"children":916},{},[917,921],{"type":52,"tag":61,"props":918,"children":919},{},[920],{"type":65,"value":781},{"type":65,"value":922}," — Full access to site management",{"type":52,"tag":102,"props":924,"children":925},{},[926,931,933,938],{"type":52,"tag":61,"props":927,"children":928},{},[929],{"type":65,"value":930},"Authenticated Users",{"type":65,"value":932}," — Default role for logged-in users (set ",{"type":52,"tag":70,"props":934,"children":936},{"className":935},[],[937],{"type":65,"value":153},{"type":65,"value":939},")",{"type":52,"tag":102,"props":941,"children":942},{},[943,948,950,955],{"type":52,"tag":61,"props":944,"children":945},{},[946],{"type":65,"value":947},"Anonymous Users",{"type":65,"value":949}," — Default role for non-logged-in visitors (set ",{"type":52,"tag":70,"props":951,"children":953},{"className":952},[],[954],{"type":65,"value":145},{"type":65,"value":939},{"type":52,"tag":102,"props":957,"children":958},{},[959,964],{"type":52,"tag":61,"props":960,"children":961},{},[962],{"type":65,"value":963},"Content Editors",{"type":65,"value":965}," — Users who can edit site content",{"type":52,"tag":102,"props":967,"children":968},{},[969,974],{"type":52,"tag":61,"props":970,"children":971},{},[972],{"type":65,"value":973},"Moderators",{"type":65,"value":975}," — Users who can moderate community content",{"type":52,"tag":102,"props":977,"children":978},{},[979],{"type":65,"value":980},"Custom roles based on business needs",{"type":52,"tag":102,"props":982,"children":983},{},[984,986,1030,1033],{"type":65,"value":985},"Ask the user which roles they want to create:",{"type":52,"tag":987,"props":988,"children":989},"table",{},[990,1009],{"type":52,"tag":991,"props":992,"children":993},"thead",{},[994],{"type":52,"tag":995,"props":996,"children":997},"tr",{},[998,1004],{"type":52,"tag":999,"props":1000,"children":1001},"th",{},[1002],{"type":65,"value":1003},"Question",{"type":52,"tag":999,"props":1005,"children":1006},{},[1007],{"type":65,"value":1008},"Options",{"type":52,"tag":1010,"props":1011,"children":1012},"tbody",{},[1013],{"type":52,"tag":995,"props":1014,"children":1015},{},[1016,1022],{"type":52,"tag":1017,"props":1018,"children":1019},"td",{},[1020],{"type":65,"value":1021},"Which web roles would you like to create for your site? You can select from suggestions or describe custom roles.",{"type":52,"tag":1017,"props":1023,"children":1024},{},[1025],{"type":52,"tag":796,"props":1026,"children":1027},{},[1028],{"type":65,"value":1029},"(Provide relevant suggestions based on site context, existing roles, and business domain)",{"type":52,"tag":906,"props":1031,"children":1032},{},[],{"type":65,"value":1034},"CRITICAL: Do NOT suggest roles that already exist. Filter out any existing role names before presenting options.",{"type":52,"tag":102,"props":1036,"children":1037},{},[1038],{"type":65,"value":1039},"Allow the user to specify custom role names as well.",{"type":52,"tag":57,"props":1041,"children":1042},{},[1043,1047],{"type":52,"tag":61,"props":1044,"children":1045},{},[1046],{"type":65,"value":616},{"type":65,"value":1048},": Confirmed list of new web roles to create",{"type":52,"tag":318,"props":1050,"children":1051},{},[],{"type":52,"tag":91,"props":1053,"children":1055},{"id":1054},"phase-4-create-web-role-files",[1056],{"type":65,"value":376},{"type":52,"tag":57,"props":1058,"children":1059},{},[1060,1064],{"type":52,"tag":61,"props":1061,"children":1062},{},[1063],{"type":65,"value":414},{"type":65,"value":1065},": Generate properly formatted YAML files with valid UUIDs for each new web role",{"type":52,"tag":57,"props":1067,"children":1068},{},[1069,1073],{"type":52,"tag":61,"props":1070,"children":1071},{},[1072],{"type":65,"value":431},{"type":65,"value":433},{"type":52,"tag":57,"props":1075,"children":1076},{},[1077,1079,1084],{"type":65,"value":1078},"For each new web role the user approved, create a YAML file in ",{"type":52,"tag":70,"props":1080,"children":1082},{"className":1081},[],[1083],{"type":65,"value":346},{"type":65,"value":456},{"type":52,"tag":1086,"props":1087,"children":1089},"h3",{"id":1088},"_41-generate-uuid",[1090],{"type":65,"value":1091},"4.1 Generate UUID",{"type":52,"tag":57,"props":1093,"children":1094},{},[1095,1097],{"type":65,"value":1096},"For each role, generate a UUID using the Node script. ",{"type":52,"tag":61,"props":1098,"children":1099},{},[1100],{"type":65,"value":1101},"NEVER generate UUIDs yourself — always use the script.",{"type":52,"tag":667,"props":1103,"children":1107},{"className":1104,"code":1105,"language":1106,"meta":672,"style":672},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","node \"${PLUGIN_ROOT}\u002Fscripts\u002Fgenerate-uuid.js\"\n","bash",[1108],{"type":52,"tag":70,"props":1109,"children":1110},{"__ignoreMap":672},[1111],{"type":52,"tag":678,"props":1112,"children":1113},{"class":680,"line":681},[1114,1120,1125,1131,1136,1141],{"type":52,"tag":678,"props":1115,"children":1117},{"style":1116},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1118],{"type":65,"value":1119},"node",{"type":52,"tag":678,"props":1121,"children":1122},{"style":691},[1123],{"type":65,"value":1124}," \"${",{"type":52,"tag":678,"props":1126,"children":1128},{"style":1127},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1129],{"type":65,"value":1130},"PLUGIN_ROOT",{"type":52,"tag":678,"props":1132,"children":1133},{"style":691},[1134],{"type":65,"value":1135},"}",{"type":52,"tag":678,"props":1137,"children":1138},{"style":731},[1139],{"type":65,"value":1140},"\u002Fscripts\u002Fgenerate-uuid.js",{"type":52,"tag":678,"props":1142,"children":1143},{"style":691},[1144],{"type":65,"value":1145},"\"\n",{"type":52,"tag":1086,"props":1147,"children":1149},{"id":1148},"_42-create-the-yaml-file",[1150],{"type":65,"value":1151},"4.2 Create the YAML File",{"type":52,"tag":57,"props":1153,"children":1154},{},[1155,1157,1163,1165,1170,1172,1178,1180,1185,1186,1192],{"type":65,"value":1156},"The filename should be the role name in kebab-case with a ",{"type":52,"tag":70,"props":1158,"children":1160},{"className":1159},[],[1161],{"type":65,"value":1162},".yml",{"type":65,"value":1164}," extension (e.g., ",{"type":52,"tag":70,"props":1166,"children":1168},{"className":1167},[],[1169],{"type":65,"value":781},{"type":65,"value":1171}," → ",{"type":52,"tag":70,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":65,"value":1177},"administrators.yml",{"type":65,"value":1179},", ",{"type":52,"tag":70,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":65,"value":963},{"type":65,"value":1171},{"type":52,"tag":70,"props":1187,"children":1189},{"className":1188},[],[1190],{"type":65,"value":1191},"content-editors.yml",{"type":65,"value":1193},").",{"type":52,"tag":57,"props":1195,"children":1196},{},[1197],{"type":65,"value":1198},"Write the file with this exact format (4 fields, no extra whitespace or comments):",{"type":52,"tag":667,"props":1200,"children":1202},{"className":669,"code":1201,"language":671,"meta":672,"style":672},"anonymoususersrole: \u003Ctrue if this is the anonymous users role, false otherwise>\nauthenticatedusersrole: \u003Ctrue if this is the authenticated users role, false otherwise>\nid: \u003CUUID from generate-uuid.js>\nname: \u003CRole Name>\n",[1203],{"type":52,"tag":70,"props":1204,"children":1205},{"__ignoreMap":672},[1206,1222,1238,1254],{"type":52,"tag":678,"props":1207,"children":1208},{"class":680,"line":681},[1209,1213,1217],{"type":52,"tag":678,"props":1210,"children":1211},{"style":685},[1212],{"type":65,"value":688},{"type":52,"tag":678,"props":1214,"children":1215},{"style":691},[1216],{"type":65,"value":433},{"type":52,"tag":678,"props":1218,"children":1219},{"style":731},[1220],{"type":65,"value":1221}," \u003Ctrue if this is the anonymous users role, false otherwise>\n",{"type":52,"tag":678,"props":1223,"children":1224},{"class":680,"line":512},[1225,1229,1233],{"type":52,"tag":678,"props":1226,"children":1227},{"style":685},[1228],{"type":65,"value":707},{"type":52,"tag":678,"props":1230,"children":1231},{"style":691},[1232],{"type":65,"value":433},{"type":52,"tag":678,"props":1234,"children":1235},{"style":731},[1236],{"type":65,"value":1237}," \u003Ctrue if this is the authenticated users role, false otherwise>\n",{"type":52,"tag":678,"props":1239,"children":1240},{"class":680,"line":718},[1241,1245,1249],{"type":52,"tag":678,"props":1242,"children":1243},{"style":685},[1244],{"type":65,"value":724},{"type":52,"tag":678,"props":1246,"children":1247},{"style":691},[1248],{"type":65,"value":433},{"type":52,"tag":678,"props":1250,"children":1251},{"style":731},[1252],{"type":65,"value":1253}," \u003CUUID from generate-uuid.js>\n",{"type":52,"tag":678,"props":1255,"children":1256},{"class":680,"line":737},[1257,1261,1265],{"type":52,"tag":678,"props":1258,"children":1259},{"style":685},[1260],{"type":65,"value":743},{"type":52,"tag":678,"props":1262,"children":1263},{"style":691},[1264],{"type":65,"value":433},{"type":52,"tag":678,"props":1266,"children":1267},{"style":731},[1268],{"type":65,"value":1269}," \u003CRole Name>\n",{"type":52,"tag":57,"props":1271,"children":1272},{},[1273],{"type":52,"tag":61,"props":1274,"children":1275},{},[1276],{"type":65,"value":1277},"Rules:",{"type":52,"tag":98,"props":1279,"children":1280},{},[1281,1291,1300,1313],{"type":52,"tag":102,"props":1282,"children":1283},{},[1284,1286],{"type":65,"value":1285},"Only ONE role can have ",{"type":52,"tag":70,"props":1287,"children":1289},{"className":1288},[],[1290],{"type":65,"value":145},{"type":52,"tag":102,"props":1292,"children":1293},{},[1294,1295],{"type":65,"value":1285},{"type":52,"tag":70,"props":1296,"children":1298},{"className":1297},[],[1299],{"type":65,"value":153},{"type":52,"tag":102,"props":1301,"children":1302},{},[1303,1305,1311],{"type":65,"value":1304},"If an existing role already has one of these flags set to ",{"type":52,"tag":70,"props":1306,"children":1308},{"className":1307},[],[1309],{"type":65,"value":1310},"true",{"type":65,"value":1312},", do not set it again on a new role",{"type":52,"tag":102,"props":1314,"children":1315},{},[1316],{"type":65,"value":1317},"Each role MUST have a unique UUID generated by the script — run the script once per role",{"type":52,"tag":57,"props":1319,"children":1320},{},[1321,1325],{"type":52,"tag":61,"props":1322,"children":1323},{},[1324],{"type":65,"value":616},{"type":65,"value":1326},": All new web role YAML files created",{"type":52,"tag":318,"props":1328,"children":1329},{},[],{"type":52,"tag":91,"props":1331,"children":1333},{"id":1332},"phase-5-verify-web-roles",[1334],{"type":65,"value":386},{"type":52,"tag":57,"props":1336,"children":1337},{},[1338,1342],{"type":52,"tag":61,"props":1339,"children":1340},{},[1341],{"type":65,"value":414},{"type":65,"value":1343},": Validate that all created web role files exist, have valid format, and constraints are satisfied",{"type":52,"tag":57,"props":1345,"children":1346},{},[1347,1351],{"type":52,"tag":61,"props":1348,"children":1349},{},[1350],{"type":65,"value":431},{"type":65,"value":433},{"type":52,"tag":328,"props":1353,"children":1354},{},[1355,1367,1420,1459],{"type":52,"tag":102,"props":1356,"children":1357},{},[1358,1360,1365],{"type":65,"value":1359},"List all files in ",{"type":52,"tag":70,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":65,"value":346},{"type":65,"value":1366}," and read each new file to confirm they were written correctly.",{"type":52,"tag":102,"props":1368,"children":1369},{},[1370,1372],{"type":65,"value":1371},"For each new web role file, verify:",{"type":52,"tag":98,"props":1373,"children":1374},{},[1375,1380,1392,1403],{"type":52,"tag":102,"props":1376,"children":1377},{},[1378],{"type":65,"value":1379},"The file exists at the expected path",{"type":52,"tag":102,"props":1381,"children":1382},{},[1383,1385,1390],{"type":65,"value":1384},"The ",{"type":52,"tag":70,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":65,"value":724},{"type":65,"value":1391}," field contains a valid UUID v4 format",{"type":52,"tag":102,"props":1393,"children":1394},{},[1395,1396,1401],{"type":65,"value":1384},{"type":52,"tag":70,"props":1397,"children":1399},{"className":1398},[],[1400],{"type":65,"value":743},{"type":65,"value":1402}," field matches the expected role name",{"type":52,"tag":102,"props":1404,"children":1405},{},[1406,1411,1413,1418],{"type":52,"tag":70,"props":1407,"children":1409},{"className":1408},[],[1410],{"type":65,"value":688},{"type":65,"value":1412}," and ",{"type":52,"tag":70,"props":1414,"children":1416},{"className":1415},[],[1417],{"type":65,"value":707},{"type":65,"value":1419}," are valid booleans",{"type":52,"tag":102,"props":1421,"children":1422},{},[1423,1425],{"type":65,"value":1424},"Verify uniqueness constraints across ALL role files (existing + new):",{"type":52,"tag":98,"props":1426,"children":1427},{},[1428,1438,1447],{"type":52,"tag":102,"props":1429,"children":1430},{},[1431,1433],{"type":65,"value":1432},"At most one role has ",{"type":52,"tag":70,"props":1434,"children":1436},{"className":1435},[],[1437],{"type":65,"value":145},{"type":52,"tag":102,"props":1439,"children":1440},{},[1441,1442],{"type":65,"value":1432},{"type":52,"tag":70,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":65,"value":153},{"type":52,"tag":102,"props":1448,"children":1449},{},[1450,1452,1457],{"type":65,"value":1451},"No duplicate ",{"type":52,"tag":70,"props":1453,"children":1455},{"className":1454},[],[1456],{"type":65,"value":724},{"type":65,"value":1458}," values exist across roles",{"type":52,"tag":102,"props":1460,"children":1461},{},[1462],{"type":65,"value":1463},"If any file fails validation, fix the issue before proceeding.",{"type":52,"tag":57,"props":1465,"children":1466},{},[1467,1471],{"type":52,"tag":61,"props":1468,"children":1469},{},[1470],{"type":65,"value":616},{"type":65,"value":1472},": All web role files validated — correct format, valid UUIDs, no constraint violations",{"type":52,"tag":318,"props":1474,"children":1475},{},[],{"type":52,"tag":91,"props":1477,"children":1479},{"id":1478},"phase-6-review-deploy",[1480],{"type":65,"value":396},{"type":52,"tag":57,"props":1482,"children":1483},{},[1484,1488],{"type":52,"tag":61,"props":1485,"children":1486},{},[1487],{"type":65,"value":414},{"type":65,"value":1489},": Present a summary of created roles and offer deployment",{"type":52,"tag":57,"props":1491,"children":1492},{},[1493,1497],{"type":52,"tag":61,"props":1494,"children":1495},{},[1496],{"type":65,"value":431},{"type":65,"value":433},{"type":52,"tag":328,"props":1499,"children":1500},{},[1501,1532],{"type":52,"tag":102,"props":1502,"children":1503},{},[1504,1506,1520,1523,1525,1531],{"type":65,"value":1505},"Record skill usage:",{"type":52,"tag":53,"props":1507,"children":1508},{},[1509],{"type":52,"tag":57,"props":1510,"children":1511},{},[1512,1514],{"type":65,"value":1513},"Reference: ",{"type":52,"tag":70,"props":1515,"children":1517},{"className":1516},[],[1518],{"type":65,"value":1519},"${PLUGIN_ROOT}\u002Freferences\u002Fskill-tracking-reference.md",{"type":52,"tag":906,"props":1521,"children":1522},{},[],{"type":65,"value":1524},"Follow the skill tracking instructions in the reference to record this skill's usage. Use ",{"type":52,"tag":70,"props":1526,"children":1528},{"className":1527},[],[1529],{"type":65,"value":1530},"--skillName \"CreateWebroles\"",{"type":65,"value":456},{"type":52,"tag":102,"props":1533,"children":1534},{},[1535,1537],{"type":65,"value":1536},"Present a summary of what was created:",{"type":52,"tag":53,"props":1538,"children":1539},{},[1540],{"type":52,"tag":57,"props":1541,"children":1542},{},[1543],{"type":65,"value":1544},"\"I've created the following new web roles:\"",{"type":52,"tag":53,"props":1546,"children":1547},{},[1548],{"type":52,"tag":987,"props":1549,"children":1550},{},[1551,1577],{"type":52,"tag":991,"props":1552,"children":1553},{},[1554],{"type":52,"tag":995,"props":1555,"children":1556},{},[1557,1562,1567,1572],{"type":52,"tag":999,"props":1558,"children":1559},{},[1560],{"type":65,"value":1561},"Role Name",{"type":52,"tag":999,"props":1563,"children":1564},{},[1565],{"type":65,"value":1566},"ID",{"type":52,"tag":999,"props":1568,"children":1569},{},[1570],{"type":65,"value":1571},"Anonymous",{"type":52,"tag":999,"props":1573,"children":1574},{},[1575],{"type":65,"value":1576},"Authenticated",{"type":52,"tag":1010,"props":1578,"children":1579},{},[1580,1605],{"type":52,"tag":995,"props":1581,"children":1582},{},[1583,1587,1596,1601],{"type":52,"tag":1017,"props":1584,"children":1585},{},[1586],{"type":65,"value":963},{"type":52,"tag":1017,"props":1588,"children":1589},{},[1590],{"type":52,"tag":70,"props":1591,"children":1593},{"className":1592},[],[1594],{"type":65,"value":1595},"a1b2c3d4-...",{"type":52,"tag":1017,"props":1597,"children":1598},{},[1599],{"type":65,"value":1600},"false",{"type":52,"tag":1017,"props":1602,"children":1603},{},[1604],{"type":65,"value":1600},{"type":52,"tag":995,"props":1606,"children":1607},{},[1608,1615,1618,1621],{"type":52,"tag":1017,"props":1609,"children":1610},{},[1611],{"type":52,"tag":796,"props":1612,"children":1613},{},[1614],{"type":65,"value":800},{"type":52,"tag":1017,"props":1616,"children":1617},{},[],{"type":52,"tag":1017,"props":1619,"children":1620},{},[],{"type":52,"tag":1017,"props":1622,"children":1623},{},[],{"type":52,"tag":53,"props":1625,"children":1626},{},[1627,1638],{"type":52,"tag":57,"props":1628,"children":1629},{},[1630,1631,1636],{"type":65,"value":464},{"type":52,"tag":61,"props":1632,"children":1633},{},[1634],{"type":65,"value":1635},"Gate (plan · create-webroles:6.deploy):",{"type":65,"value":1637}," Final post-create prompt — deploy now to make the new roles take effect, or defer.",{"type":52,"tag":57,"props":1639,"children":1640},{},[1641,1645,1647,1651,1653,1658,1660,1664],{"type":52,"tag":61,"props":1642,"children":1643},{},[1644],{"type":65,"value":486},{"type":65,"value":1646}," Phase 5 validation succeeded.\n",{"type":52,"tag":61,"props":1648,"children":1649},{},[1650],{"type":65,"value":500},{"type":65,"value":1652}," Auto-invoking ",{"type":52,"tag":70,"props":1654,"children":1656},{"className":1655},[],[1657],{"type":65,"value":309},{"type":65,"value":1659}," would push the site to whatever env PAC CLI happens to point at — wrong-env push is messy to undo.\n",{"type":52,"tag":61,"props":1661,"children":1662},{},[1663],{"type":65,"value":507},{"type":65,"value":1665}," Nothing — the YAML files stay on disk; no deploy fired.",{"type":52,"tag":328,"props":1667,"children":1668},{"start":718},[1669,1720,1745],{"type":52,"tag":102,"props":1670,"children":1671},{},[1672,1676,1678,1681,1685,1687],{"type":52,"tag":61,"props":1673,"children":1674},{},[1675],{"type":65,"value":539},{"type":65,"value":1677}," (Phase 0 flag): skip the deploy ask and the closing reminder\nentirely. Return the created-roles summary to the caller and stop. The caller owns the\nsingle end-of-orchestration deploy decision; nesting deploy reminders inside delegations\ngives the user 2–3 redundant prompts per parent-skill run.",{"type":52,"tag":906,"props":1679,"children":1680},{},[],{"type":52,"tag":61,"props":1682,"children":1683},{},[1684],{"type":65,"value":549},{"type":65,"value":1686},", ask the user if they want to deploy the site to apply the new roles:",{"type":52,"tag":987,"props":1688,"children":1689},{},[1690,1704],{"type":52,"tag":991,"props":1691,"children":1692},{},[1693],{"type":52,"tag":995,"props":1694,"children":1695},{},[1696,1700],{"type":52,"tag":999,"props":1697,"children":1698},{},[1699],{"type":65,"value":1003},{"type":52,"tag":999,"props":1701,"children":1702},{},[1703],{"type":65,"value":1008},{"type":52,"tag":1010,"props":1705,"children":1706},{},[1707],{"type":52,"tag":995,"props":1708,"children":1709},{},[1710,1715],{"type":52,"tag":1017,"props":1711,"children":1712},{},[1713],{"type":65,"value":1714},"The new web roles have been created locally. To apply them in Power Pages, the site needs to be deployed. Would you like to deploy now?",{"type":52,"tag":1017,"props":1716,"children":1717},{},[1718],{"type":65,"value":1719},"Yes, deploy now (Recommended), No, I'll deploy later",{"type":52,"tag":102,"props":1721,"children":1722},{},[1723,1728,1730],{"type":52,"tag":61,"props":1724,"children":1725},{},[1726],{"type":65,"value":1727},"If \"Yes, deploy now\"",{"type":65,"value":1729},": Tell the user to invoke the deploy skill:",{"type":52,"tag":53,"props":1731,"children":1732},{},[1733],{"type":52,"tag":57,"props":1734,"children":1735},{},[1736,1738,1743],{"type":65,"value":1737},"\"Please run ",{"type":52,"tag":70,"props":1739,"children":1741},{"className":1740},[],[1742],{"type":65,"value":309},{"type":65,"value":1744}," to deploy your site and apply the new web roles.\"",{"type":52,"tag":102,"props":1746,"children":1747},{},[1748,1753,1755],{"type":52,"tag":61,"props":1749,"children":1750},{},[1751],{"type":65,"value":1752},"If \"No, I'll deploy later\"",{"type":65,"value":1754},": Acknowledge and remind them:",{"type":52,"tag":53,"props":1756,"children":1757},{},[1758],{"type":52,"tag":57,"props":1759,"children":1760},{},[1761,1763,1768],{"type":65,"value":1762},"\"No problem! Remember to deploy your site using ",{"type":52,"tag":70,"props":1764,"children":1766},{"className":1765},[],[1767],{"type":65,"value":309},{"type":65,"value":1769}," when you're ready to apply the new web roles to your Power Pages environment.\"",{"type":52,"tag":57,"props":1771,"children":1772},{},[1773,1777],{"type":52,"tag":61,"props":1774,"children":1775},{},[1776],{"type":65,"value":616},{"type":65,"value":1778},": Summary presented and deployment offered",{"type":52,"tag":318,"props":1780,"children":1781},{},[],{"type":52,"tag":91,"props":1783,"children":1785},{"id":1784},"important-notes",[1786],{"type":65,"value":1787},"Important Notes",{"type":52,"tag":1086,"props":1789,"children":1791},{"id":1790},"key-decision-points-wait-for-user",[1792],{"type":65,"value":1793},"Key Decision Points (Wait for User)",{"type":52,"tag":328,"props":1795,"children":1796},{},[1797,1809,1814],{"type":52,"tag":102,"props":1798,"children":1799},{},[1800,1802,1807],{"type":65,"value":1801},"After Phase 1: Confirm deployment if ",{"type":52,"tag":70,"props":1803,"children":1805},{"className":1804},[],[1806],{"type":65,"value":208},{"type":65,"value":1808}," is missing",{"type":52,"tag":102,"props":1810,"children":1811},{},[1812],{"type":65,"value":1813},"After Phase 3: Confirm which roles to create",{"type":52,"tag":102,"props":1815,"children":1816},{},[1817],{"type":65,"value":1818},"After Phase 6: Deploy or skip",{"type":52,"tag":1086,"props":1820,"children":1822},{"id":1821},"progress-tracking",[1823],{"type":65,"value":1824},"Progress Tracking",{"type":52,"tag":57,"props":1826,"children":1827},{},[1828,1830,1836],{"type":65,"value":1829},"Before starting Phase 1, create a task list with all phases using ",{"type":52,"tag":70,"props":1831,"children":1833},{"className":1832},[],[1834],{"type":65,"value":1835},"TaskCreate",{"type":65,"value":433},{"type":52,"tag":987,"props":1838,"children":1839},{},[1840,1861],{"type":52,"tag":991,"props":1841,"children":1842},{},[1843],{"type":52,"tag":995,"props":1844,"children":1845},{},[1846,1851,1856],{"type":52,"tag":999,"props":1847,"children":1848},{},[1849],{"type":65,"value":1850},"Task subject",{"type":52,"tag":999,"props":1852,"children":1853},{},[1854],{"type":65,"value":1855},"activeForm",{"type":52,"tag":999,"props":1857,"children":1858},{},[1859],{"type":65,"value":1860},"Description",{"type":52,"tag":1010,"props":1862,"children":1863},{},[1864,1889,1907,1925,1943,1961],{"type":52,"tag":995,"props":1865,"children":1866},{},[1867,1872,1877],{"type":52,"tag":1017,"props":1868,"children":1869},{},[1870],{"type":65,"value":1871},"Verify site structure",{"type":52,"tag":1017,"props":1873,"children":1874},{},[1875],{"type":65,"value":1876},"Verifying site structure",{"type":52,"tag":1017,"props":1878,"children":1879},{},[1880,1882,1887],{"type":65,"value":1881},"Check for ",{"type":52,"tag":70,"props":1883,"children":1885},{"className":1884},[],[1886],{"type":65,"value":346},{"type":65,"value":1888}," directory, create if needed",{"type":52,"tag":995,"props":1890,"children":1891},{},[1892,1897,1902],{"type":52,"tag":1017,"props":1893,"children":1894},{},[1895],{"type":65,"value":1896},"Discover existing roles",{"type":52,"tag":1017,"props":1898,"children":1899},{},[1900],{"type":65,"value":1901},"Discovering existing roles",{"type":52,"tag":1017,"props":1903,"children":1904},{},[1905],{"type":65,"value":1906},"Read current web role YAML files and compile list of existing roles",{"type":52,"tag":995,"props":1908,"children":1909},{},[1910,1915,1920],{"type":52,"tag":1017,"props":1911,"children":1912},{},[1913],{"type":65,"value":1914},"Determine new roles",{"type":52,"tag":1017,"props":1916,"children":1917},{},[1918],{"type":65,"value":1919},"Determining new roles",{"type":52,"tag":1017,"props":1921,"children":1922},{},[1923],{"type":65,"value":1924},"Analyze site needs and ask user which roles to create",{"type":52,"tag":995,"props":1926,"children":1927},{},[1928,1933,1938],{"type":52,"tag":1017,"props":1929,"children":1930},{},[1931],{"type":65,"value":1932},"Create web role files",{"type":52,"tag":1017,"props":1934,"children":1935},{},[1936],{"type":65,"value":1937},"Creating web role files",{"type":52,"tag":1017,"props":1939,"children":1940},{},[1941],{"type":65,"value":1942},"Generate YAML files with UUIDs from the Node script for each new role",{"type":52,"tag":995,"props":1944,"children":1945},{},[1946,1951,1956],{"type":52,"tag":1017,"props":1947,"children":1948},{},[1949],{"type":65,"value":1950},"Verify web roles",{"type":52,"tag":1017,"props":1952,"children":1953},{},[1954],{"type":65,"value":1955},"Verifying web roles",{"type":52,"tag":1017,"props":1957,"children":1958},{},[1959],{"type":65,"value":1960},"Validate all files exist, have valid UUIDs, and uniqueness constraints are satisfied",{"type":52,"tag":995,"props":1962,"children":1963},{},[1964,1969,1974],{"type":52,"tag":1017,"props":1965,"children":1966},{},[1967],{"type":65,"value":1968},"Review and deploy",{"type":52,"tag":1017,"props":1970,"children":1971},{},[1972],{"type":65,"value":1973},"Reviewing and deploying",{"type":52,"tag":1017,"props":1975,"children":1976},{},[1977],{"type":65,"value":1978},"Present summary of created roles and offer deployment",{"type":52,"tag":57,"props":1980,"children":1981},{},[1982,1984,1990,1992,1998,2000,2006],{"type":65,"value":1983},"Mark each task ",{"type":52,"tag":70,"props":1985,"children":1987},{"className":1986},[],[1988],{"type":65,"value":1989},"in_progress",{"type":65,"value":1991}," when starting it and ",{"type":52,"tag":70,"props":1993,"children":1995},{"className":1994},[],[1996],{"type":65,"value":1997},"completed",{"type":65,"value":1999}," when done via ",{"type":52,"tag":70,"props":2001,"children":2003},{"className":2002},[],[2004],{"type":65,"value":2005},"TaskUpdate",{"type":65,"value":2007},". This gives the user visibility into progress and keeps the workflow deterministic.",{"type":52,"tag":318,"props":2009,"children":2010},{},[],{"type":52,"tag":57,"props":2012,"children":2013},{},[2014],{"type":52,"tag":61,"props":2015,"children":2016},{},[2017],{"type":65,"value":2018},"Begin with Phase 1: Verify Site Structure",{"type":52,"tag":2020,"props":2021,"children":2022},"style",{},[2023],{"type":65,"value":2024},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2026,"total":2123},[2027,2039,2053,2063,2078,2091,2107],{"slug":2028,"name":2028,"fn":2029,"description":2030,"org":2031,"tags":2032,"stars":26,"repoUrl":27,"updatedAt":2038},"activate-site","provision and activate Power Pages sites","Activates and provisions a Power Pages website in a Power Platform environment via the Power Platform REST API. Use when the user wants to activate, provision, turn on, or enable a Power Pages website or portal.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2033,2036,2037],{"name":2034,"slug":2035,"type":15},"Deployment","deployment",{"name":9,"slug":8,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:34:34.732549",{"slug":2040,"name":2040,"fn":2041,"description":2042,"org":2043,"tags":2044,"stars":26,"repoUrl":27,"updatedAt":2052},"add-connector","add Power Platform connectors to apps","Adds any Power Platform connector to a Power Apps code app. Generic fallback for connectors not covered by a specific skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2045,2048,2050],{"name":2046,"slug":2047,"type":15},"Integrations","integrations",{"name":2049,"slug":36,"type":15},"Power Apps",{"name":2051,"slug":37,"type":15},"Power Platform","2026-07-31T05:54:47.042251",{"slug":2054,"name":2054,"fn":2055,"description":2056,"org":2057,"tags":2058,"stars":26,"repoUrl":27,"updatedAt":2062},"add-datasource","add data sources to Power Apps","Adds a data source or connector to a Power Apps code app. Asks what the user wants to accomplish and routes to the appropriate specialized skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2059,2060,2061],{"name":2046,"slug":2047,"type":15},{"name":9,"slug":8,"type":15},{"name":2049,"slug":36,"type":15},"2026-07-03T16:31:47.822186",{"slug":2064,"name":2064,"fn":2065,"description":2066,"org":2067,"tags":2068,"stars":26,"repoUrl":27,"updatedAt":2077},"add-dataverse","add Dataverse tables to Power Apps","Use when the user wants to add Dataverse tables (existing or new) to a Power Apps mobile app, extend an existing Dataverse table with new columns, or apply an approved data model plan.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2069,2072,2075,2076],{"name":2070,"slug":2071,"type":15},"Data Modeling","data-modeling",{"name":2073,"slug":2074,"type":15},"Dataverse","dataverse",{"name":9,"slug":8,"type":15},{"name":2049,"slug":36,"type":15},"2026-07-31T05:54:46.078014",{"slug":2079,"name":2079,"fn":2080,"description":2081,"org":2082,"tags":2083,"stars":26,"repoUrl":27,"updatedAt":2090},"add-excel","integrate Excel Online into Power Apps","Adds Excel Online (Business) connector to a Power Apps code app. Use when reading or writing Excel workbook data from OneDrive or SharePoint.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2084,2087,2088,2089],{"name":2085,"slug":2086,"type":15},"Excel","excel",{"name":2046,"slug":2047,"type":15},{"name":9,"slug":8,"type":15},{"name":2049,"slug":36,"type":15},"2026-07-31T05:54:44.030943",{"slug":2092,"name":2092,"fn":2093,"description":2094,"org":2095,"tags":2096,"stars":26,"repoUrl":27,"updatedAt":2106},"add-mcscopilot","add Copilot Studio connectors to Power Apps","Adds Microsoft Copilot Studio connector to a Power Apps code app. Use when invoking Copilot Studio agents, sending prompts to agents, or integrating agent responses.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2097,2100,2103,2104,2105],{"name":2098,"slug":2099,"type":15},"Agents","agents",{"name":2101,"slug":2102,"type":15},"Copilot Studio","copilot-studio",{"name":2046,"slug":2047,"type":15},{"name":9,"slug":8,"type":15},{"name":2049,"slug":36,"type":15},"2026-07-31T05:54:39.025597",{"slug":2108,"name":2108,"fn":2109,"description":2110,"org":2111,"tags":2112,"stars":26,"repoUrl":27,"updatedAt":2122},"add-sample-data","populate Power Pages tables with sample data","Populates Dataverse tables with sample records for testing and demoing a Power Pages site. Use when the user wants to add sample data, seed data, generate test records, or insert demo data into their tables.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2113,2116,2117,2118,2119],{"name":2114,"slug":2115,"type":15},"Database","database",{"name":2073,"slug":2074,"type":15},{"name":9,"slug":8,"type":15},{"name":20,"slug":21,"type":15},{"name":2120,"slug":2121,"type":15},"Testing","testing","2026-04-06T18:34:41.141155",26,{"items":2125,"total":2314},[2126,2148,2167,2188,2201,2218,2229,2242,2257,2272,2289,2302],{"slug":2127,"name":2127,"fn":2128,"description":2129,"org":2130,"tags":2131,"stars":2145,"repoUrl":2146,"updatedAt":2147},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2132,2135,2138,2139,2142],{"name":2133,"slug":2134,"type":15},"Engineering","engineering",{"name":2136,"slug":2137,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":2140,"slug":2141,"type":15},"Project Management","project-management",{"name":2143,"slug":2144,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":2149,"name":2149,"fn":2150,"description":2151,"org":2152,"tags":2153,"stars":2164,"repoUrl":2165,"updatedAt":2166},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2154,2157,2158,2161],{"name":2155,"slug":2156,"type":15},".NET","net",{"name":2098,"slug":2099,"type":15},{"name":2159,"slug":2160,"type":15},"Azure","azure",{"name":2162,"slug":2163,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":2168,"name":2168,"fn":2169,"description":2170,"org":2171,"tags":2172,"stars":2164,"repoUrl":2165,"updatedAt":2187},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2173,2176,2177,2180,2183,2184],{"name":2174,"slug":2175,"type":15},"Analytics","analytics",{"name":2159,"slug":2160,"type":15},{"name":2178,"slug":2179,"type":15},"Data Analysis","data-analysis",{"name":2181,"slug":2182,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":2185,"slug":2186,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":2189,"name":2189,"fn":2190,"description":2191,"org":2192,"tags":2193,"stars":2164,"repoUrl":2165,"updatedAt":2200},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2194,2197,2198,2199],{"name":2195,"slug":2196,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2159,"slug":2160,"type":15},{"name":2181,"slug":2182,"type":15},{"name":13,"slug":14,"type":15},"2026-07-07T06:53:31.293235",{"slug":2202,"name":2202,"fn":2203,"description":2204,"org":2205,"tags":2206,"stars":2164,"repoUrl":2165,"updatedAt":2217},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2207,2208,2211,2212,2213,2216],{"name":2159,"slug":2160,"type":15},{"name":2209,"slug":2210,"type":15},"Compliance","compliance",{"name":2162,"slug":2163,"type":15},{"name":9,"slug":8,"type":15},{"name":2214,"slug":2215,"type":15},"Python","python",{"name":13,"slug":14,"type":15},"2026-07-18T05:14:23.017504",{"slug":2219,"name":2219,"fn":2220,"description":2221,"org":2222,"tags":2223,"stars":2164,"repoUrl":2165,"updatedAt":2228},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2224,2225,2226,2227],{"name":2174,"slug":2175,"type":15},{"name":2159,"slug":2160,"type":15},{"name":2162,"slug":2163,"type":15},{"name":2214,"slug":2215,"type":15},"2026-07-31T05:54:29.068751",{"slug":2230,"name":2230,"fn":2231,"description":2232,"org":2233,"tags":2234,"stars":2164,"repoUrl":2165,"updatedAt":2241},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2235,2238,2239,2240],{"name":2236,"slug":2237,"type":15},"API Development","api-development",{"name":2159,"slug":2160,"type":15},{"name":9,"slug":8,"type":15},{"name":2214,"slug":2215,"type":15},"2026-07-18T05:14:16.988376",{"slug":2243,"name":2243,"fn":2244,"description":2245,"org":2246,"tags":2247,"stars":2164,"repoUrl":2165,"updatedAt":2256},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2248,2249,2252,2255],{"name":2159,"slug":2160,"type":15},{"name":2250,"slug":2251,"type":15},"Computer Vision","computer-vision",{"name":2253,"slug":2254,"type":15},"Images","images",{"name":2214,"slug":2215,"type":15},"2026-07-18T05:14:18.007737",{"slug":2258,"name":2258,"fn":2259,"description":2260,"org":2261,"tags":2262,"stars":2164,"repoUrl":2165,"updatedAt":2271},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2263,2264,2267,2270],{"name":2159,"slug":2160,"type":15},{"name":2265,"slug":2266,"type":15},"Configuration","configuration",{"name":2268,"slug":2269,"type":15},"Feature Flags","feature-flags",{"name":2181,"slug":2182,"type":15},"2026-07-03T16:32:01.278468",{"slug":2273,"name":2273,"fn":2274,"description":2275,"org":2276,"tags":2277,"stars":2164,"repoUrl":2165,"updatedAt":2288},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2278,2281,2282,2285],{"name":2279,"slug":2280,"type":15},"Cosmos DB","cosmos-db",{"name":2114,"slug":2115,"type":15},{"name":2283,"slug":2284,"type":15},"NoSQL","nosql",{"name":2286,"slug":2287,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":2290,"name":2290,"fn":2274,"description":2291,"org":2292,"tags":2293,"stars":2164,"repoUrl":2165,"updatedAt":2301},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2294,2295,2296,2297,2298],{"name":2279,"slug":2280,"type":15},{"name":2114,"slug":2115,"type":15},{"name":9,"slug":8,"type":15},{"name":2283,"slug":2284,"type":15},{"name":2299,"slug":2300,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":2303,"name":2303,"fn":2304,"description":2305,"org":2306,"tags":2307,"stars":2164,"repoUrl":2165,"updatedAt":2313},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2308,2309,2310,2311,2312],{"name":2159,"slug":2160,"type":15},{"name":2279,"slug":2280,"type":15},{"name":2114,"slug":2115,"type":15},{"name":2181,"slug":2182,"type":15},{"name":2283,"slug":2284,"type":15},"2026-05-13T06:14:17.582229",267]