Copilot/update dependency versions#4
Conversation
Co-authored-by: dofaromg <217537952+dofaromg@users.noreply.github.com>
Co-authored-by: dofaromg <217537952+dofaromg@users.noreply.github.com>
…instructions Co-authored-by: dofaromg <217537952+dofaromg@users.noreply.github.com>
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (4)
📝 WalkthroughWalkthroughThis PR adds a new "webpage-snapshot" plugin to the marketplace, registering it in marketplace.json and introducing a plugin manifest, README documentation, and a command specification file that outlines Playwright-based screenshot capture workflow. ChangesWebpage Snapshot Plugin
Estimated code review effort: 1 (Trivial) | ~5 minutes Poem
Comment |
There was a problem hiding this comment.
Pull request overview
Adds a new “webpage-snapshot” marketplace plugin that provides a /webpage-snapshot command and accompanying plugin metadata/docs, and registers it in the bundled .claude-plugin/marketplace.json.
Changes:
- Introduces the
webpage-snapshotplugin scaffold (manifest + command + README). - Registers the new plugin in the Claude Code plugins marketplace bundle.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| plugins/webpage-snapshot/README.md | Adds end-user documentation for the new screenshot command. |
| plugins/webpage-snapshot/commands/webpage-snapshot.md | Defines the slash command behavior and tool permissions for taking webpage screenshots. |
| plugins/webpage-snapshot/.claude-plugin/plugin.json | Adds plugin manifest metadata (name/description/version/author). |
| .claude-plugin/marketplace.json | Registers the new plugin in the bundled marketplace listing. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| --- | ||
| allowed-tools: playwright-browser_navigate, playwright-browser_wait_for, playwright-browser_take_screenshot, playwright-browser_snapshot, playwright-browser_close | ||
| description: Capture a screenshot of a webpage | ||
| --- |
| Capture a screenshot of the specified webpage URL. | ||
|
|
||
| ## Steps | ||
|
|
||
| 1. Navigate to the URL provided by the user |
| Use the `/webpage-snapshot` command followed by the URL you want to capture: | ||
|
|
||
| ``` | ||
| /webpage-snapshot https://example.com | ||
| ``` |
| }, | ||
| { | ||
| "name": "webpage-snapshot", | ||
| "description": "Capture and save webpage screenshots using browser automation", | ||
| "version": "1.0.0", | ||
| "author": { | ||
| "name": "大粒子", | ||
| "email": "z814241@gmail.com" | ||
| }, | ||
| "source": "./plugins/webpage-snapshot", | ||
| "category": "productivity" |
Summary by CodeRabbit