@sentry/junior-github 0.144.0 → 0.145.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-github",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.145.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@sinclair/typebox": "^0.34.49",
|
|
32
32
|
"drizzle-orm": "^0.45.2",
|
|
33
33
|
"zod": "^4.4.3",
|
|
34
|
-
"@sentry/junior-plugin-api": "0.
|
|
34
|
+
"@sentry/junior-plugin-api": "0.145.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^25.9.1",
|
|
@@ -66,7 +66,13 @@ Unless the user explicitly says not to create a PR, every completed repository e
|
|
|
66
66
|
4. Resolve the actual default branch.
|
|
67
67
|
5. Reuse and update an existing PR for the branch; otherwise call `github_createPullRequest` with explicit repo, head, base, title, body, and `draft: true` unless the user or repo explicitly requires ready-for-review.
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
PR titles use the same conventional form as commits: `<type>(<scope>): <Subject>` or `<type>: <Subject>`. Match the current dominant change, not the latest commit or a stale title.
|
|
70
|
+
|
|
71
|
+
Write the PR body for a reviewer who knows the product but not this change. Use ASD-STE100 English: short sentences, common words, active voice, and one idea per sentence. Avoid dense academic prose and unnecessary jargon.
|
|
72
|
+
|
|
73
|
+
Explain what this PR changes and why it matters. Add only context the diff cannot show. Keep the body short by default; add structure only when it helps. Omit empty or `N/A` sections, file-by-file narration, copied commit logs, and redundant diff summaries.
|
|
74
|
+
|
|
75
|
+
Treat the current title, body, and commit messages as fallible context. After material follow-up commits, re-check the title and rewrite the body against the current diff. Never include customer data, PII, secrets, or sensitive thread context, especially in public repositories. Resolve requested assignee/reviewer handles from evidence; skip unconfirmed identities.
|
|
70
76
|
|
|
71
77
|
If PR creation is blocked, report the exact failed command/tool call and leave the committed branch intact.
|
|
72
78
|
|
|
@@ -11,6 +11,9 @@ Guide evidence-first GitHub repository work from inspection through a reviewable
|
|
|
11
11
|
- Treat shallow clones as inspection checkouts; fetch/deepen before history-dependent operations and never force-push around missing ancestry.
|
|
12
12
|
- Install repository dependencies with the detected package manager's locked/frozen mode before verification when dependencies are absent.
|
|
13
13
|
- For every completed repository edit, create or update a pushed PR unless the user explicitly opts out; default new PRs to draft while honoring explicit ready-for-review instructions.
|
|
14
|
+
- Write conventional PR titles that match the current dominant change.
|
|
15
|
+
- Write short reviewer-facing PR bodies in ASD-STE100 English; explain what changed and why, add only context the diff cannot show, and omit empty ceremony or fixed templates.
|
|
16
|
+
- Treat existing PR metadata and commit messages as fallible context, and refresh the title/body against the current diff after material changes.
|
|
14
17
|
- Report exact validation and permission failures without claiming partial work is complete.
|
|
15
18
|
|
|
16
19
|
## Runtime architecture
|