docs(skill): list bsk console and bsk network in SKILL.md - #80
Closed
BB-fat wants to merge 1 commit into
Closed
Conversation
PR #7 and PR #8 added the console/network read-only commands but never registered them in the bundled skill, so agents installing the skill could not discover them. Add a short "Console & network debugging" section covering both commands, their paging flags, and their read-only scope. Keep crates/bsk-cli/skill/SKILL.md in sync (build.rs copies the repo-root file during dev builds).
BB-fat
force-pushed
the
docs/console-network-skill
branch
from
August 12, 2026 11:14
9a576d4 to
b3c4ccd
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.
Motivation
Follow-up of #7 and #8 (also refs #61). Those PRs added the read-only
bsk console/bsk networkcommands but never registered them in the bundledSKILL.md, so agents that install the skill have no way to discover the two commands exist.Changes
skill/SKILL.md, covering:bsk console(console messages / JS exceptions / browser log entries,--include-stack) andbsk network(responses with status/method/URL/type, failures withnet::ERR_*reason)--since/--limit(default 50, max 200) /--max-text-chars(default 1000, max 4096) /--tab-idcrates/bsk-cli/skill/SKILL.md(build.rs already copies the repo-root file during dev builds; both copies are committed identically).Testing
Docs-only change; verified the two files stay byte-identical (
diff) and the table renders as the existing command tables do.