Skip to content

Commit 35d0162

Browse files
fix: update installation commands to use IntelliPlugins instead of IntelliTect-dev
1 parent ea1feee commit 35d0162

3 files changed

Lines changed: 37 additions & 19 deletions

File tree

README.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Curated GitHub Copilot plugins for enterprise C# development, Coalesce framework
1010
### Install a Plugin
1111

1212
```bash
13-
copilot plugin install solid-principles@IntelliTect-dev
13+
copilot plugin install solid-principles@IntelliPlugins
1414
```
1515

1616
### Use in Copilot
@@ -117,15 +117,21 @@ Help me fix bug #12345. Let's start with a test-first approach.
117117
- GitHub Copilot CLI ([installation guide](https://docs.github.com/en/copilot/how-tos/copilot-cli/getting-started-with-github-copilot-cli))
118118
- Git
119119

120+
### Install from Marketplace
121+
122+
`bash
123+
plugin marketplace add IntelliPlugins/IntelliTect-dev
124+
`
125+
120126
### Install All Plugins
121127

122128
```bash
123-
copilot plugin install solid-principles@IntelliTect-dev && \
124-
copilot plugin install testing-essentials@IntelliTect-dev && \
125-
copilot plugin install csharp-best-practices@IntelliTect-dev && \
126-
copilot plugin install coalesce-accelerator@IntelliTect-dev && \
127-
copilot plugin install vuetify-components@IntelliTect-dev && \
128-
copilot plugin install enterprise-bug-fixing@IntelliTect-dev
129+
copilot plugin install solid-principles@IntelliPlugins && \
130+
copilot plugin install testing-essentials@IntelliPlugins && \
131+
copilot plugin install csharp-best-practices@IntelliPlugins && \
132+
copilot plugin install coalesce-accelerator@IntelliPlugins && \
133+
copilot plugin install vuetify-components@IntelliPlugins && \
134+
copilot plugin install enterprise-bug-fixing@IntelliPlugins
129135
```
130136

131137
### Project-Level Setup
@@ -135,9 +141,9 @@ Create `.copilot/config.json` in your project:
135141
```json
136142
{
137143
"plugins": [
138-
"solid-principles@IntelliTect-dev",
139-
"testing-essentials@IntelliTect-dev",
140-
"csharp-best-practices@IntelliTect-dev"
144+
"solid-principles@IntelliPlugins",
145+
"testing-essentials@IntelliPlugins",
146+
"csharp-best-practices@IntelliPlugins"
141147
]
142148
}
143149
```

docs/guides/getting-started.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@
22

33
Extend GitHub Copilot with enterprise C# development, Coalesce framework, and Vue 3 with Vuetify expertise.
44

5+
## Install from Marketplace
6+
7+
`bash
8+
plugin marketplace add IntelliPlugins/IntelliTect-dev
9+
`
10+
511
## Install Your First Plugin
612

713
```bash
8-
copilot plugin install solid-principles@IntelliTect-dev
14+
copilot plugin install solid-principles@IntelliPlugins
915
```
1016

1117
## Use It in Copilot
@@ -45,10 +51,10 @@ Create `.copilot/config.json` in your project:
4551
```json
4652
{
4753
"plugins": [
48-
"solid-principles@IntelliTect-dev",
49-
"testing-essentials@IntelliTect-dev",
50-
"csharp-best-practices@IntelliTect-dev",
51-
"coalesce-accelerator@IntelliTect-dev"
54+
"solid-principles@IntelliPlugins",
55+
"testing-essentials@IntelliPlugins",
56+
"csharp-best-practices@IntelliPlugins",
57+
"coalesce-accelerator@IntelliPlugins"
5258
]
5359
}
5460
```

scripts/generate-plugin-docs.ps1

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ foreach ($dir in $pluginDirs) {
109109

110110
$keywordsStr = if ($plugin.keywords) { $plugin.keywords -join ", " } else { "" }
111111
$categoriesStr = if ($plugin.categories) { $plugin.categories -join ", " } else { "" }
112-
$installCmd = "copilot plugin install $($plugin.name)@$($plugin.publisher)"
112+
$installCmd = "copilot plugin install $($plugin.name)@IntelliPlugins"
113113

114114
$lines = [System.Collections.Generic.List[string]]::new()
115115
$lines.Add("# $($plugin.displayName)")
@@ -150,15 +150,15 @@ Write-Host ""
150150
Write-Host " Generating installation guide..."
151151

152152
$installRows = ($generated | Sort-Object Name | ForEach-Object {
153-
"| $($_.DisplayName) | ``copilot plugin install $($_.Name)@IntelliTect-dev`` |"
153+
"| $($_.DisplayName) | ``copilot plugin install $($_.Name)@IntelliPlugins`` |"
154154
}) -join "`n"
155155

156156
$installAllCmds = ($generated | Sort-Object Name | ForEach-Object {
157-
"copilot plugin install $($_.Name)@IntelliTect-dev"
157+
"copilot plugin install $($_.Name)@IntelliPlugins"
158158
}) -join " && \`n"
159159

160160
$configPlugins = ($generated | Sort-Object Name | ForEach-Object {
161-
" `"$($_.Name)@IntelliTect-dev`""
161+
" `"$($_.Name)@IntelliPlugins`""
162162
}) -join ",`n"
163163

164164
$installGuideLines = [System.Collections.Generic.List[string]]::new()
@@ -175,6 +175,12 @@ $installGuideLines.Add("| Plugin | Install Command |")
175175
$installGuideLines.Add("|--------|-----------------|")
176176
$installGuideLines.Add($installRows)
177177
$installGuideLines.Add("")
178+
$installGuideLines.Add("## Install from Marketplace")
179+
$installGuideLines.Add("")
180+
$installGuideLines.Add('```bash')
181+
$installGuideLines.Add("plugin marketplace add IntelliPlugins/IntelliTect-dev")
182+
$installGuideLines.Add('```')
183+
$installGuideLines.Add("")
178184
$installGuideLines.Add("## Install All Plugins")
179185
$installGuideLines.Add("")
180186
$installGuideLines.Add('```bash')

0 commit comments

Comments
 (0)