Why: both plugins' published descriptions named capabilities that do not exist
and omitted ones that do. `gitea` advertised wikis — no wiki skill exists and
`grep -ri wiki plugins/gitea/.apm/` is empty — while omitting gitea-branches and
gitea-files. `git` advertised pull requests, which are gitea's, while omitting
pc-author/pc-run, git-submodules and git-workflow. These are compiled into
plugin.json and both marketplace.json files, so they are published metadata, not
internal notes.
This is the same defect bb9158d fixed on `core` in August, so the fix follows
that precedent exactly: correct the package apm.yml and the root marketplace
entry together — fixing only the package manifest leaves it half-propagated,
since the root entry is what reaches the compiled marketplace.
Implementation notes:
- git 1.3.3 -> 1.3.4, gitea 1.3.4 -> 1.3.5, marketplace 0.4.2 -> 0.4.3, all
PATCH for metadata under the per_package strategy at apm.yml:76.
- Regenerated with `apm pack` for the two marketplace manifests and
`scripts/sync-plugin-content.sh --all` for the four per-plugin plugin.json
files; `apm pack` alone does not touch those. `scripts/sync-marketplace-mirror.sh`
refreshed the Copilot legacy mirror, which no apm profile targets.
- README's gitea line mirrors the new published description. The routing
boundaries in architecture.md deliberately do not, since they answer a
different question.
Impact: consumer-facing. Anyone reading the marketplace now sees what these
plugins ship. apm-pack-check-clean, check-plugin-content-sync,
check-marketplace-mirror-sync, validate-marketplace and apm-audit-ci all pass.
68 lines
2.2 KiB
JSON
68 lines
2.2 KiB
JSON
{
|
|
"name": "holocron",
|
|
"description": "AI development skills for Claude Code and GitHub Copilot CLI — factory, design, implement, review, and cross-cutting workflows.",
|
|
"version": "0.4.3",
|
|
"owner": {
|
|
"name": "Defame1297",
|
|
"email": "defame1297@rkdr.net",
|
|
"url": "https://git.dev.rkdr.net/Defame1297/"
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "kyberforge",
|
|
"description": "Skills and agents for creating, maintaining, and managing a Claude Code / Copilot CLI plugin marketplace.",
|
|
"version": "1.6.0",
|
|
"category": "Developer Tools",
|
|
"source": "./plugins/kyberforge"
|
|
},
|
|
{
|
|
"name": "bin",
|
|
"description": "A place for things to be binned",
|
|
"version": "1.1.3",
|
|
"category": "Utilities",
|
|
"source": "./plugins/bin"
|
|
},
|
|
{
|
|
"name": "git",
|
|
"description": "Skills for working with Git — conventional commits, branches, history, submodules, worktrees, remotes, and pre-commit hook authoring and running.",
|
|
"version": "1.3.4",
|
|
"category": "Version Control",
|
|
"source": "./plugins/git"
|
|
},
|
|
{
|
|
"name": "gitea",
|
|
"description": "Skills for managing Gitea repositories — issues, pull requests, labels, milestones, releases, branches, and files.",
|
|
"version": "1.3.5",
|
|
"category": "Version Control",
|
|
"source": "./plugins/gitea"
|
|
},
|
|
{
|
|
"name": "core",
|
|
"description": "Skills for authoring and auditing a repo's AGENTS.md and the provider adapter files that defer to it.",
|
|
"version": "1.1.1",
|
|
"category": "Productivity",
|
|
"source": "./plugins/core"
|
|
},
|
|
{
|
|
"name": "mattpocock-skills",
|
|
"description": "Skills for Real Engineers — planning, TDD, architecture, and debugging workflows from Matt Pocock's .claude directory.",
|
|
"version": "1.2.3",
|
|
"category": "Productivity",
|
|
"source": {
|
|
"source": "github",
|
|
"repo": "mattpocock/skills",
|
|
"ref": "v1.2.3",
|
|
"sha": "835450ef244ab7335f75d95b83e7d979eae22a6d",
|
|
"tag_pattern": "v{version}"
|
|
}
|
|
},
|
|
{
|
|
"name": "lint",
|
|
"description": "Skills and agents for configuring and running linters.",
|
|
"version": "1.1.6",
|
|
"category": "Developer Tools",
|
|
"source": "./plugins/lint"
|
|
}
|
|
]
|
|
}
|