Files
everything-claude-code/schemas/plugin.schema.json
Roei Bar Aviv 7c0bc25982 feat: add comprehensive CI/CD pipeline
Adds GitHub Actions workflows for CI, maintenance, and releases with multi-platform testing matrix.
2026-01-28 23:05:43 -08:00

14 lines
355 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Claude Plugin Configuration",
"type": "object",
"required": ["name"],
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"author": { "type": "string" },
"repository": { "type": "string" },
"license": { "type": "string" }
}
}