Skip to content

Commit ae33182

Browse files
authored
fix(plugins): move hand-written skills from .agents/skills/ to skills/ (#164)
* 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 * 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 * chore: revert manual CHANGELOG and version bumps (release-please owns them) 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.
1 parent 8b9c2cc commit ae33182

11 files changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/better-auth/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
"auth",
1515
"typescript"
1616
],
17-
"skills": "./.agents/skills/"
17+
"skills": ["./skills/", "./.agents/skills/"]
1818
}

plugins/better-auth/.agents/skills/use-better-auth/SKILL.md renamed to plugins/better-auth/skills/use-better-auth/SKILL.md

File renamed without changes.

plugins/better-auth/.agents/skills/use-better-auth/references/adapters.md renamed to plugins/better-auth/skills/use-better-auth/references/adapters.md

File renamed without changes.

plugins/better-auth/.agents/skills/use-better-auth/references/common-errors.md renamed to plugins/better-auth/skills/use-better-auth/references/common-errors.md

File renamed without changes.

plugins/better-auth/.agents/skills/use-better-auth/references/databases.md renamed to plugins/better-auth/skills/use-better-auth/references/databases.md

File renamed without changes.

plugins/better-auth/.agents/skills/use-better-auth/references/plugins.md renamed to plugins/better-auth/skills/use-better-auth/references/plugins.md

File renamed without changes.

plugins/mastra/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
]
2525
}
2626
},
27-
"skills": "./.agents/skills/"
27+
"skills": ["./skills/", "./.agents/skills/"]
2828
}
File renamed without changes.

plugins/mastra/.agents/skills/use-mastra/references/agents-and-workflows.md renamed to plugins/mastra/skills/use-mastra/references/agents-and-workflows.md

File renamed without changes.

plugins/mastra/.agents/skills/use-mastra/references/common-errors.md renamed to plugins/mastra/skills/use-mastra/references/common-errors.md

File renamed without changes.

0 commit comments

Comments
 (0)