feat(plugins): scaffold git, gitea, and core plugins

Adds three new plugins to the holocron marketplace:
- git: 4 stub skills (git-commit, git-branch, git-pr, git-flow)
- gitea: 5 stub skills (gitea-issues, gitea-prs, gitea-milestones, gitea-releases, gitea-wiki)
- core: 5 stub skills (triage, diagnose, zoom-out, caveman, improve-codebase-architecture)

All plugins follow version-parity convention (ADR-0016). Skills are
placeholder stubs — content will be authored in a future workstream.
Registered in both marketplace.json paths.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-28 14:49:54 +00:00
parent ef8818d94f
commit 1979ff5399
22 changed files with 292 additions and 0 deletions

22
plugins/git/plugin.json Normal file
View File

@@ -0,0 +1,22 @@
{
"agents": "agents/",
"author": {
"email": "defame1297@rkdr.net",
"name": "Defame1297"
},
"description": "Skills for working with Git \u2014 conventional commits, branch management, pull requests, and feature flow.",
"hooks": "hooks.json",
"keywords": [
"git",
"vcs",
"commit",
"branch"
],
"license": "MIT",
"mcpServers": ".mcp.json",
"name": "git",
"skills": [
"skills/"
],
"version": "1.0.0"
}