From a41d9f5f4fdfd647ab30068a4d3f8d9a48cddff2 Mon Sep 17 00:00:00 2001 From: DevCats Date: Tue, 26 May 2026 14:24:56 +0000 Subject: [PATCH] feat: register modules and templates skills Adds two new entries to the Coder namespace skills catalogue: - coder/modules with the coder-modules.svg icon - coder/templates with the coder-templates.svg icon Both pull from coder/skills@main alongside the existing setup skill. Tags are scoped to [coder, terraform, modules] and [coder, terraform, templates] so the registry-server filter facets pick them up. Validator (cmd/readmevalidation) confirms the catalogue file still parses and that the icons resolve. Source repo content lands in coder/skills PR #2; until that merges, the catalogue declarations are effectively no-ops because the build pipeline only emits skills it discovers in the source repo. --- registry/coder/skills/README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/registry/coder/skills/README.md b/registry/coder/skills/README.md index 9bcb61882..2eb7e07ff 100644 --- a/registry/coder/skills/README.md +++ b/registry/coder/skills/README.md @@ -7,6 +7,14 @@ sources: display_name: Coder Setup icon: ../../../.icons/coder.svg tags: [coder, deployment, configuration] + modules: + display_name: Coder Modules + icon: ../../../.icons/coder-modules.svg + tags: [coder, terraform, modules] + templates: + display_name: Coder Templates + icon: ../../../.icons/coder-templates.svg + tags: [coder, terraform, templates] --- # Coder Skills @@ -20,6 +28,8 @@ and served through the registry's API, MCP tools, and ## Available Skills -| Skill | Description | -| ------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Coder Setup](https://registry.coder.com/skills/coder/setup) | Install, deploy, or bootstrap a new Coder deployment end-to-end. Covers Docker, Kubernetes/Helm, VM, cloud, HTTPS/domain setup, first admin creation, starter templates, and first workspace. | +| Skill | Description | +| -------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Coder Setup](https://registry.coder.com/skills/coder/setup) | Install, deploy, or bootstrap a new Coder deployment end-to-end. Covers Docker, Kubernetes/Helm, VM, cloud, HTTPS/domain setup, first admin creation, starter templates, and first workspace. | +| [Coder Modules](https://registry.coder.com/skills/coder/modules) | Add or update Coder modules (from registry.coder.com/modules) inside an existing Coder template. Covers IDEs, AI agents, secrets, dev environment tools, and cloud regions. | +| [Coder Templates](https://registry.coder.com/skills/coder/templates) | Author, edit, push, or version a Coder template. Covers starter selection, template anatomy, parameters, validation, push, and first-workspace verification. |