mirror of
https://github.com/samber/cc-skills-golang.git
synced 2026-09-11 19:46:44 +03:00
Ship a first-class OpenAI Codex plugin entry point. Mirrors the existing Claude Code and Cursor plugin manifests and reuses the shared ./skills/ directory - no skill duplication. Manifest declares the spec-required interface block (displayName, developerName, category, capabilities, logo, logoDark) and points skills at the existing skills/ tree. The logo pair (Go cyan on light, slate on dark) is a placeholder; the design is intentionally neutral so a real brand mark can drop in without rework. Version pins to 2.0.1 to match .claude-plugin/, .cursor-plugin/ and gemini-extension.json - all four must stay in lockstep per CLAUDE.md Plugin Configuration.
36 lines
921 B
JSON
36 lines
921 B
JSON
{
|
|
"name": "cc-skills-golang",
|
|
"version": "2.0.1",
|
|
"description": "AI Agent Skills for production-ready Go projects",
|
|
"author": {
|
|
"name": "Samuel Berthe",
|
|
"email": "hey@samuel-berthe.fr"
|
|
},
|
|
"homepage": "https://github.com/samber/cc-skills-golang",
|
|
"repository": "https://github.com/samber/cc-skills-golang",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"plugin",
|
|
"go",
|
|
"golang",
|
|
"ai-agent",
|
|
"skills",
|
|
"agentic",
|
|
"engineering",
|
|
"developer",
|
|
"coding",
|
|
"productivity"
|
|
],
|
|
"skills": "./skills/",
|
|
"interface": {
|
|
"displayName": "Skills for Golang",
|
|
"shortDescription": "AI agent skills for production-ready Go projects",
|
|
"developerName": "Samuel Berthe",
|
|
"category": "Developer",
|
|
"capabilities": ["Read"],
|
|
"websiteURL": "https://github.com/samber/cc-skills-golang",
|
|
"logo": "./assets/logo.png",
|
|
"logoDark": "./assets/logo-dark.png"
|
|
}
|
|
}
|