← back to Cli Printing Press
fix(plugin): remove invalid skills field from plugin.json
b5e6f02dacf062c890cfa83dcdb7da210ba3c2a4 · 2026-03-27 15:01:05 -0700 · Trevin Chow
The skills array is not a valid manifest field — Claude Code
auto-discovers skills from the skills/ directory. Its presence
caused plugin installation to fail with a validation error.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Files touched
M .claude-plugin/plugin.json
Diff
commit b5e6f02dacf062c890cfa83dcdb7da210ba3c2a4
Author: Trevin Chow <trevin@trevinchow.com>
Date: Fri Mar 27 15:01:05 2026 -0700
fix(plugin): remove invalid skills field from plugin.json
The skills array is not a valid manifest field — Claude Code
auto-discovers skills from the skills/ directory. Its presence
caused plugin installation to fail with a validation error.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---
.claude-plugin/plugin.json | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json
index b768b986..460184b7 100644
--- a/.claude-plugin/plugin.json
+++ b/.claude-plugin/plugin.json
@@ -2,6 +2,5 @@
"name": "cli-printing-press",
"version": "0.4.0",
"description": "Generate production Go CLIs from API descriptions or OpenAPI specs",
- "repository": "mvanhorn/cli-printing-press",
- "skills": ["printing-press", "printing-press-catalog"]
+ "repository": "mvanhorn/cli-printing-press"
}
← 28036ae7 docs(readme): simplify install to just /install-skill
·
back to Cli Printing Press
·
feat(emboss): add second-pass improvement command for genera efbf4b88 →