Files
Samuel BertheandGitHub 31cc2b2cab feat(codex): add Codex CLI plugin manifest (#104)
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.
2026-09-07 03:38:30 +02:00

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"
}
}