Skip to content

chore: release main#158

Merged
amondnet merged 1 commit intomainfrom
release-please--branches--main
Apr 15, 2026
Merged

chore: release main#158
amondnet merged 1 commit intomainfrom
release-please--branches--main

Conversation

@pleaeai-bot
Copy link
Copy Markdown
Contributor

@pleaeai-bot pleaeai-bot Bot commented Apr 13, 2026

🤖 I have created a release beep boop

please-plugins: 1.3.0

1.3.0 (2026-04-13)

Features

  • please-plugins: add find-plugin skill for marketplace discovery (#156) (8dd7abb)

This PR was generated with Release Please. See documentation.


Summary by cubic

Release please-plugins v1.3.0 with a new find-plugin skill to improve marketplace discovery based on detected project dependencies. This makes it faster to find the right Claude Code plugins.

  • New Features
    • Added find-plugin skill to search the marketplace and return ranked plugin suggestions with links.

Written for commit d23cd21. Summary will update on new commits.

@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 13, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
claude-code-plugins Ready Ready Preview, Comment Apr 13, 2026 6:45am

Request Review

Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 3 files

Confidence score: 5/5

  • Automated review surfaced no issues in the provided summaries.
  • No files require special attention.
Architecture diagram
sequenceDiagram
    participant User
    participant Host as Claude Code
    participant Plugin as please-plugins
    participant FS as Local Filesystem
    participant API as Marketplace API

    Note over User, API: Marketplace Discovery Flow

    User->>Host: Request plugin recommendations
    Host->>Plugin: NEW: find-plugin()
    
    activate Plugin
    Plugin->>FS: Scan project dependencies (e.g., package.json)
    FS-->>Plugin: List of dependencies
    
    Plugin->>API: NEW: GET /search?q=[dependencies]
    activate API
    Note right of API: Filters and ranks plugins<br/>based on tech stack
    API-->>Plugin: Ranked plugin suggestions
    deactivate API
    
    Plugin->>Plugin: Format discovery results with links
    Plugin-->>Host: Return plugin recommendations
    deactivate Plugin
    
    Host-->>User: Display suggested plugins for project context
Loading

@amondnet amondnet merged commit e417557 into main Apr 15, 2026
7 checks passed
@amondnet amondnet deleted the release-please--branches--main branch April 15, 2026 00:12
@pleaeai-bot
Copy link
Copy Markdown
Contributor Author

pleaeai-bot Bot commented Apr 15, 2026

🤖 Created releases:

🌻

amondnet added a commit that referenced this pull request Apr 29, 2026
… 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.
amondnet added a commit that referenced this pull request Apr 29, 2026
#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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant