feat: add run-verify plugin to marketplace#249
Conversation
Register pleaseai/run-verify-plugin as an external plugin — the run, verify, and run-skill-generator skills bundled with Claude Code, generalized for cross-agent use (Claude Code, Codex, Antigravity).
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughAdds a new "run-verify" plugin entry to the marketplace JSON manifest's plugins array, including its metadata and GitHub source reference, and adds a corresponding documentation subsection to README.md's Available Plugins list. ChangesRun Verify Plugin Registration
Estimated code review effort: 1 (Trivial) | ~3 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Up to standards ✅🟢 Issues
|
There was a problem hiding this comment.
Code Review
This pull request registers the new 'run-verify' plugin in the marketplace metadata and documents its installation instructions in the README. The review feedback recommends adding a missing 'homepage' field to the plugin's metadata in marketplace.json to ensure consistency with other external plugins.
|
There was a problem hiding this comment.
No issues found across 2 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
participant Claude as Claude Code Client
participant Marketplace as Marketplace Registry
participant PluginRepo as GitHub Repository
participant SDK as Plugin SDK
Note over User,SDK: External Plugin Installation Flow
User->>Claude: /plugin install run-verify@pleaseai
Claude->>Marketplace: Lookup plugin in marketplace.json
Marketplace-->>Claude: Plugin metadata (source: github, repo: pleaseai/run-verify-plugin)
Claude->>PluginRepo: Fetch plugin manifest (via GitHub API)
alt Plugin repo published & accessible
PluginRepo-->>Claude: Plugin manifest (skills, commands, lifecycle)
Claude->>SDK: Load plugin into runtime
SDK-->>Claude: Plugin loaded successfully
Claude-->>User: Plugin installed: run-verify available
else Plugin repo not yet published or inaccessible
PluginRepo-->>Claude: 404 / Access Denied
Claude-->>User: Error: Plugin source not found
end
Note over User,Claude: Usage Flow (after installation)
User->>Claude: "run the app and verify"
Claude->>SDK: Invoke run/verify/run-skill-generator skill
SDK->>PluginRepo: Fetch skill implementation
PluginRepo-->>SDK: Skill code
SDK->>SDK: Execute skill (launch app, interact, capture evidence)
SDK-->>Claude: Skill result (evidence, status)
Claude-->>User: Displays verification results
Note over User,SDK: Multi-Agent Compatibility
alt Codex CLI
User->>Claude: Same plugin, Codex manifest used
else Antigravity
User->>Claude: Same plugin, Antigravity manifest used
end



Summary
Registers run-verify — the
run,verify, andrun-skill-generatorskills bundled with Claude Code, generalized for cross-agent use (Claude Code, OpenAI Codex CLI, Google Antigravity) — as an external marketplace plugin sourced frompleaseai/run-verify-plugin.run-verifyentry to.claude-plugin/marketplace.jsonwith agithubsource (external plugin — intentionally not in the generated Codex/Cursor marketplaces, which cover local plugins only; the plugin repo ships its own.codex-plugin/.cursor-plugin/Antigravity manifests)Related issue
N/A
Checklist
bun run test) — marketplace/README only, suite passesbun run lint)BREAKING CHANGE:note is includedSummary by cubic
Registers
run-verifyas an external marketplace plugin sourced frompleaseai/run-verify-plugin. Adds README install docs; merge after the repo is public.run-verifyto.claude-plugin/marketplace.jsonwithgithubsource pointing topleaseai/run-verify-plugin./plugin install run-verify@pleaseai.Written for commit 6dd00f0. Summary will update on new commits.
Summary by CodeRabbit