docs(skill): add preflight guidance for parallel tasks - #152
Open
xiyanjun wants to merge 1 commit into
Open
Conversation
All sessions in a browser share one cookie jar, so parallel tasks hitting the same logged-in site can silently overwrite each other's login state. Add a preflight step to the Mandatory workflow advising agents to check session/tab lists for domain overlap before running tasks in parallel. Related to Tencent#132.
xiyanjun
force-pushed
the
docs/preflight-check
branch
from
August 28, 2026 10:24
9b5a4f0 to
577855e
Compare
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.
What
Adds a preflight step to the Mandatory workflow for parallel-task scenarios, addressing the documentation layer of #132.
All sessions in a browser share one cookie jar. Two tasks hitting the same logged-in site will silently overwrite each other's login state — no error, hard to diagnose. This PR tells agents to check for domain overlap before running tasks in parallel.
Change
One paragraph added to the Mandatory workflow in both
skill/SKILL.mdandcrates/bsk-cli/skill/SKILL.md(kept in sync):bsk session list+bsk tab list --session <id> --scope all --jsonto check domain overlap.bsk session start --browser <instance-id>).Documentation only — no behavior change. This is the "SKILL.md workflow" option proposed in #132; the
bsk preflightCLI subcommand and the cookie/storage isolation primitive remain open for discussion there.Related to #132.