From 6a5deef428232310ebe3c61456c64e790c7fb1e9 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Wed, 29 Apr 2026 12:20:46 +0900 Subject: [PATCH 1/3] fix(mastra): move use-mastra skill to skills/ per repo convention The hand-written use-mastra skill was added at .agents/skills/use-mastra/ in #161, but .agents/skills/ is reserved for vendor-managed skills.sh output tracked in skills-lock.json (see CLAUDE.md). Move it to the default skills/ location and switch the plugin.json skills field to array form ["./skills/", "./.agents/skills/"] so both paths load. No skill content changed. Refs #161 --- plugins/mastra/.claude-plugin/plugin.json | 4 ++-- plugins/mastra/CHANGELOG.md | 7 +++++++ plugins/mastra/{.agents => }/skills/use-mastra/SKILL.md | 0 .../skills/use-mastra/references/agents-and-workflows.md | 0 .../skills/use-mastra/references/common-errors.md | 0 .../{.agents => }/skills/use-mastra/references/packages.md | 0 6 files changed, 9 insertions(+), 2 deletions(-) rename plugins/mastra/{.agents => }/skills/use-mastra/SKILL.md (100%) rename plugins/mastra/{.agents => }/skills/use-mastra/references/agents-and-workflows.md (100%) rename plugins/mastra/{.agents => }/skills/use-mastra/references/common-errors.md (100%) rename plugins/mastra/{.agents => }/skills/use-mastra/references/packages.md (100%) diff --git a/plugins/mastra/.claude-plugin/plugin.json b/plugins/mastra/.claude-plugin/plugin.json index b4736196..f337f2fd 100644 --- a/plugins/mastra/.claude-plugin/plugin.json +++ b/plugins/mastra/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "mastra", - "version": "1.3.0", + "version": "1.3.1", "description": "Official agent skills for coding agents working with the Mastra AI framework", "author": { "name": "Mastra AI", @@ -24,5 +24,5 @@ ] } }, - "skills": "./.agents/skills/" + "skills": ["./skills/", "./.agents/skills/"] } diff --git a/plugins/mastra/CHANGELOG.md b/plugins/mastra/CHANGELOG.md index c12a9eea..77f8d601 100644 --- a/plugins/mastra/CHANGELOG.md +++ b/plugins/mastra/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.3.1] - 2026-04-29 + + +### Bug Fixes + +* **mastra:** move hand-written `use-mastra` skill from `.agents/skills/` to `skills/` per repo convention. `.agents/skills/` is reserved for vendor-managed skills.sh-installed skills tracked in `skills-lock.json`. The `skills` field in `plugin.json` now uses array form `["./skills/", "./.agents/skills/"]` so both default and vendor paths load. No skill content changed. + ## [1.3.0](https://github.com/pleaseai/claude-code-plugins/compare/mastra-v1.2.0...mastra-v1.3.0) (2026-04-23) diff --git a/plugins/mastra/.agents/skills/use-mastra/SKILL.md b/plugins/mastra/skills/use-mastra/SKILL.md similarity index 100% rename from plugins/mastra/.agents/skills/use-mastra/SKILL.md rename to plugins/mastra/skills/use-mastra/SKILL.md diff --git a/plugins/mastra/.agents/skills/use-mastra/references/agents-and-workflows.md b/plugins/mastra/skills/use-mastra/references/agents-and-workflows.md similarity index 100% rename from plugins/mastra/.agents/skills/use-mastra/references/agents-and-workflows.md rename to plugins/mastra/skills/use-mastra/references/agents-and-workflows.md diff --git a/plugins/mastra/.agents/skills/use-mastra/references/common-errors.md b/plugins/mastra/skills/use-mastra/references/common-errors.md similarity index 100% rename from plugins/mastra/.agents/skills/use-mastra/references/common-errors.md rename to plugins/mastra/skills/use-mastra/references/common-errors.md diff --git a/plugins/mastra/.agents/skills/use-mastra/references/packages.md b/plugins/mastra/skills/use-mastra/references/packages.md similarity index 100% rename from plugins/mastra/.agents/skills/use-mastra/references/packages.md rename to plugins/mastra/skills/use-mastra/references/packages.md From 6bc2d5c5bcccc2ef52e830ae7437d9687ef17148 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Wed, 29 Apr 2026 12:20:57 +0900 Subject: [PATCH 2/3] fix(better-auth): move use-better-auth skill to skills/ per repo convention The hand-written use-better-auth skill was added at .agents/skills/use-better-auth/ in #159, but .agents/skills/ is reserved for vendor-managed skills.sh output tracked in skills-lock.json (see CLAUDE.md). Move it to the default skills/ location and switch the plugin.json skills field to array form ["./skills/", "./.agents/skills/"] so both paths load. No skill content changed. Refs #159 --- plugins/better-auth/.claude-plugin/plugin.json | 4 ++-- plugins/better-auth/CHANGELOG.md | 7 +++++++ .../{.agents => }/skills/use-better-auth/SKILL.md | 0 .../skills/use-better-auth/references/adapters.md | 0 .../skills/use-better-auth/references/common-errors.md | 0 .../skills/use-better-auth/references/databases.md | 0 .../skills/use-better-auth/references/plugins.md | 0 7 files changed, 9 insertions(+), 2 deletions(-) rename plugins/better-auth/{.agents => }/skills/use-better-auth/SKILL.md (100%) rename plugins/better-auth/{.agents => }/skills/use-better-auth/references/adapters.md (100%) rename plugins/better-auth/{.agents => }/skills/use-better-auth/references/common-errors.md (100%) rename plugins/better-auth/{.agents => }/skills/use-better-auth/references/databases.md (100%) rename plugins/better-auth/{.agents => }/skills/use-better-auth/references/plugins.md (100%) diff --git a/plugins/better-auth/.claude-plugin/plugin.json b/plugins/better-auth/.claude-plugin/plugin.json index 0a386f1d..d534bd3d 100644 --- a/plugins/better-auth/.claude-plugin/plugin.json +++ b/plugins/better-auth/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "better-auth", - "version": "1.2.0", + "version": "1.2.1", "description": "Better Auth authentication framework skills for JavaScript/TypeScript projects", "author": { "name": "Better Auth", @@ -14,5 +14,5 @@ "auth", "typescript" ], - "skills": "./.agents/skills/" + "skills": ["./skills/", "./.agents/skills/"] } diff --git a/plugins/better-auth/CHANGELOG.md b/plugins/better-auth/CHANGELOG.md index 4bf2b228..d70eecc8 100644 --- a/plugins/better-auth/CHANGELOG.md +++ b/plugins/better-auth/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.1] - 2026-04-29 + + +### Bug Fixes + +* **better-auth:** move hand-written `use-better-auth` skill from `.agents/skills/` to `skills/` per repo convention. `.agents/skills/` is reserved for vendor-managed skills.sh-installed skills tracked in `skills-lock.json`. The `skills` field in `plugin.json` now uses array form `["./skills/", "./.agents/skills/"]` so both default and vendor paths load. No skill content changed. + ## [1.2.0](https://github.com/pleaseai/claude-code-plugins/compare/better-auth-v1.1.0...better-auth-v1.2.0) (2026-04-23) diff --git a/plugins/better-auth/.agents/skills/use-better-auth/SKILL.md b/plugins/better-auth/skills/use-better-auth/SKILL.md similarity index 100% rename from plugins/better-auth/.agents/skills/use-better-auth/SKILL.md rename to plugins/better-auth/skills/use-better-auth/SKILL.md diff --git a/plugins/better-auth/.agents/skills/use-better-auth/references/adapters.md b/plugins/better-auth/skills/use-better-auth/references/adapters.md similarity index 100% rename from plugins/better-auth/.agents/skills/use-better-auth/references/adapters.md rename to plugins/better-auth/skills/use-better-auth/references/adapters.md diff --git a/plugins/better-auth/.agents/skills/use-better-auth/references/common-errors.md b/plugins/better-auth/skills/use-better-auth/references/common-errors.md similarity index 100% rename from plugins/better-auth/.agents/skills/use-better-auth/references/common-errors.md rename to plugins/better-auth/skills/use-better-auth/references/common-errors.md diff --git a/plugins/better-auth/.agents/skills/use-better-auth/references/databases.md b/plugins/better-auth/skills/use-better-auth/references/databases.md similarity index 100% rename from plugins/better-auth/.agents/skills/use-better-auth/references/databases.md rename to plugins/better-auth/skills/use-better-auth/references/databases.md diff --git a/plugins/better-auth/.agents/skills/use-better-auth/references/plugins.md b/plugins/better-auth/skills/use-better-auth/references/plugins.md similarity index 100% rename from plugins/better-auth/.agents/skills/use-better-auth/references/plugins.md rename to plugins/better-auth/skills/use-better-auth/references/plugins.md From fc14f9e53bea0897a44bef31c6039747c6f550fe Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Wed, 29 Apr 2026 14:08:49 +0900 Subject: [PATCH 3/3] chore: revert manual CHANGELOG and version bumps (release-please owns them) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both CHANGELOG.md and plugin.json version are auto-managed by release-please for plugins/* (see release-please-config.json extra-files: [{ jsonpath: "$.version" }] and existing release PRs #158/#160/#163). Manual edits race with the next release PR. Skill relocations and the plugin.json `skills` array change remain intact — they're the actual fix release-please will pick up via the fix(...) commits already on this branch. --- plugins/better-auth/.claude-plugin/plugin.json | 2 +- plugins/better-auth/CHANGELOG.md | 7 ------- plugins/mastra/.claude-plugin/plugin.json | 2 +- plugins/mastra/CHANGELOG.md | 7 ------- 4 files changed, 2 insertions(+), 16 deletions(-) diff --git a/plugins/better-auth/.claude-plugin/plugin.json b/plugins/better-auth/.claude-plugin/plugin.json index d534bd3d..d8e348e8 100644 --- a/plugins/better-auth/.claude-plugin/plugin.json +++ b/plugins/better-auth/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "better-auth", - "version": "1.2.1", + "version": "1.2.0", "description": "Better Auth authentication framework skills for JavaScript/TypeScript projects", "author": { "name": "Better Auth", diff --git a/plugins/better-auth/CHANGELOG.md b/plugins/better-auth/CHANGELOG.md index d70eecc8..4bf2b228 100644 --- a/plugins/better-auth/CHANGELOG.md +++ b/plugins/better-auth/CHANGELOG.md @@ -1,12 +1,5 @@ # Changelog -## [1.2.1] - 2026-04-29 - - -### Bug Fixes - -* **better-auth:** move hand-written `use-better-auth` skill from `.agents/skills/` to `skills/` per repo convention. `.agents/skills/` is reserved for vendor-managed skills.sh-installed skills tracked in `skills-lock.json`. The `skills` field in `plugin.json` now uses array form `["./skills/", "./.agents/skills/"]` so both default and vendor paths load. No skill content changed. - ## [1.2.0](https://github.com/pleaseai/claude-code-plugins/compare/better-auth-v1.1.0...better-auth-v1.2.0) (2026-04-23) diff --git a/plugins/mastra/.claude-plugin/plugin.json b/plugins/mastra/.claude-plugin/plugin.json index f337f2fd..2519b17d 100644 --- a/plugins/mastra/.claude-plugin/plugin.json +++ b/plugins/mastra/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "mastra", - "version": "1.3.1", + "version": "1.3.0", "description": "Official agent skills for coding agents working with the Mastra AI framework", "author": { "name": "Mastra AI", diff --git a/plugins/mastra/CHANGELOG.md b/plugins/mastra/CHANGELOG.md index 77f8d601..c12a9eea 100644 --- a/plugins/mastra/CHANGELOG.md +++ b/plugins/mastra/CHANGELOG.md @@ -1,12 +1,5 @@ # Changelog -## [1.3.1] - 2026-04-29 - - -### Bug Fixes - -* **mastra:** move hand-written `use-mastra` skill from `.agents/skills/` to `skills/` per repo convention. `.agents/skills/` is reserved for vendor-managed skills.sh-installed skills tracked in `skills-lock.json`. The `skills` field in `plugin.json` now uses array form `["./skills/", "./.agents/skills/"]` so both default and vendor paths load. No skill content changed. - ## [1.3.0](https://github.com/pleaseai/claude-code-plugins/compare/mastra-v1.2.0...mastra-v1.3.0) (2026-04-23)