Files
sanity-io__agent-toolkit/package.json
T
Jon Eide Johnsen b375c62caf feat: add OpenAI Codex plugin
Make the agent-toolkit installable as a Codex plugin under the name
`sanity` via a Codex-native marketplace, reusing the existing shared
skills and MCP server config without touching the Claude or Cursor
plugin assets.

- Add `.codex-plugin/plugin.json` manifest pointing at `./skills/` and
  `./.mcp.json`, with rich `interface` metadata (display copy, category,
  capabilities, brand color, logo, default prompts) modeled after the
  Sanity Claude connector listing.
- Add `.agents/plugins/marketplace.json` exposing a single `sanity`
  plugin entry with `policy.installation = AVAILABLE` and
  `policy.authentication = ON_INSTALL`.
- Update README with a Codex MCP install block and a Codex plugin
  install section, and mention `.agents/plugins/` and `.codex-plugin/`
  in the repo structure.
- Add `codex` to package.json keywords.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-13 10:37:34 -07:00

31 lines
1.4 KiB
JSON

{
"name": "sanity-agent-toolkit",
"version": "1.0.0",
"description": "AI agent resources for Sanity development",
"private": true,
"scripts": {
"validate": "skills-ref validate ./skills/sanity-best-practices && skills-ref validate ./skills/content-modeling-best-practices && skills-ref validate ./skills/seo-aeo-best-practices && skills-ref validate ./skills/content-experimentation-best-practices && skills-ref validate ./skills/portable-text-serialization && skills-ref validate ./skills/portable-text-conversion",
"validate:sanity": "skills-ref validate ./skills/sanity-best-practices",
"validate:content-modeling": "skills-ref validate ./skills/content-modeling-best-practices",
"validate:seo": "skills-ref validate ./skills/seo-aeo-best-practices",
"validate:experimentation": "skills-ref validate ./skills/content-experimentation-best-practices",
"validate:pt-serialization": "skills-ref validate ./skills/portable-text-serialization",
"validate:pt-conversion": "skills-ref validate ./skills/portable-text-conversion",
"validate:cursor-plugin": "node scripts/validate-cursor-plugin.mjs",
"validate:all": "npm run validate && npm run validate:cursor-plugin"
},
"devDependencies": {
"skills-ref": "0.1.5"
},
"keywords": [
"sanity",
"ai",
"agent",
"skills",
"claude",
"cursor",
"codex"
],
"license": "MIT"
}