Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "devantler-copilot-plugins",
"name": "devantler-plugins",
"metadata": {
"description": "Curated agent skills bundled by category from devantler-tech/skills",
"version": "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion .github/plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "devantler-copilot-plugins",
"name": "devantler-plugins",
"metadata": {
"description": "Curated agent skills bundled by category from devantler-tech/skills",
"version": "1.0.0"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# devantler-tech/copilot-plugins
# devantler-tech/plugins

A [copilot-plugin marketplace](https://code.visualstudio.com/docs/copilot/customization/agent-plugins) that bundles the curated agent skills from [`devantler-tech/skills`](https://github.com/devantler-tech/skills) into category-based plugins.
A tool-neutral [agent-plugin marketplace](https://code.visualstudio.com/docs/copilot/customization/agent-plugins) that bundles the curated agent skills from [`devantler-tech/skills`](https://github.com/devantler-tech/skills) into category-based plugins.

Supports **VS Code**, **GitHub Copilot CLI**, and **Claude Code** via dual marketplace manifests.

Expand All @@ -24,7 +24,7 @@ Add the marketplace to your settings:
```jsonc
// settings.json
"chat.plugins.marketplaces": [
"devantler-tech/copilot-plugins"
"devantler-tech/plugins"
]
```

Expand All @@ -34,10 +34,10 @@ Then browse **Extensions β†’ Agent Plugins** (`@agentPlugins` search) to install

```sh
# Browse available plugins
copilot plugin marketplace browse devantler-tech/copilot-plugins
copilot plugin marketplace browse devantler-tech/plugins

# Install a plugin
copilot plugin install gitops-kubernetes@devantler-copilot-plugins
copilot plugin install gitops-kubernetes@devantler-plugins
```

### Claude Code
Expand All @@ -46,7 +46,7 @@ The repo includes a `.claude-plugin/marketplace.json` for automatic discovery.

## How it works

Skills are installed from their upstream repositories using [`gh skill install`](https://github.blog/changelog/2026-04-16-manage-agent-skills-with-github-cli/). A [daily update workflow](.github/workflows/sync-skills.yaml) runs [`gh skill update --all`](https://github.com/devantler-tech/actions/tree/main/update-copilot-skills) via the [`update-copilot-skills`](https://github.com/devantler-tech/reusable-workflows/blob/main/.github/workflows/update-copilot-skills.yaml) reusable workflow and opens a PR when upstream content has drifted.
Skills are installed from their upstream repositories using [`gh skill install`](https://github.blog/changelog/2026-04-16-manage-agent-skills-with-github-cli/). A [daily update workflow](.github/workflows/update-copilot-skills.yaml) runs [`gh skill update --all`](https://github.com/devantler-tech/actions/tree/main/update-copilot-skills) via the [`update-copilot-skills`](https://github.com/devantler-tech/reusable-workflows/blob/main/.github/workflows/update-copilot-skills.yaml) reusable workflow and opens a PR when upstream content has drifted.

Each plugin directory is self-contained with a `plugin.json` manifest and a `skills/` subdirectory holding the installed `SKILL.md` files (plus any supporting assets). Each `SKILL.md` contains `metadata.github-*` frontmatter for upstream provenance β€” no lockfile needed.

Expand Down