@sentry/junior-sentry 0.53.0 → 0.55.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,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/junior-sentry",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.55.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/getsentry/junior.git",
|
|
12
|
+
"directory": "packages/junior-sentry"
|
|
13
|
+
},
|
|
9
14
|
"files": [
|
|
10
15
|
"plugin.yaml",
|
|
11
16
|
"skills"
|
package/skills/sentry/SKILL.md
CHANGED
|
@@ -27,7 +27,7 @@ Before declaring a Sentry data surface unavailable, verify the current CLI help:
|
|
|
27
27
|
2. Execute via CLI:
|
|
28
28
|
|
|
29
29
|
- Use `sentry <command>` for structured queries.
|
|
30
|
-
- The runtime
|
|
30
|
+
- The runtime authenticates Sentry HTTP traffic for this skill. Do not set or print token env vars.
|
|
31
31
|
- Read [references/cli-commands.md](references/cli-commands.md) when choosing command shapes, target formats, flags, API fallback, or troubleshooting behavior.
|
|
32
32
|
- Read [references/sandbox-runtime.md](references/sandbox-runtime.md) before relying on sandbox credentials.
|
|
33
33
|
- Prefer `--json` when parsing or summarizing results.
|
package/skills/sentry/SOURCES.md
CHANGED
|
@@ -16,7 +16,6 @@ Last updated: 2026-04-30
|
|
|
16
16
|
| `pnpm view sentry version dist-tags description bin repository` | canonical | high | Confirmed npm package `sentry` latest is `0.30.0` and exposes `sentry` binary. | Package metadata only; command behavior still comes from help/docs. |
|
|
17
17
|
| `pnpm dlx sentry@latest --help` and subcommand help | canonical | high | Confirmed executable help lists org list/view, issue list/events/view, log list/view, trace list/view/logs, and api. | Re-run when updating for a newer CLI. |
|
|
18
18
|
| `packages/junior-sentry/plugin.yaml` | canonical | high | Confirms runtime dependency is the npm `sentry` package and auth token env is `SENTRY_AUTH_TOKEN`. | Local repo contract. |
|
|
19
|
-
| `packages/junior/src/chat/sandbox/eval-sentry-stub.ts` | canonical | medium | Eval-only shim needed to avoid preserving stale command forms in tests. | Not a production CLI source. |
|
|
20
19
|
|
|
21
20
|
## Decisions
|
|
22
21
|
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Open this file when selecting a Sentry CLI command, checking target syntax, or diagnosing an unknown-command failure.
|
|
4
4
|
|
|
5
|
-
All commands use `sentry
|
|
6
|
-
The npm `sentry` package is intentionally installed at runtime from the plugin manifest, so verify live help before blocking on a missing command.
|
|
5
|
+
All commands use `sentry`; authenticated Sentry HTTP traffic is supplied by the runtime.
|
|
6
|
+
The npm `sentry` package is intentionally installed at runtime from the plugin manifest, 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
|
|
|
@@ -11,6 +11,6 @@ This skill runs in the harness sandbox (`node22`) and commands execute via the `
|
|
|
11
11
|
|
|
12
12
|
## Credential strategy
|
|
13
13
|
|
|
14
|
-
1. After the Sentry skill is loaded, authenticated
|
|
14
|
+
1. After the Sentry skill is loaded, authenticated Sentry HTTP traffic is available for the current turn.
|
|
15
15
|
2. Run CLI commands: `sentry <command>`.
|
|
16
|
-
3. Credentials are scoped per command execution. Do not persist
|
|
16
|
+
3. Credentials are scoped per command execution. Do not set, persist, or print token env vars.
|