Skip to content

Commit 1ce8f66

Browse files
authored
Update Plugin name (#58)
1 parent dca6dcc commit 1ce8f66

35 files changed

Lines changed: 22 additions & 22 deletions

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
]
3535
},
3636
{
37-
"name": "power-apps",
38-
"source": "./plugins/power-apps",
37+
"name": "code-apps",
38+
"source": "./plugins/code-apps",
3939
"description": "Build and deploy Power Apps code apps using React, Vite, and Power Platform connectors",
4040
"category": "development",
4141
"tags": [

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ If you prefer to install manually, run these commands inside a Claude Code or Gi
4646
```bash
4747
/plugin install power-pages@power-platform-skills
4848
/plugin install model-apps@power-platform-skills
49-
/plugin install power-apps@power-platform-skills
49+
/plugin install code-apps@power-platform-skills
5050
```
5151

5252
## Available Plugins
@@ -63,7 +63,7 @@ Build and deploy Power Apps generative pages for model-driven apps.
6363

6464
**Stack**: React + TypeScript + Fluent, deployed via PAC CLI
6565

66-
### [Power Apps](plugins/power-apps/AGENTS.md) (`plugins/power-apps`)
66+
### [Code Apps](plugins/code-apps/AGENTS.md) (`plugins/code-apps`)
6767

6868
Build and deploy Power Apps code apps connected to Power Platform via connectors.
6969

@@ -79,7 +79,7 @@ To develop and test plugins locally, follow these steps:
7979
```bash
8080
claude --plugin-dir /path/to/power-platform-skills/plugins/power-pages
8181
claude --plugin-dir /path/to/power-platform-skills/plugins/model-apps
82-
claude --plugin-dir /path/to/power-platform-skills/plugins/power-apps
82+
claude --plugin-dir /path/to/power-platform-skills/plugins/code-apps
8383
```
8484

8585
## Running Without Interruption
@@ -165,7 +165,7 @@ power-platform-skills/
165165
│ ├── skills/
166166
│ ├── shared/ # Shared references + samples
167167
│ └── github/ # GitHub Copilot instructions
168-
│ └── power-apps/ # Power Apps plugin
168+
│ └── code-apps/ # Code Apps plugin
169169
│ ├── .claude-plugin/
170170
│ │ └── plugin.json
171171
│ ├── agents/

plugins/power-apps/.claude-plugin/plugin.json renamed to plugins/code-apps/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "power-apps",
2+
"name": "code-apps",
33
"version": "1.0.0",
44
"description": "Build and deploy Power Apps code apps using React, Vite, and Power Platform connectors.",
55
"author": {
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ shared/
3030
preferred-environment.md <- Environment selection priority
3131
version-check.md <- Version check instructions
3232
skills/
33-
create-power-app/
33+
create-code-app/
3434
SKILL.md <- Scaffold, init, build, and deploy a new code app
3535
references/
3636
prerequisites-reference.md <- Node, pac, git requirements
@@ -67,7 +67,7 @@ skills/
6767

6868
| Skill | Description |
6969
|-------|-------------|
70-
| `/create-power-app` | Scaffold, configure, and deploy a new Power Apps code app |
70+
| `/create-code-app` | Scaffold, configure, and deploy a new Power Apps code app |
7171
| `/deploy` | Build and deploy an existing code app |
7272
| `/list-connections` | List Power Platform connections to find connection IDs |
7373
| `/add-datasource` | Add a data source (routes to the appropriate add-* skill) |
@@ -116,6 +116,6 @@ npx degit microsoft/PowerAppsCodeApps/templates/vite {folder} --force
116116
After modifying this plugin:
117117

118118
1. Run `claude --debug` to see plugin loading details
119-
2. Test skill invocation with `/create-power-app`
119+
2. Test skill invocation with `/create-code-app`
120120
3. Verify connector-first guardrails are enforced
121121
4. Test Windows CLI compatibility (`pac` via `pwsh`)
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Power Apps Plugin
1+
# Code Apps Plugin
22

33
Copilot plugin for building Power Apps code apps with React and Vite. Works with both Claude Code and GitHub Copilot.
44

@@ -22,14 +22,14 @@ Open Claude Code or GitHub Copilot in any folder and run the following commands:
2222

2323
2. Install the plugin:
2424
```
25-
"/plugin install power-apps@power-platform-skills"
25+
"/plugin install code-apps@power-platform-skills"
2626
```
2727

2828
## Available Commands
2929

3030
| Command | Description |
3131
| ------------------- | ------------------------------------------------------------ |
32-
| `/create-power-app` | Scaffold, build, and deploy a new Power Apps code app |
32+
| `/create-code-app` | Scaffold, build, and deploy a new Power Apps code app |
3333
| `/add-dataverse` | Add Dataverse tables with generated TypeScript services |
3434
| `/add-sharepoint` | Add SharePoint Online connector |
3535
| `/add-excel` | Add Excel Online (Business) connector |
@@ -40,12 +40,12 @@ Open Claude Code or GitHub Copilot in any folder and run the following commands:
4040
| `/add-connector` | Add any other Power Platform connector |
4141
| `/add-datasource` | Ask your copilot to recommend the right data source |
4242

43-
Start with `/create-power-app` — it walks you through everything.
43+
Start with `/create-code-app` — it walks you through everything.
4444

4545
## Uninstall
4646

4747
```
48-
/plugin uninstall power-apps
48+
/plugin uninstall code-apps
4949
```
5050

5151
## Documentation

plugins/power-apps/agents/code-app-architect.md renamed to plugins/code-apps/agents/code-app-architect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You are a Power Apps Code App Architect with deep expertise in building React/Vi
1111

1212
## Execution Guardrails
1313

14-
- **Skill-first**: Before taking any action, check whether a skill exists for it. Use `/create-power-app` for new apps, `/add-*` skills for data sources, `/deploy` for deployment, and `/list-connections` for connection discovery. Never do ad-hoc what a skill already handles.
14+
- **Skill-first**: Before taking any action, check whether a skill exists for it. Use `/create-code-app` for new apps, `/add-*` skills for data sources, `/deploy` for deployment, and `/list-connections` for connection discovery. Never do ad-hoc what a skill already handles.
1515
- Use skills, not ad-hoc scaffolding: do not create folders or project skeletons manually beyond the prescribed `npx degit` flow.
1616
- Connector-first enforcement: never propose raw `fetch`/`axios` calls when a Power Platform connector exists — pick the connector skill from the table below and add it before writing code.
1717

plugins/power-apps/shared/connector-reference.md renamed to plugins/code-apps/shared/connector-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ This avoids context window bloat and is much faster than reading entire generate
5858

5959
## Sub-Skill Invocation
6060

61-
When a connector skill is invoked from another skill (e.g., `/create-power-app` calls `/add-office365`):
61+
When a connector skill is invoked from another skill (e.g., `/create-code-app` calls `/add-office365`):
6262

6363
- **Check `$ARGUMENTS`** -- if provided, use it as the connector name or configuration
6464
- **Skip redundant questions** -- don't re-ask things the caller already provided (connector name, project path, etc.)
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Update after:
119119

120120
## Completed Steps
121121

122-
### /create-power-app
122+
### /create-code-app
123123
- [x] Prerequisites validated (Node.js, pac CLI)
124124
- [x] Authenticated and selected environment
125125
- [x] Scaffolded from template
@@ -200,7 +200,7 @@ Update after:
200200

201201
To continue working on this project:
202202

203-
1. **Create App**: `/create-power-app` (scaffolds and deploys a new code app)
203+
1. **Create App**: `/create-code-app` (scaffolds and deploys a new code app)
204204
2. **Add Dataverse**: `/add-dataverse` (adds Dataverse table with generated services)
205205
3. **Add Azure DevOps**: `/add-azuredevops` (adds ADO connector with HttpRequest fix)
206206
4. **Add Teams**: `/add-teams` (adds Teams messaging)
File renamed without changes.

0 commit comments

Comments
 (0)