docs(browser-trace): fix broken command, malformed timestamp, and typos#124
Open
ghostsentinelai wants to merge 1 commit into
Open
docs(browser-trace): fix broken command, malformed timestamp, and typos#124ghostsentinelai wants to merge 1 commit into
ghostsentinelai wants to merge 1 commit into
Conversation
Four documentation corrections, no behavior change:
- REFERENCE.md: troubleshooting row invoked `bash start-capture.mjs`,
but the scripts are Node ESM modules — bash can't run them. Changed
to `node scripts/start-capture.mjs` to match every other example.
- SKILL.md: the screenshot-by-timestamp recipe used an awk target of
`20260427T1714123NZ`, which isn't a valid timestamp in the skill's
own `%Y%m%dT%H%M%SZ` format. Corrected to `20260427T171412Z`.
- EXAMPLES.md: "only adds an tracer" -> "a tracer".
- REFERENCE.md: replaced a leftover draft-note comment
("it appends to raw.ndjson? no, it overwrites") with a clear
statement of the actual overwrite behavior.
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.
Four documentation-only corrections to the
browser-traceskill — no behavior change.REFERENCE.md(troubleshooting)bash start-capture.mjs ...node scripts/start-capture.mjs ...SKILL.md(screenshot-by-timestamp recipe)awk -v t=20260427T1714123NZawk -v t=20260427T171412ZEXAMPLES.md(Example 5 key idea)REFERENCE.md(bash cheatsheet)# ... it appends to raw.ndjson? no, it overwrites# note: re-running start-capture overwrites raw.ndjson, it does not appendRationale:
bash start-capture.mjscannot execute them. Every other example correctly usesnode scripts/start-capture.mjs.20260427T1714123NZis not a valid value in the skill's own%Y%m%dT%H%M%SZtimestamp format used everywhere else.Found while installing and reading through the skill end-to-end.