claude-skills/c-level-advisor/.claude-plugin/plugin.json
Reza Rezvani 55e7e45512 fix(plugins): repair skills path in 35 plugin.json files (#539)
Claude Code v2.1.107+ rejects bare "skills": "./" with "Path escapes
plugin directory: ./". This blocks every plugin in the marketplace from
loading. Replace with the layout-appropriate form per the official
plugins reference:

- Single-skill plugin (SKILL.md at root):
    "skills": ["./"]                  array form (per docs example)
- Plugin with skills/ subdir:
    "skills": "./skills"              standard subdir layout
- Multi-skill domain plugin (skills are subfolders at root):
    "skills": ["./sub1", "./sub2"]    explicit list of skill dirs

The multi-skill case omits "./" from the array so the index SKILL.md
at the plugin root does not register as a skill — that would create
a redundant `marketing-skills:marketing-skills` namespace.

Verified by running `claude plugin validate` against all 35 manifests.

Closes #539
2026-05-02 21:55:58 +02:00

42 lines
1.5 KiB
JSON

{
"name": "c-level-skills",
"description": "28 C-level advisory skills: complete virtual board of directors with CEO, CTO, COO, CPO, CMO, CFO, CRO, CISO, CHRO advisors, executive mentor, founder coach, Chief of Staff router, board meetings, decision logger, board deck builder, scenario war room, competitive intel, org health diagnostic, M&A playbook, international expansion, culture architect, change management, strategic alignment, and more. Agent skill and plugin for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw.",
"version": "2.1.2",
"author": {
"name": "Alireza Rezvani",
"url": "https://alirezarezvani.com"
},
"homepage": "https://github.com/alirezarezvani/claude-skills/tree/main/c-level-advisor",
"repository": "https://github.com/alirezarezvani/claude-skills",
"license": "MIT",
"skills": [
"./agent-protocol",
"./board-deck-builder",
"./board-meeting",
"./ceo-advisor",
"./cfo-advisor",
"./change-management",
"./chief-of-staff",
"./chro-advisor",
"./ciso-advisor",
"./cmo-advisor",
"./company-os",
"./competitive-intel",
"./context-engine",
"./coo-advisor",
"./cpo-advisor",
"./cro-advisor",
"./cs-onboard",
"./cto-advisor",
"./culture-architect",
"./decision-logger",
"./executive-mentor",
"./founder-coach",
"./internal-narrative",
"./intl-expansion",
"./ma-playbook",
"./org-health-diagnostic",
"./scenario-war-room",
"./strategic-alignment"
]
}