@sentry/junior-sentry 0.136.0 → 0.137.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/junior-sentry",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.137.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"zod": "^4.4.3",
|
|
30
|
-
"@sentry/junior-plugin-api": "0.
|
|
30
|
+
"@sentry/junior-plugin-api": "0.137.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^25.9.1",
|
package/skills/sentry/SOURCES.md
CHANGED
|
@@ -41,7 +41,7 @@ Last updated: 2026-07-13
|
|
|
41
41
|
| Dimension | Coverage status | Evidence |
|
|
42
42
|
| ---------------------------------- | --------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
43
43
|
| API surface and behavior contracts | complete | `cli-commands.md` covers issue, org, log, trace, first-class metric-alert commands, and API fallback plus live help verification. |
|
|
44
|
-
| Config/runtime options | complete | `sandbox-runtime.md`, `
|
|
44
|
+
| Config/runtime options | complete | `sandbox-runtime.md`, `packages/junior-sentry/src/index.ts`, and CLI configuration docs cover injected auth and runtime package installation. |
|
|
45
45
|
| Common use cases | complete | `cli-commands.md` maps org listing, issue search/view/events, logs, traces, trace logs, and API fallback. |
|
|
46
46
|
| Product telemetry routing | documented | `SKILL.md` and `SPEC.md` cover Sentry product feature usage and explicit "Sentry telemetry" redirects after an unrelated auth pause. A dedicated eval should wait for the eval harness boundary cleanup. |
|
|
47
47
|
| Known issues/workarounds | complete | `cli-commands.md` troubleshooting covers stale plural commands, target syntax, JSON parsing, cache, auth, scope, and access failures. |
|
package/skills/sentry/SPEC.md
CHANGED
|
@@ -38,7 +38,7 @@ Out of scope:
|
|
|
38
38
|
## Current CLI Data
|
|
39
39
|
|
|
40
40
|
- Verified date: 2026-07-13.
|
|
41
|
-
- Verified npm package: `sentry@0.38.0`, installed from the
|
|
41
|
+
- Verified npm package: `sentry@0.38.0`, installed from the `runtimeDependencies` declared by `sentryPlugin()`.
|
|
42
42
|
- Auth model: Junior injects `SENTRY_AUTH_TOKEN` for authenticated Sentry commands during the requesting user's turn.
|
|
43
43
|
- Canonical command groups: `sentry issue`, `sentry org`, `sentry log`, `sentry trace`, `sentry alert metrics`, and `sentry api`.
|
|
44
44
|
- Required migration rule: prefer singular command groups such as `sentry org list`; do not teach stale plural command forms such as `sentry organizations list`.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Open this file when selecting a Sentry CLI command, checking target syntax, or diagnosing an unknown-command failure.
|
|
4
4
|
|
|
5
5
|
All commands use `sentry`; authenticated Sentry HTTP traffic is supplied by the runtime.
|
|
6
|
-
The npm `sentry` package is intentionally installed at runtime
|
|
6
|
+
The npm `sentry` package is intentionally installed at runtime by `sentryPlugin()`, so verify live help before blocking on a missing command. Do not configure or print token env vars.
|
|
7
7
|
|
|
8
8
|
## Command selection rules
|
|
9
9
|
|