microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
hve-core-v3.3.41

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

scripts/plugins/README.md

41lines · modecode

1---
2title: Plugin Generation Scripts
3description: PowerShell tooling for generating Copilot CLI plugins from collection manifests
4---
5
6PowerShell tooling for generating Copilot CLI plugins from collection
7manifests.
8
9## Scripts
10
11| Script | npm Command | Description |
12|----------------------------|---------------------------|----------------------------------------------|
13| Generate-Plugins.ps1 | `npm run plugin:generate` | Generate plugin directories from collections |
14| Modules/PluginHelpers.psm1 | (library) | Plugin symlink, manifest, and packaging |
15
16## Prerequisites
17
18* PowerShell 7.0+
19* PowerShell-Yaml module (`Install-Module PowerShell-Yaml`)
20
21## Collection to Plugin Pipeline
22
231. Author artifacts in `.github/` (agents, prompts, skills)
242. Define collections in `collections/*.collection.yml`
253. Run `npm run plugin:generate` to produce `plugins/`
264. Commit generated `plugins/` to the repository
27
28## Refreshing Plugins After Artifact Changes
29
30```bash
31npm run plugin:generate
32```
33
34This regenerates all plugins from their collection manifests.
35
36---
37
38<!-- markdownlint-disable MD036 -->
39*🤖 Crafted with precision by ✨Copilot following brilliant human instruction,
40then carefully refined by our team of discerning human reviewers.*
41<!-- markdownlint-enable MD036 -->
42