chore: add Claude Code marketplace manifest for 0.5.4#9
Open
StefanoGuerrini wants to merge 1 commit into
Open
Conversation
506a6bc to
7b785bb
Compare
7b785bb to
8bcdc54
Compare
Adds `.claude-plugin/marketplace.json` so the repo is installable as a Claude Code plugin marketplace. Without this file, the existing `.claude-plugin/plugin.json` is invisible to `/plugin install` flows; users get "Marketplace not found" errors when trying to install the plugin. Also aligns `.claude-plugin/plugin.json` `version` field with the rest of the repo. The plugin manifest had been stuck at 0.4.0 since the 0.4.0 release even though `package.json` and `memory/pam.version.json` bumped through 0.5.0, 0.5.1, 0.5.2, and 0.5.3. After 0.5.4 lands: /plugin marketplace add github:NestDevLab/portable-agent-memory /plugin install pam@portable-agent-memory Bumps `package.json`, `memory/pam.version.json`, and `.claude-plugin/plugin.json` to 0.5.4; adds `claudeMarketplaceManifest` feature flag and the required `migrations/0.5.3-to-0.5.4-marketplace-manifest.md` migration guide so `migrations:check` stays clean. Rebased twice as main absorbed the LLM-retrieval-benchmark (0.5.1), benchmark-threshold-gate (0.5.2), and tight-benchmark-regression-gate (0.5.3) patch slots in succession.
8bcdc54 to
3ff73c5
Compare
There was a problem hiding this comment.
Pull request overview
This PR updates PAM’s release metadata to 0.5.4 and adds the missing Claude Code marketplace manifest so the repository can be added as a plugin marketplace and the existing pam plugin becomes discoverable/installable via /plugin install.
Changes:
- Adds
.claude-plugin/marketplace.jsondefining a marketplace that exposes thepamplugin withsource: "./". - Aligns version surfaces to
0.5.4acrosspackage.json,memory/pam.version.json, and.claude-plugin/plugin.json, and records the newclaudeMarketplaceManifestfeature flag. - Adds a contiguous migration doc (
0.5.3 -> 0.5.4) and aCHANGELOG.mdentry for 0.5.4.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Bumps npm package version to 0.5.4 (used by tooling/server version reporting). |
| memory/pam.version.json | Bumps PAM version to 0.5.4 and adds features.claudeMarketplaceManifest. |
| .claude-plugin/plugin.json | Updates Claude Code plugin manifest version to 0.5.4 to match repo versioning. |
| .claude-plugin/marketplace.json | Adds Claude Code marketplace manifest so /plugin marketplace add can discover/install pam. |
| migrations/0.5.3-to-0.5.4-marketplace-manifest.md | Documents the 0.5.3→0.5.4 migration to satisfy contiguous migration enforcement. |
| CHANGELOG.md | Adds 0.5.4 release notes describing the marketplace manifest + version alignment. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
.claude-plugin/marketplace.jsonso the repo is installable as a Claude Code plugin marketplace. Without this file, the existing.claude-plugin/plugin.jsonis invisible to/plugin installflows; users get "Marketplace not found" errors. Discovered while migrating a developer's Claude Code setup to the merged 0.4.0 plugin after PR #5.Also aligns
.claude-plugin/plugin.jsonversionfield with the rest of the repo. The plugin manifest had been stuck at0.4.0since the 0.4.0 release even thoughpackage.jsonandmemory/pam.version.jsonbumped through 0.5.0, 0.5.1, 0.5.2, and 0.5.3.Rebased twice as main absorbed the LLM-retrieval-benchmark (0.5.1), benchmark-threshold-gate (0.5.2), and tight-benchmark-regression-gate (0.5.3) patch slots in succession.
What lands
.claude-plugin/marketplace.jsonlisting the singlepamplugin with"source": "./"so Claude Code discovers the existing root-level plugin manifest..claude-plugin/plugin.jsonversion 0.4.0 -> 0.5.4 (drift fix).package.jsonandmemory/pam.version.json;claudeMarketplaceManifestfeature flag.migrations/0.5.3-to-0.5.4-marketplace-manifest.mdto satisfy themigrations:checkcontiguous chain enforcement.Install (after merge)
Test plan
npm test(75/75 pass)npm run migrations:check(OK for PAM 0.5.4)marketplace.jsonschema matches what current Claude Code versions expect/plugin install pam@portable-agent-memoryworks against this branch locally