Add plugin marketplace manifest

Makes the repo installable as a Claude Code plugin, which is how cloud
sessions and claude.ai account marketplaces can load the skills. The
plugin scans skills/ by default, so new skills need no entry here.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011UVWmadwjjejUM44xxB9Ti
This commit is contained in:
Matthew Blode
2026-09-04 12:45:08 +10:00
parent 5386e6082c
commit 896e7b1470
2 changed files with 28 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"$schema": "https://code.claude.com/schemas/marketplace.json",
"name": "mblode-agent-skills",
"owner": {
"name": "Matthew Blode",
"url": "https://github.com/mblode"
},
"description": "UI audits, typography, docs, PR review, and releases, loaded on demand by your coding agent",
"plugins": [
{
"name": "agent-skills",
"source": "./",
"description": "Skills for the parts of shipping that code review never covers: the loading states, the type scale, and whether half the diff is AI slop.",
"homepage": "https://www.skills.sh/mblode/agent-skills",
"repository": "https://github.com/mblode/agent-skills",
"license": "MIT",
"author": { "name": "Matthew Blode" }
}
]
}
+8
View File
@@ -0,0 +1,8 @@
{
"name": "agent-skills",
"version": "1.0.0",
"description": "Skills for the parts of shipping that code review never covers: the loading states, the type scale, and whether half the diff is AI slop.",
"repository": "https://github.com/mblode/agent-skills",
"license": "MIT",
"keywords": ["skills", "design", "frontend", "ui", "review", "docs"]
}