skill(next-dev-loop): fix --session flag, agent-browser bootstrap, --headed daemon note#95005
Merged
aurorascharff merged 2 commits intoJun 22, 2026
Merged
Conversation
…headed daemon note
Contributor
Stats cancelledCommit: 9833ca6 |
Contributor
Tests PassedCommit: 9833ca6 |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the next-dev-loop skill documentation to match the real agent-browser CLI surface and clarify a common workflow pitfall during repeated dev sessions.
Changes:
- Fixes the documented
agent-browserflag from--session-nameto--session(including the state file path placeholder). - Clarifies that
agent-browsermay need to be installed (not just upgraded) before running preflight. - Adds a note that
--headed(and similar launch flags) are ignored when an existingagent-browserdaemon is already running, and instructs to runagent-browser closeto change launch flags.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
gaojude
approved these changes
Jun 22, 2026
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.
Three small
next-dev-loopskill fixes from a real adoption run.1. Flag mismatch. Preflight documented
--session-name <slug>but the CLI flag is--session <name>. The skill tells agents to trust the documented command over source, so the copy-paste failed. Fixed in two places (preflight + post-loop close).2.
agent-browserbootstrap. The CLI isn't always installed; the skill said "upgrade" but not "install if missing." Reworded the prereq bullet to "Install or upgradeagent-browser" and added a line telling the agent to install it before continuing if it isn't onPATH.3.
--headeddaemon gotcha. Launch flags like--headedare silently ignored when theagent-browserdaemon is already running from a previous session (⚠ --headed ignored: daemon already running). The preflight just listed--headedwithout noting this, so a second session inherited the first one's flags. Added a callout telling the agent to runagent-browser closefirst to change launch flags.Docs-only.