Skip to content

chore: release main#115

Merged
amondnet merged 1 commit intomainfrom
release-please--branches--main
Mar 28, 2026
Merged

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

Conversation

@pleaeai-bot
Copy link
Copy Markdown
Contributor

@pleaeai-bot pleaeai-bot Bot commented Mar 27, 2026

🤖 I have created a release beep boop

web: 1.4.1

1.4.1 (2026-03-27)

Bug Fixes

  • web: add url and npm plugin source types to marketplace schema (#114) (9e9d0df)

This PR was generated with Release Please. See documentation.


Summary by cubic

Release web 1.4.1 adds url and npm plugin source types to the marketplace schema, fixing plugin validation and enabling marketplace entries from URLs and npm.

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

@vercel
Copy link
Copy Markdown

vercel Bot commented Mar 27, 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 Mar 27, 2026 2:48pm

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 as User / Developer
    participant App as Web Application (apps/web)
    participant Schema as Marketplace Schema
    participant NPM as NPM Registry
    participant Remote as External URL

    Note over App,Schema: Plugin Discovery & Validation Flow

    User->>App: Browse Marketplace
    App->>App: Fetch plugin manifest list
    
    loop For each plugin entry
        App->>Schema: Validate entry metadata
        Note right of Schema: NEW: Supports "url" and "npm" source types
        Schema-->>App: Validated metadata
        
        alt Source Type is "npm"
            App->>NPM: Resolve package metadata
            NPM-->>App: Tarball / Version info
        else Source Type is "url"
            App->>Remote: Fetch plugin assets
            Remote-->>App: Plugin Bundle
        else Source Type is "local" (unchanged)
            App->>App: Load from internal path
        end
    end

    App-->>User: Display available plugins (NPM, URL, or Local)
Loading

@amondnet amondnet merged commit f9c837c into main Mar 28, 2026
7 checks passed
@amondnet amondnet deleted the release-please--branches--main branch March 28, 2026 13:23
@pleaeai-bot
Copy link
Copy Markdown
Contributor Author

pleaeai-bot Bot commented Mar 28, 2026

🤖 Created releases:

🌻

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