Build and deploy Power Apps code apps with React and Vite quickly.
The material indicates a prompt-only open-source skill for creating Power Apps code apps, with no declared secrets, remote endpoints, or extra system permissions. Overall risk is low, but supply-chain caution is warranted due to low community adoption, no declared license, and unknown maintenance status.
The material and objective checks indicate no required secrets or environment variables. There is no stated need for API tokens, account credentials, or other sensitive authentication data, so credential exposure appears minimal.
No remote endpoint is declared, and the system labels it as prompt-only. Based on the provided material, there is no factual indication that the skill itself sends user data to external services.
Although the README mentions Node.js/Git checks, scaffolding, and deployment steps, the objective checks classify it as prompt-only. This makes it more of a workflow guide than a tool with its own local execution capability, with no clear code-execution red flags shown.
The material does not show that the skill itself has direct permission to read or write local files, databases, cloud resources, or workspace data. It only mentions a workflow step about checking memory-bank.md, which does not by itself establish concrete data-access capability.
The source is an open-source Microsoft GitHub repository, which is a positive auditability signal. However, the license is undeclared, community adoption is 0 stars, and maintenance status is unknown, so the supply-chain picture is incomplete and should be verified before adoption.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "create-code-app" skill from askskill: 1. Download https://raw.githubusercontent.com/microsoft/power-platform-skills/main/plugins/code-apps/skills/create-code-app/SKILL.md 2. Save it as ~/.claude/skills/create-code-app/SKILL.md 3. Reload skills and tell me it's ready
Create a Power Apps code app scaffold using React and Vite, including a recommended folder structure, basic components, build configuration, and local run instructions.
A ready-to-develop project structure, sample code, and run steps.
Help me build a Power Apps code app for customer data entry using React and Vite, including a form page, field validation, submission logic, and basic styling.
Page code, interaction logic, and implementation notes for the business scenario.
Explain how to package and deploy this React + Vite Power Apps code app to Power Platform, including build commands, publishing steps, and troubleshooting tips.
A clear deployment workflow, command examples, and common error handling tips.
📋 Shared Instructions: shared-instructions.md - Cross-cutting concerns.
References:
Check for memory-bank.md per shared-instructions.md. Skip completed steps.
Run prerequisite checks first -- no point gathering requirements if the environment isn't ready. See prerequisites-reference.md for details.
Check Node.js and Git (runs natively in bash):
node --version # Must be v22+
git --version # Optional but recommended
nvm use 22." and STOP.Skip questions the user already answered in their initial instruction.
If the user has not described what they want to build (i.e., /create-code-app was invoked with no arguments or a vague prompt), start with a single open-ended question before asking anything else:
"What would you like to build? Describe it in your own words — what it does, who uses it, and what problem it solves."
Wait for their answer. Use it to frame all follow-up questions. Do NOT present a multiple-choice list of app types before the user has described their idea.
Once you have their description:
/add-dataverse)EnterPlanMode/add-* skills to run for data sourcesallowedPrompts from prerequisites-reference.mdExitPlanMode when approvedAsk the user for a folder name. Default to powerapps-{app-name-slugified}-{timestamp} if they don't have a preference.
IMPORTANT: Use npx degit to download the template. Do NOT use git clone, do NOT manually create files, do NOT download from GitHub UI. degit downloads the template without git history.
npx degit microsoft/PowerAppsCodeApps/templates/vite {folder} --force
cd {folder}
npm install
Notes:
--force to overwrite if the directory already has files (e.g., .claude from a planning session)…
Review and fix Power Pages security headers, CSP, CORS, cookies, and embedding settings.
Run an end-to-end Power Pages security review with a consolidated HTML report.
Test deployed Power Pages sites with browsing, crawling, and API verification.
Add a data source or connector to a Power Apps code app.
Add Azure DevOps to Power Apps for work items, bugs, pipelines, and API calls.
Set up Power Platform Pipelines for automated Power Pages deployments.
Build and deploy a Power Apps code app to Power Platform.
Create and launch a new Power Pages code site from concept to deployment.
Add a Copilot Studio connector to Power Apps code apps for agent integration.
Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications.
Generate a complete Power Apps canvas app; deprecated, use canvas-app instead.
Add Dataverse tables to Power Apps code apps with generated TypeScript services.