plugins marketplace
← All plugins

multi-skill-plugin

v0.1.0

Multi-skill plugin fixture for plugin-eval tests.

Codex2 skills

by Plugin EvalMIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/plugin-eval/fixtures/multi-skill-plugin/ inside the repository.

Layout

plugins/plugin-eval/fixtures/multi-skill-plugin/
├── .codex-plugin/plugin.json
├── skills/alpha/SKILL.md
└── skills/beta/SKILL.md

Skills2

alphaskills/alpha/SKILL.md

Alpha fixture skill. Use when plugin-eval tests need one of two bundled skills.

betaskills/beta/SKILL.md

Beta fixture skill. Use when plugin-eval tests need the second bundled skill.

Manifests1

plugins/plugin-eval/fixtures/multi-skill-plugin/.codex-plugin/plugin.json
{
  "name": "multi-skill-plugin",
  "version": "0.1.0",
  "description": "Multi-skill plugin fixture for plugin-eval tests.",
  "author": {
    "name": "Plugin Eval",
    "email": "support@example.com",
    "url": "https://example.com/"
  },
  "homepage": "https://example.com/",
  "repository": "https://example.com/repo",
  "license": "MIT",
  "keywords": [
    "fixture",
    "plugin-eval",
    "multi-skill"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Multi Skill Plugin",
    "shortDescription": "Plugin fixture with two skills",
    "longDescription": "A plugin fixture that exposes two skills so nested skill findings can be aggregated.",
    "developerName": "Plugin Eval",
    "category": "Developer Tools",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://example.com/",
    "privacyPolicyURL": "https://example.com/privacy",
    "termsOfServiceURL": "https://example.com/terms",
    "defaultPrompt": [
      "Evaluate the multi-skill plugin fixture.",
      "Compare both skills in this fixture."
    ],
    "brandColor": "#0F766E",
    "composerIcon": "./assets/multi.svg",
    "logo": "./assets/multi.svg",
    "screenshots": []
  }
}