Curated skills and MCP servers for the agency's OpenCode users.
This repository contains:
- skills.json: Index of agency-approved skills
- mcp-servers.json: Index of curated MCP servers
- skills/: Directory containing SKILL.md files
This catalog is automatically fetched by Oodle AI. You don't need to manually download anything - just browse and install from within the app.
-
Create a new directory under
skills/:skills/my-new-skill/SKILL.md -
Write your SKILL.md with proper frontmatter:
--- name: my-new-skill description: Brief description of what this skill does --- ## Overview ...
-
Add an entry to
skills.json:{ "id": "my-new-skill", "name": "My New Skill", "description": "Brief description of what this skill does", "path": "skills/my-new-skill/SKILL.md", ... } -
Update
lastUpdatedinskills.json -
Commit and push to main
-
Add an entry to
mcp-servers.json:{ "id": "server-id", "name": "Server Name", "description": "What this server does", "type": "remote", "url": "https://...", ... } -
Update
lastUpdatedinmcp-servers.json -
Commit and push to main
Before pushing, validate the JSON files:
# Check JSON syntax
cat skills.json | jq .
cat mcp-servers.json | jq .See CATALOG_SCHEMA.md for detailed field descriptions.
Contact the agency dev team.