docs(mcp): document ephemeral tab IDs and screenshot-after-open-browser#329
Merged
Conversation
Agents were reusing stale tab/pane IDs across session boundaries, causing 'tab not found' errors. Also, agents were not confirming that browser pages loaded successfully after open-browser, leading to silent failures (blank pages, CORS errors, network issues). Add two key gotchas to INSTRUCTIONS: - Tab and pane IDs are ephemeral — don't reuse across reconnects - Always screenshot after open-browser to confirm page load Update the open-browser playbook to include a screenshot step, and add confirmation guidance to the screenshot section.
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
Agents using the Freshell MCP tool were hitting two avoidable pitfalls:
Stale tab/pane IDs — IDs from
open-browser,new-tab, andsplit-panebecome invalid after server restarts or session reconnects. Agents were reusing old IDs, causing "tab not found" errors.Silent browser failures — After
open-browser, agents assumed the page loaded successfully. Network errors, CORS issues, and blank pages went undetected because no screenshot was taken to confirm.Changes
Three places in
server/mcp/freshell-tool.ts(all documentation/template strings, no code logic):screenshotcall afteropen-browsershowing the exact commandTest plan