Skip to content
Draft
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
3 changes: 2 additions & 1 deletion .github/workflows/deploy-registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ on:
# Matches release/<namespace>/<resource_name>/<semantic_version>
# (e.g., "release/whizus/exoscale-zone/v1.0.13")
- "release/*/*/v*.*.*"
branches: # Templates get released when merged to main
branches: # Templates and skills get released when merged to main
- main
paths:
- ".github/workflows/deploy-registry.yaml"
- "registry/**/templates/**"
- "registry/**/skills/**"
- "registry/**/README.md"
- ".icons/**"

Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ jobs:
echo "namespace=$NAMESPACE" >> $GITHUB_OUTPUT
echo "module=$MODULE" >> $GITHUB_OUTPUT
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "module_path=registry/$NAMESPACE/modules/$MODULE" >> $GITHUB_OUTPUT

# Determine whether this tag is for a module or a skill.
if [ -d "registry/$NAMESPACE/skills/$MODULE" ]; then
echo "module_path=registry/$NAMESPACE/skills/$MODULE" >> $GITHUB_OUTPUT
else
echo "module_path=registry/$NAMESPACE/modules/$MODULE" >> $GITHUB_OUTPUT
fi

RELEASE_TITLE="$NAMESPACE/$MODULE $VERSION"
echo "release_title=$RELEASE_TITLE" >> $GITHUB_OUTPUT
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/version-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
types: [labeled]
paths:
- "registry/**/modules/**"
- "registry/**/skills/**"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion cmd/readmevalidation/repostructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"golang.org/x/xerrors"
)

var supportedUserNameSpaceDirectories = append(supportedResourceTypes, ".images")
var supportedUserNameSpaceDirectories = append(supportedResourceTypes, ".images", "skills")

// validNameRe validates that names contain only alphanumeric characters and hyphens
var validNameRe = regexp.MustCompile(`^[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$`)
Expand Down
1 change: 1 addition & 0 deletions registry/DevelopmentCats/.images/avatar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions registry/DevelopmentCats/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
display_name: DevCats
bio: Test namespace for skills registry integration
avatar: ./.images/avatar.svg
status: community
---
19 changes: 19 additions & 0 deletions registry/DevelopmentCats/skills/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
icon: ../../../.icons/coder.svg
sources:
- repo: DevelopmentCats/skills@main
skills:
code-review:
display_name: Code Review
icon: ../../../.icons/claude.svg
tags: [code-review, quality]
git-workflow:
display_name: Git Workflow
icon: ../../../.icons/docker.svg
tags: [git, workflow]
---

# DevCats Skills

Test skills from [DevelopmentCats/skills](https://github.com/DevelopmentCats/skills)
for validating the registry's external source repo support.
42 changes: 42 additions & 0 deletions registry/coder/skills/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
icon: ../../../.icons/coder.svg
sources:
- repo: coder/skills@main
skills:
setup:
display_name: Setup & Configuration
icon: ../../../.icons/coder.svg
tags: [coder, deployment, configuration]
---

# Coder Skills

Agent skills maintained by [Coder](https://coder.com) for installing,
configuring, and developing with the Coder platform.

Skills are sourced from [coder/skills](https://github.com/coder/skills)
and served through the registry's API, MCP tools, and
[well-known discovery endpoint](https://agentskills.io/specification).

## Install

Install directly from the source repo:

```bash
# Install a specific skill
npx skills add coder/skills@setup

# Install all Coder skills
npx skills add coder/skills
```

Or install from the registry:

```bash
npx skills add https://registry.coder.com
```

## Available Skills

Skills are discovered automatically from the source repo at build time.
Browse the full list at [registry.coder.com/skills](https://registry.coder.com/skills).
Loading