Browser feedback extension#14
Draft
sagalbot wants to merge 15 commits into
Draft
Conversation
Design for a Chrome extension + native messaging host + Laravel MCP server that enables developers to capture browser screenshots and share them with Claude running inside a Docker sandbox. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14-task plan covering Laravel MCP server, Chrome extension, native messaging host, developer-feedback skill, and install integration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Create FeedbackServer extending Laravel MCP Server base class, registering the GetDeveloperFeedback tool for browser feedback integration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Reads PNG screenshots from storage/app/agent-captures/feedback/, loads companion JSON manifests with metadata (url, annotation, viewport, timestamp), and returns text + image Response pairs sorted chronologically. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Teaches Claude to call the get-developer-feedback MCP tool when the developer pastes a [feedback] trigger string. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Create Manifest V3 Chrome extension at extension/ that captures visible tab screenshots, sends them to the com.springloaded.turbo_feedback native messaging host, and copies a [feedback] trigger string to the clipboard. Includes manifest, popup UI with annotation support, background service worker for turbo-feedback:// deep link configuration, and icon placeholders. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Verify the MCP GetDeveloperFeedback tool correctly reads feedback images and manifests written to the workspace using the real local Storage disk. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Solid blue PNGs so the extension loads without errors. Replace with branded icons later. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
These files were created but not staged in the original commit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
get-developer-feedbacktool) that reads captured screenshots and returns them as imagesdeveloper-feedbackskill that teaches Claude to check for screenshots on[feedback]triggerturbo:install(native host registration, MCP server config, deep link for extension)Architecture
storage/app/agent-captures/feedback/[feedback]trigger to clipboardget-developer-feedbackMCP tool, sees the screenshotComponents
extension/— Chrome Manifest V3 extension (popup, capture, native messaging, deep link handler)resources/native-messaging/— Node.js host script + Chrome manifest templatesrc/Mcp/FeedbackServer.php— Laravel MCP serversrc/Mcp/Tools/GetDeveloperFeedback.php— Tool that reads feedback images.ai/skills/developer-feedback/— Skill for[feedback]triggersrc/Commands/InstallCommand.php—offerFeedbackSetup()integrationTest plan
[feedback]trigger copied to clipboardcomposer test— all new tests passturbo:install— feedback setup step appears🤖 Generated with Claude Code