Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9671469
feat(local): add --verify, --timeout, auto-detect dev script, post-in…
MathurAditya724 May 21, 2026
a00b642
fix(test): use TEST_TMP_DIR instead of /tmp/opencode for CI compat
MathurAditya724 May 21, 2026
ce01fd9
fix: clear timeout handles, forward signals in verify mode, shell-wra…
MathurAditya724 May 21, 2026
06bdcd5
fix: add signal forwarding in verifySetup, await child.exited after kill
MathurAditya724 May 21, 2026
c171241
fix: default 30s timeout for --verify, redact env vars from telemetry
MathurAditya724 May 21, 2026
e5317da
fix: remove stale signal handlers after Promise.race resolves
MathurAditya724 May 21, 2026
dad2f31
fix: SIGKILL fallback after 5s grace period if child ignores SIGTERM
MathurAditya724 May 21, 2026
02b8918
fix: remove numeric separators and fix maskToken property test
MathurAditya724 May 21, 2026
40fc9e3
fix: clear grace timer after child exits promptly
MathurAditya724 May 21, 2026
5dc4afa
fix: remove unnecessary numeric separator in verify-setup timeout
MathurAditya724 May 21, 2026
05a825f
fix: detect $VAR shell expansion, handle already-exited child, broade…
MathurAditya724 May 21, 2026
1858f9d
docs: clarify --timeout flag behavior in --verify mode
MathurAditya724 May 21, 2026
a97abd6
chore: regenerate docs
github-actions[bot] May 21, 2026
1673921
fix: defer signal handler removal until after gracefulKill completes
MathurAditya724 May 21, 2026
1e9ec12
fix: use gracefulKill in non-verify timeout path
MathurAditya724 May 21, 2026
5c40365
fix: break long brief string for biome formatter
MathurAditya724 May 21, 2026
fc94462
merge: resolve conflicts with main (vitest migration)
MathurAditya724 May 21, 2026
0d99c0a
fix: use node:fs in dev-script.ts, fix async handleFinalResult tests,…
MathurAditya724 May 21, 2026
744915e
fix: avoid trailing colon in PATH when env.PATH is undefined
MathurAditya724 May 21, 2026
e50caae
fix: await gracefulKill in timeout callback, trim script value before…
MathurAditya724 May 21, 2026
71869ed
fix: guard SIGKILL in gracefulKill against already-exited child
MathurAditya724 May 21, 2026
3d86a28
fix: guard signal handlers against already-exited child
MathurAditya724 May 21, 2026
81e1cc6
fix: address CI lint failures and Warden findings
MathurAditya724 May 21, 2026
667a6c8
fix: replace nested ternary with if/else, extract parseScriptArgs helper
MathurAditya724 May 21, 2026
b709246
ci: re-trigger CI (flaky response-cache test)
MathurAditya724 May 21, 2026
a0df3f9
merge: resolve conflicts with main, migrate Bun.spawn to Node child_p…
MathurAditya724 May 25, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions plugins/sentry-cli/skills/sentry-cli/references/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ Run a command with the local dev server enabled
**Flags:**
- `-p, --port <value> - Port for the local server (default 8969) - (default: "8969")`
- `--host <value> - Hostname for the local server (default localhost) - (default: "localhost")`
- `-V, --verify - Verify SDK sends events, then exit`
- `-t, --timeout <value> - Kill the child after N seconds (0 = no timeout; defaults to 30 s in --verify mode) - (default: "0")`

**Examples:**

Expand Down
Loading
Loading