Skip to content

Commit 764ff6e

Browse files
refactor: use canonical PSModule plugin name
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
1 parent b41e431 commit 764ff6e

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/plugin/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# PSModule process plugin
22

33
This repository hosts the `psmodule` GitHub Copilot CLI marketplace and its
4-
`psmodule-process` plugin. The marketplace and plugin are owned and released
4+
`psmodule` plugin. The marketplace and plugin are owned and released
55
with the PSModule process.
66

77
## Install through the marketplace
@@ -10,19 +10,19 @@ Register this repository's marketplace and install the plugin:
1010

1111
```console
1212
copilot plugin marketplace add https://github.com/PSModule/Process-PSModule.git
13-
copilot plugin install psmodule-process
13+
copilot plugin install psmodule
1414
```
1515

1616
## Install directly
1717

1818
Install the plugin directly from this repository:
1919

2020
```console
21-
copilot plugin install PSModule/Process-PSModule:.github/plugin/psmodule-process
21+
copilot plugin install PSModule/Process-PSModule:.github/plugin/psmodule
2222
```
2323

2424
The plugin provides the
25-
[`pester-migration`](./psmodule-process/skills/pester-migration/SKILL.md)
25+
[`psmodule-pester-migration`](./psmodule/skills/psmodule-pester-migration/SKILL.md)
2626
skill for migrating every Pester test set in a PSModule repository to Pester
2727
6.1.0. Verify the installation with:
2828

@@ -33,4 +33,4 @@ copilot plugin list
3333

3434
The marketplace catalog is in [`marketplace.json`](./marketplace.json), and
3535
plugin metadata is in
36-
[`plugin.json`](./psmodule-process/plugin.json).
36+
[`plugin.json`](./psmodule/plugin.json).

.github/plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
},
1111
"plugins": [
1212
{
13-
"name": "psmodule-process",
13+
"name": "psmodule",
1414
"description": "PSModule process guidance and reusable skills for PowerShell module repositories.",
1515
"version": "1.0.0",
16-
"source": ".github/plugin/psmodule-process"
16+
"source": ".github/plugin/psmodule"
1717
}
1818
]
1919
}

.github/plugin/psmodule-process/plugin.json renamed to .github/plugin/psmodule/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
3-
"name": "psmodule-process",
3+
"name": "psmodule",
44
"description": "PSModule process guidance and reusable skills for PowerShell module repositories.",
55
"version": "1.0.0",
66
"author": {

.github/plugin/psmodule-process/skills/pester-migration/SKILL.md renamed to .github/plugin/psmodule/skills/psmodule-pester-migration/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: pester-migration
2+
name: psmodule-pester-migration
33
description: Migrate every Pester test set in a PSModule repository to Pester 6.1.0, preserving test intent while checking runtime, discovery, setup, mocks, data-driven tests, coverage, CI, and reporting. Use when upgrading a PSModule repository from Pester 5 or earlier, or when validating a repository-wide Pester migration.
44
---
55

docs/content/guides/pester-migration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ description: A repository-wide checklist for migrating PSModule test sets to Pes
55

66
# Migrating Pester tests
77

8-
Register the PSModule initiative marketplace and install its `psmodule-process`
8+
Register the PSModule initiative marketplace and install its `psmodule`
99
plugin:
1010

1111
```console
1212
copilot plugin marketplace add https://github.com/PSModule/Process-PSModule.git
13-
copilot plugin install psmodule-process
13+
copilot plugin install psmodule
1414
```
1515

16-
Then use its reusable `pester-migration` agent skill to migrate every Pester
16+
Then use its reusable `psmodule-pester-migration` agent skill to migrate every Pester
1717
test set in a PSModule repository. For direct installation during development,
1818
use `copilot plugin install
19-
PSModule/Process-PSModule:.github/plugin/psmodule-process`. It is
19+
PSModule/Process-PSModule:.github/plugin/psmodule`. It is
2020
written for Pester **6.1.0** and distinguishes required compatibility changes
2121
from optional v6 modernization.
2222

0 commit comments

Comments
 (0)