create-webroles

作者: microsoft

插件检查:运行 node "${CLAUDE_PLUGIN_ROOT}/scripts/check-version.js" — 如果输出消息,请先向用户显示该消息再继续。

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

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

Create Web Roles

Create web roles for a Power Pages code site. Web roles define the permissions and access levels for different types of site users.

Core Principles

  • Use TaskCreate/TaskUpdate: Track all progress throughout all phases — create the todo list upfront with all phases before starting any work.
  • Always use the UUID script: Never generate UUIDs manually — always use ${PLUGIN_ROOT}/scripts/generate-uuid.js to produce valid UUID v4 values for each web role.
  • 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.
  • Caller-suppress mode is opt-in: When invoked by another skill (e.g. /add-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.

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.

Initial request: $ARGUMENTS

Phase 0: Detect caller-suppress mode

Inspect $ARGUMENTS. If the text contains the sentinel [CALLED-BY-PARENT-SKILL], set an internal flag caller-suppress = true that downstream phases consult. The optional token caller=<skill-name> may follow the sentinel for diagnostic purposes (e.g. caller=add-ai-webapi); record it for the final summary but do not branch on it.

When the flag is set, skip every deploy prompt this skill would otherwise issue:

  • Phase 1 missing-deploy ask: if .powerpages-site is absent, do NOT ask the user to deploy now. Stop with a clear contract-violation message back to the caller — the caller was supposed to gate on this before invoking us.
  • Phase 6 deploy ask (step 3) and the closing "Please run /deploy-site" reminder: skip both. The caller batches the single deploy decision at end-of-orchestration.

When the sentinel is absent, proceed exactly as today (full interactive flow). This is the regression guard — no human invocation changes behavior.


Workflow

  1. Phase 1: Verify Site Structure → Check for .powerpages-site/web-roles/ directory
  2. Phase 2: Discover Existing Roles → Read current web role YAML files
  3. Phase 3: Determine New Roles → Analyze the site and ask the user what roles are needed
  4. Phase 4: Create Web Role Files → Generate YAML files with UUIDs from the Node script
  5. Phase 5: Verify Web Roles → Validate all created files exist, have valid UUIDs, and flags are correct
  6. Phase 6: Review & Deploy → Present summary and proceed to deployment

Phase 1: Verify Site Structure

Goal: Confirm the .powerpages-site/web-roles/ directory exists and is ready for web role files

Actions:

  1. Locate the project root (**/powerpages.config.json) and check for .powerpages-site/web-roles/.

🚦 Gate (plan · create-webroles:1.deploy-first): .powerpages-site missing — skill cannot proceed without that folder. Prompt to deploy first or stop.

Trigger: Phase 1 found no .powerpages-site directory. 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. Cancel leaves: Nothing — no YAML files written.

  1. If .powerpages-site does NOT exist:

    • In caller-suppress mode (Phase 0 flag): stop with a contract-violation message — the calling skill should have gated on this folder existing before invoking us.
    • Otherwise: ask the user to deploy first via AskUserQuestion (options: "Yes, deploy now (Recommended)", "No, I'll do it later"). If yes, invoke /deploy-site then resume from Phase 2. If no, stop.
  2. If .powerpages-site exists but web-roles/ does NOT: Create the <PROJECT_ROOT>/.powerpages-site/web-roles/ directory.

  3. If both exist: Proceed to Phase 2.

Output: Confirmed .powerpages-site/web-roles/ directory exists and is ready


Phase 2: Discover Existing Roles

Goal: Identify all web roles already defined for the site

Actions:

  1. Read all YAML files in the .powerpages-site/web-roles/ directory. Each file represents one web role with this format:

    anonymoususersrole: false
    authenticatedusersrole: false
    id: 778fa3d0-a2ef-4d2b-98b8-e6c7d8ce1444
    name: Administrators
    
  2. Parse each file and compile a list of existing web roles (name, id, and flags).

  3. Present the existing roles to the user:

    "I found the following existing web roles in your site:"

    • Administrators (id: 778fa3d0-..., authenticated: false, anonymous: false)
    • (etc.)
  4. If no roles exist yet, inform the user:

    "No web roles are currently defined for your site."

Output: Complete list of existing web roles with their names, IDs, and flags


Phase 3: Determine New Roles

Goal: Decide which new web roles to create based on site needs and user input

Actions:

🚦 Gate (plan · create-webroles:3.role-selection): Multi-select over suggested + custom web roles. Drives the Phase 4 YAML file writes.

Trigger: Phase 2 inventoried existing roles; Phase 3 suggests new ones. Why we ask: Wrong roles get created locally — fixable but adds churn to the .powerpages-site/web-roles/ folder. Cancel leaves: Nothing — no YAML files written yet.

  1. Based on the site's purpose and the existing roles, suggest appropriate web roles. Use AskUserQuestion to confirm with the user.

    Common web roles for Power Pages sites include:

    • Administrators — Full access to site management
    • Authenticated Users — Default role for logged-in users (set authenticatedusersrole: true)
    • Anonymous Users — Default role for non-logged-in visitors (set anonymoususersrole: true)
    • Content Editors — Users who can edit site content
    • Moderators — Users who can moderate community content
    • Custom roles based on business needs
  2. Ask the user which roles they want to create:

    QuestionOptions
    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)

    CRITICAL: Do NOT suggest roles that already exist. Filter out any existing role names before presenting options.

  3. Allow the user to specify custom role names as well.

Output: Confirmed list of new web roles to create


Phase 4: Create Web Role Files

Goal: Generate properly formatted YAML files with valid UUIDs for each new web role

Actions:

For each new web role the user approved, create a YAML file in .powerpages-site/web-roles/.

4.1 Generate UUID

For each role, generate a UUID using the Node script. NEVER generate UUIDs yourself — always use the script.

node "${PLUGIN_ROOT}/scripts/generate-uuid.js"

4.2 Create the YAML File

The filename should be the role name in kebab-case with a .yml extension (e.g., Administrators → administrators.yml, Content Editors → content-editors.yml).

Write the file with this exact format (4 fields, no extra whitespace or comments):

anonymoususersrole: <true if this is the anonymous users role, false otherwise>
authenticatedusersrole: <true if this is the authenticated users role, false otherwise>
id: <UUID from generate-uuid.js>
name: <Role Name>

Rules:

  • Only ONE role can have anonymoususersrole: true
  • Only ONE role can have authenticatedusersrole: true
  • If an existing role already has one of these flags set to true, do not set it again on a new role
  • Each role MUST have a unique UUID generated by the script — run the script once per role

Output: All new web role YAML files created


Phase 5: Verify Web Roles

Goal: Validate that all created web role files exist, have valid format, and constraints are satisfied

Actions:

  1. List all files in .powerpages-site/web-roles/ and read each new file to confirm they were written correctly.

  2. For each new web role file, verify:

    • The file exists at the expected path
    • The id field contains a valid UUID v4 format
    • The name field matches the expected role name
    • anonymoususersrole and authenticatedusersrole are valid booleans
  3. Verify uniqueness constraints across ALL role files (existing + new):

    • At most one role has anonymoususersrole: true
    • At most one role has authenticatedusersrole: true
    • No duplicate id values exist across roles
  4. If any file fails validation, fix the issue before proceeding.

Output: All web role files validated — correct format, valid UUIDs, no constraint violations


Phase 6: Review & Deploy

Goal: Present a summary of created roles and offer deployment

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 "CreateWebroles".

  2. Present a summary of what was created:

    "I've created the following new web roles:"

Role NameIDAnonymousAuthenticated
Content Editorsa1b2c3d4-...falsefalse
(etc.)

🚦 Gate (plan · create-webroles:6.deploy): Final post-create prompt — deploy now to make the new roles take effect, or defer.

Trigger: Phase 5 validation succeeded. Why we ask: Auto-invoking /deploy-site would push the site to whatever env PAC CLI happens to point at — wrong-env push is messy to undo. Cancel leaves: Nothing — the YAML files stay on disk; no deploy fired.

  1. In caller-suppress mode (Phase 0 flag): skip the deploy ask and the closing reminder entirely. Return the created-roles summary to the caller and stop. The caller owns the single end-of-orchestration deploy decision; nesting deploy reminders inside delegations gives the user 2–3 redundant prompts per parent-skill run.

    Otherwise, ask the user if they want to deploy the site to apply the new roles:

    QuestionOptions
    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
  2. If "Yes, deploy now": Tell the user to invoke the deploy skill:

    "Please run /deploy-site to deploy your site and apply the new web roles."

  3. If "No, I'll deploy later": Acknowledge and remind them:

    "No problem! Remember to deploy your site using /deploy-site when you're ready to apply the new web roles to your Power Pages environment."

Output: Summary presented and deployment offered


Important Notes

Key Decision Points (Wait for User)

  1. After Phase 1: Confirm deployment if .powerpages-site is missing
  2. After Phase 3: Confirm which roles to create
  3. After Phase 6: Deploy or skip

Progress Tracking

Before starting Phase 1, create a task list with all phases using TaskCreate:

Task subjectactiveFormDescription
Verify site structureVerifying site structureCheck for .powerpages-site/web-roles/ directory, create if needed
Discover existing rolesDiscovering existing rolesRead current web role YAML files and compile list of existing roles
Determine new rolesDetermining new rolesAnalyze site needs and ask user which roles to create
Create web role filesCreating web role filesGenerate YAML files with UUIDs from the Node script for each new role
Verify web rolesVerifying web rolesValidate all files exist, have valid UUIDs, and uniqueness constraints are satisfied
Review and deployReviewing and deployingPresent summary of created roles and offer deployment

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.


Begin with Phase 1: Verify Site Structure

来自 microsoft 的更多技能

oss-growth
microsoft
OSS增长黑客角色
agent-framework-azure-ai-py
microsoft
使用Microsoft Agent Framework Python SDK(agent-framework-azure-ai)构建Azure AI Foundry代理。在创建使用AzureAIAgentsProvider的持久化代理、使用托管工具(代码解释器、文件搜索、网络搜索)、集成MCP服务器、管理对话线程或实现流式响应时使用。涵盖函数工具、结构化输出和多工具代理。
development
airunway-aks-setup
microsoft
在AKS上设置AI Runway——从裸集群到运行模型。涵盖集群验证、控制器安装、GPU评估、提供商设置和首次部署。适用场景:“设置AI Runway”、“接入AKS集群”、“安装AI Runway”、“airunway设置”、“将模型部署到AKS”、“在AKS上进行GPU推理”、“在AKS上配置KAITO”、“在AKS上运行LLM”、“在AKS上使用vLLM”、“在AKS上设置模型服务”、“AI Runway控制器”。
devops
appinsights-instrumentation
microsoft
使用Azure Application Insights对Web应用进行插桩的指南。提供遥测模式、SDK设置和配置参考。适用场景:如何对应用进行插桩、App Insights SDK、遥测模式、什么是App Insights、Application Insights指南、插桩示例、APM最佳实践。
devops
applicationinsights-web-ts
microsoft
使用Application Insights JavaScript SDK(@microsoft/applicationinsights-web)为浏览器/Web应用添加检测。用于真实用户监控(RUM)——页面视图、点击、AJAX/fetch依赖项、异常、自定义事件,以及与后端OpenTelemetry追踪关联的浏览器端GenAI代理追踪。涵盖SDK加载器脚本和npm设置、框架扩展(React、React Native、Angular)、点击分析、遥测初始化器,以及从浏览器发出的代理/工具/模型跨度所遵循的OTel GenAI语义约定。
devops
azure-ai-anomalydetector-java
microsoft
使用适用于 Java 的 Azure AI 异常检测器 SDK 构建异常检测应用程序。在实现单变量/多变量异常检测、时间序列分析或 AI 驱动的监控时使用。
development
azure-ai-language-conversations-py
microsoft
使用azure-ai-language-conversations Python SDK实现对话语言理解(CLU)。当使用ConversationAnalysisClient分析对话意图和实体、构建NLP功能或将语言理解集成到应用程序中时使用。
development
azure-ai-ml-py
microsoft
Azure Machine Learning SDK v2 for Python。用于机器学习工作区、作业、模型、数据集、计算资源和管道。 触发词:“azure-ai-ml”、“MLClient”、“工作区”、“模型注册表”、“训练作业”、“数据集”。
development