1- # Power Platform Claude Plugins
1+ # Power Platform Skills
22
33Official Claude Code plugin for Power Platform development by Microsoft.
44
@@ -9,18 +9,25 @@ This repository is a **plugin marketplace** containing Claude Code plugins for P
99## Repository Structure
1010
1111```
12- power-platform-claude-plugin /
12+ power-platform-skills /
1313├── .claude-plugin/
1414│ └── marketplace.json # Marketplace manifest (lists all plugins)
15+ ├── .claude/
16+ │ └── settings.json # Auto-allowed tools (pac, node, dotnet, etc.)
1517├── plugins/
16- │ └── power-pages/ # Individual plugin directory
18+ │ ├── power-pages/ # Power Pages plugin
19+ │ │ ├── .claude-plugin/
20+ │ │ │ └── plugin.json
21+ │ │ ├── commands/
22+ │ │ ├── shared/
23+ │ │ └── skills/
24+ │ └── power-apps/ # Power Apps plugin
1725│ ├── .claude-plugin/
18- │ │ └── plugin.json # Plugin manifest
19- │ ├── .mcp.json # MCP server configuration
20- │ ├── agents/ # Agent persona files
21- │ ├── commands/ # Command entry points
22- │ ├── shared/ # Shared resources
23- │ └── skills/ # Skill workflows
26+ │ │ └── plugin.json
27+ │ ├── commands/
28+ │ ├── skills/
29+ │ ├── shared/ # Shared references + samples
30+ │ └── github/ # GitHub Copilot instructions
2431├── AGENTS.md # Development guidelines
2532└── README.md
2633```
@@ -48,13 +55,14 @@ To use a plugin from this marketplace:
48551 . Add the marketplace to your Claude Code instance
4956
5057 ``` bash
51- /plugin marketplace add microsoft/power-platform-claude-plugins
58+ /plugin marketplace add microsoft/power-platform-skills
5259 ```
5360
54612. Install the desired plugin
5562
5663 ` ` ` bash
57- /plugin install power-pages@power-platform-claude-plugins
64+ /plugin install power-pages@power-platform-skills
65+ /plugin install power-apps@power-platform-skills
5866 ` ` `
5967
6068# ## Add from local path
@@ -63,13 +71,14 @@ To use a plugin from this marketplace:
63711. Add the marketplace to your Claude Code instance
6472
6573 ` ` ` bash
66- /plugin marketplace add /path/to/power-platform-claude-plugins
74+ /plugin marketplace add /path/to/power-platform-skills
6775 ` ` `
6876
69771. Install the desired plugin (installs to user scope by default)
7078
7179 ` ` ` bash
72- /plugin install power-pages@power-platform-claude-plugins
80+ /plugin install power-pages@power-platform-skills
81+ /plugin install power-apps@power-platform-skills
7382 ` ` `
7483
7584# # Local Development
@@ -80,7 +89,8 @@ To develop and test plugins locally, follow these steps:
80891. Launch Claude Code with plugin path:
8190
8291 ` ` ` bash
83- claude --plugin-dir /path/to/power-platform-claude-plugins/plugins/power-pages
92+ claude --plugin-dir /path/to/power-platform-skills/plugins/power-pages
93+ claude --plugin-dir /path/to/power-platform-skills/plugins/power-apps
8494 ` ` `
8595
8696# # Documentation
0 commit comments