Skip to content

Commit 1de12a7

Browse files
author
Akshay Maloo
authored
update plugin to match repo name (#14)
1 parent b139170 commit 1de12a7

5 files changed

Lines changed: 30 additions & 20 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "power-platform-claude-plugins-official",
2+
"name": "power-platform-skills",
33
"description": "Directory of Claude Code extensions for Power Platform development",
44
"owner": {
55
"name": "Microsoft"

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This file provides generic instructions for Claude Code when working on this plu
1414
This repository is a **plugin marketplace** containing multiple plugins:
1515

1616
```
17-
power-platform-claude-plugins/
17+
power-platform-skills/
1818
├── .claude-plugin/
1919
│ └── marketplace.json # Marketplace manifest (lists all available plugins)
2020
├── plugins/ # Directory containing individual plugins

README.md

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Power Platform Claude Plugins
1+
# Power Platform Skills
22

33
Official 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:
4855
1. 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

5461
2. 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:
6371
1. 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

6977
1. 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:
8089
1. 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

plugins/power-apps/.claude-plugin/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"name": "Microsoft",
77
"url": "https://www.microsoft.com"
88
},
9-
"homepage": "https://github.com/microsoft/power-platform-claude-plugins/",
10-
"repository": "https://github.com/microsoft/power-platform-claude-plugins/",
9+
"homepage": "https://github.com/microsoft/power-platform-skills/",
10+
"repository": "https://github.com/microsoft/power-platform-skills/",
1111
"license": "MIT",
1212
"keywords": [
1313
"power-apps",

plugins/power-pages/.claude-plugin/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"name": "Microsoft",
77
"url": "https://www.microsoft.com"
88
},
9-
"homepage": "https://github.com/microsoft/power-platform-claude-plugins/",
10-
"repository": "https://github.com/microsoft/power-platform-claude-plugins/",
9+
"homepage": "https://github.com/microsoft/power-platform-skills/",
10+
"repository": "https://github.com/microsoft/power-platform-skills/",
1111
"license": "MIT",
1212
"keywords": [
1313
"power-pages",

0 commit comments

Comments
 (0)