Document tsci snapshot view flags (--schematic-only, --simulation-only, --layer, camera presets) - #32
Open
rushabhcodes wants to merge 1 commit into
Open
Conversation
…y, --layer, camera presets) Expand the tsci snapshot section of the skill docs to cover snapshot options that were previously undocumented. The CLI reference only mentioned --pcb-only, --3d, and --test, so the other views and flags were undiscoverable. CLI.md: - Snapshot types: --schematic-only, --simulation-only, --layer top|bottom - Useful options: --camera-preset (with preset list), --show-courtyards, -u/--update & --force-update, --disable-parts-engine, path glob, --concurrency - Surface single-view commands in the recommended-pattern snippet WORKFLOW.md: - Note pointing to --schematic-only / --simulation-only and --3d + --camera-preset All flags cross-checked against tsci snapshot --help; docs only, no behavior change.
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
Expands the
tsci snapshotsection of the skill docs to cover the snapshot options that were previously undocumented. Until now the CLI reference only mentioned--pcb-only,--3d, and--test, so the other views and flags were undiscoverable.Added to CLI.md
--schematic-only,--simulation-only, and--layer top|bottomalongside the existing--pcb-only/--3d.--camera-preset <preset>(with the full preset list),--show-courtyards,-u/--update&--force-update,--disable-parts-engine, thepathglob argument, and--concurrency <n>.Added to WORKFLOW.md
--schematic-only/--simulation-onlyand the--3d+--camera-preset3D preview.Why
These flags are all real (
tsci snapshot --help), but absent from the docs the agent defaults to full snapshots even when one view is wanted. Documenting them lets it pick the cheapest correct view (e.g.--schematic-onlyduring wiring,--layerfor a single copper layer) and use 3D camera presets deliberately.Verification
Every flag listed was cross-checked against
tsci snapshot --helpon the installed CLI; no behavior changes, docs only.