@fro.bot/systematic 2.2.1 → 2.3.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.
Files changed (40) hide show
  1. package/agents/document-review/adversarial-document-reviewer.md +87 -0
  2. package/agents/review/adversarial-reviewer.md +107 -0
  3. package/agents/review/cli-agent-readiness-reviewer.md +443 -0
  4. package/agents/review/cli-readiness-reviewer.md +69 -0
  5. package/agents/review/previous-comments-reviewer.md +64 -0
  6. package/agents/review/project-standards-reviewer.md +80 -0
  7. package/package.json +1 -1
  8. package/skills/claude-permissions-optimizer/scripts/extract-commands.mjs +2 -2
  9. package/skills/claude-permissions-optimizer/scripts/normalize.mjs +8 -8
  10. package/skills/git-clean-gone-branches/SKILL.md +63 -0
  11. package/skills/git-clean-gone-branches/scripts/clean-gone +48 -0
  12. package/skills/git-commit/SKILL.md +103 -0
  13. package/skills/git-commit-push-pr/SKILL.md +419 -0
  14. package/skills/onboarding/SKILL.md +407 -0
  15. package/skills/onboarding/scripts/inventory.mjs +1043 -0
  16. package/skills/resolve-pr-feedback/SKILL.md +374 -0
  17. package/skills/resolve-pr-feedback/scripts/get-pr-comments +104 -0
  18. package/skills/resolve-pr-feedback/scripts/get-thread-for-comment +58 -0
  19. package/skills/resolve-pr-feedback/scripts/reply-to-pr-thread +33 -0
  20. package/skills/{resolve-pr-parallel → resolve-pr-feedback}/scripts/resolve-pr-thread +0 -0
  21. package/skills/todo-create/SKILL.md +109 -0
  22. package/skills/todo-resolve/SKILL.md +68 -0
  23. package/skills/todo-triage/SKILL.md +70 -0
  24. package/skills/ce-review-beta/SKILL.md +0 -506
  25. package/skills/ce-review-beta/references/diff-scope.md +0 -31
  26. package/skills/ce-review-beta/references/findings-schema.json +0 -128
  27. package/skills/ce-review-beta/references/persona-catalog.md +0 -50
  28. package/skills/ce-review-beta/references/review-output-template.md +0 -115
  29. package/skills/ce-review-beta/references/subagent-template.md +0 -56
  30. package/skills/file-todos/SKILL.md +0 -231
  31. package/skills/resolve-pr-parallel/SKILL.md +0 -96
  32. package/skills/resolve-pr-parallel/scripts/get-pr-comments +0 -68
  33. package/skills/resolve-todo-parallel/SKILL.md +0 -68
  34. package/skills/triage/SKILL.md +0 -312
  35. package/skills/workflows-brainstorm/SKILL.md +0 -11
  36. package/skills/workflows-compound/SKILL.md +0 -10
  37. package/skills/workflows-plan/SKILL.md +0 -10
  38. package/skills/workflows-review/SKILL.md +0 -10
  39. package/skills/workflows-work/SKILL.md +0 -10
  40. /package/skills/{file-todos → todo-create}/assets/todo-template.md +0 -0
@@ -0,0 +1,419 @@
1
+ ---
2
+ name: git-commit-push-pr
3
+ description: Commit, push, and open a PR with an adaptive, value-first description. Use when the user says "commit and PR", "push and open a PR", "ship this", "create a PR", "open a pull request", "commit push PR", or wants to go from working changes to an open pull request in one step. Also use when the user says "update the PR description", "refresh the PR description", "freshen the PR", or wants to rewrite an existing PR description. Produces PR descriptions that scale in depth with the complexity of the change, avoiding cookie-cutter templates.
4
+ ---
5
+
6
+ # Git Commit, Push, and PR
7
+
8
+ Go from working tree changes to an open pull request in a single workflow, or update an existing PR description. The key differentiator of this skill is PR descriptions that communicate *value and intent* proportional to the complexity of the change.
9
+
10
+ ## Mode detection
11
+
12
+ If the user is asking to update, refresh, or rewrite an existing PR description (with no mention of committing or pushing), this is a **description-only update**. The user may also provide a focus for the update (e.g., "update the PR description and add the benchmarking results"). Note any focus instructions for use in DU-3.
13
+
14
+ For description-only updates, follow the Description Update workflow below. Otherwise, follow the full workflow.
15
+
16
+ ## Reusable PR probe
17
+
18
+ When checking whether the current branch already has a PR, keep using current-branch `gh pr view` semantics. Do **not** switch to `gh pr list --head "<branch>"` just to avoid the no-PR exit path. That branch-name search can select the wrong PR in multi-fork repos.
19
+
20
+ Also do **not** run bare `gh pr view --json ...` in a way that lets the shell tool render the expected no-PR state as a red failed step. Capture the output and exit code yourself so you can interpret "no PR for this branch" as normal workflow state:
21
+
22
+ ```bash
23
+ if PR_VIEW_OUTPUT=$(gh pr view --json url,title,state 2>&1); then
24
+ PR_VIEW_EXIT=0
25
+ else
26
+ PR_VIEW_EXIT=$?
27
+ fi
28
+ printf '%s\n__GH_PR_VIEW_EXIT__=%s\n' "$PR_VIEW_OUTPUT" "$PR_VIEW_EXIT"
29
+ ```
30
+
31
+ Interpret the result this way:
32
+
33
+ - `__GH_PR_VIEW_EXIT__=0` and JSON with `state: OPEN` -> an open PR exists for the current branch
34
+ - `__GH_PR_VIEW_EXIT__=0` and JSON with a non-OPEN state -> treat as no open PR
35
+ - non-zero exit with output indicating `no pull requests found for branch` -> expected no-PR state
36
+ - any other non-zero exit -> real error (auth, network, repo config, etc.)
37
+
38
+ ---
39
+
40
+ ## Context
41
+
42
+ **If you are not OpenCode**, skip to the "Context fallback" section below and run the command there to gather context.
43
+
44
+ **If you are OpenCode**, the six labeled sections below (Git status, Working tree diff, Current branch, Recent commits, Remote default branch, Existing PR check) contain pre-populated data. Use them directly throughout this skill -- do not re-run these commands.
45
+
46
+ **Git status:**
47
+ !`git status`
48
+
49
+ **Working tree diff:**
50
+ !`git diff HEAD`
51
+
52
+ **Current branch:**
53
+ !`git branch --show-current`
54
+
55
+ **Recent commits:**
56
+ !`git log --oneline -10`
57
+
58
+ **Remote default branch:**
59
+ !`git rev-parse --abbrev-ref origin/HEAD 2>/dev/null || echo '__DEFAULT_BRANCH_UNRESOLVED__'`
60
+
61
+ **Existing PR check:**
62
+ !`PR_OUT=$(gh pr view --json url,title,state 2>&1); PR_EXIT=$?; printf '%s\n__GH_PR_VIEW_EXIT__=%s\n' "$PR_OUT" "$PR_EXIT"`
63
+
64
+ ### Context fallback
65
+
66
+ **If you are OpenCode, skip this section — the data above is already available.**
67
+
68
+ Run this single command to gather all context:
69
+
70
+ ```bash
71
+ printf '=== STATUS ===\n'; git status; printf '\n=== DIFF ===\n'; git diff HEAD; printf '\n=== BRANCH ===\n'; git branch --show-current; printf '\n=== LOG ===\n'; git log --oneline -10; printf '\n=== DEFAULT_BRANCH ===\n'; git rev-parse --abbrev-ref origin/HEAD 2>/dev/null || echo '__DEFAULT_BRANCH_UNRESOLVED__'; printf '\n=== PR_CHECK ===\n'; PR_OUT=$(gh pr view --json url,title,state 2>&1); PR_EXIT=$?; printf '%s\n__GH_PR_VIEW_EXIT__=%s\n' "$PR_OUT" "$PR_EXIT"
72
+ ```
73
+
74
+ Interpret the PR check result using the Reusable PR probe rules above.
75
+
76
+ ---
77
+
78
+ ## Description Update workflow
79
+
80
+ ### DU-1: Confirm intent
81
+
82
+ Ask the user to confirm: "Update the PR description for this branch?" Use the platform's blocking question tool (`question` in OpenCode, `request_user_input` in Codex, `ask_user` in Gemini). If no question tool is available, present the question and wait for the user's reply.
83
+
84
+ If the user declines, stop.
85
+
86
+ ### DU-2: Find the PR
87
+
88
+ Use the current branch and existing PR check from the context above. If the current branch is empty (detached HEAD), report that there is no branch to update and stop.
89
+
90
+ Interpret the PR check result using the Reusable PR probe rules above:
91
+
92
+ - If it returns PR data with `state: OPEN`, an open PR exists for the current branch.
93
+ - If it returns PR data with a non-OPEN state (CLOSED, MERGED), treat this as "no open PR." Report that no open PR exists for this branch and stop.
94
+ - If it exits non-zero and the output indicates that no pull request exists for the current branch, treat that as the normal "no PR for this branch" state. Report that no open PR exists for this branch and stop.
95
+ - If it errors for another reason (auth, network, repo config), report the error and stop.
96
+
97
+ ### DU-3: Write and apply the updated description
98
+
99
+ Read the current PR description:
100
+
101
+ ```bash
102
+ gh pr view --json body --jq '.body'
103
+ ```
104
+
105
+ Follow the "Detect the base branch and remote" and "Gather the branch scope" sections of Step 6 to get the full branch diff. Use the PR found in DU-2 as the existing PR for base branch detection. Classify commits per the "Classify commits before writing" section -- this is especially important for description updates, where the recent commits that prompted the update are often fix-up work (code review fixes, lint fixes) rather than feature work. Then write a new description following the writing principles in Step 6, driven by the feature commits and the final diff. If the user provided a focus, incorporate it into the description alongside the branch diff context.
106
+
107
+ Compare the new description against the current one and summarize the substantial changes for the user (e.g., "Added coverage of the new caching layer, updated test plan, removed outdated migration notes"). If the user provided a focus, confirm it was addressed. Ask the user to confirm before applying. Use the platform's blocking question tool (`question` in OpenCode, `request_user_input` in Codex, `ask_user` in Gemini). If no question tool is available, present the summary and wait for the user's reply.
108
+
109
+ If confirmed, apply:
110
+
111
+ ```bash
112
+ gh pr edit --body "$(cat <<'EOF'
113
+ Updated description here
114
+ EOF
115
+ )"
116
+ ```
117
+
118
+ Report the PR URL.
119
+
120
+ ---
121
+
122
+ ## Full workflow
123
+
124
+ ### Step 1: Gather context
125
+
126
+ Use the context above (git status, working tree diff, current branch, recent commits, remote default branch, and existing PR check). All data needed for this step and Step 3 is already available -- do not re-run those commands.
127
+
128
+ The remote default branch value returns something like `origin/main`. Strip the `origin/` prefix to get the branch name. If it returned `__DEFAULT_BRANCH_UNRESOLVED__` or a bare `HEAD`, try:
129
+
130
+ ```bash
131
+ gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name'
132
+ ```
133
+
134
+ If both fail, fall back to `main`.
135
+
136
+ If the current branch from the context above is empty, the repository is in detached HEAD state. Explain that a branch is required before committing and pushing. Ask whether to create a feature branch now. Use the platform's blocking question tool (`question` in OpenCode, `request_user_input` in Codex, `ask_user` in Gemini). If no question tool is available, present the options and wait for the user's reply.
137
+
138
+ - If the user agrees, derive a descriptive branch name from the change content, create it with `git checkout -b <branch-name>`, then run `git branch --show-current` again and use that result as the current branch name for the rest of the workflow.
139
+ - If the user declines, stop.
140
+
141
+ If the git status from the context above shows a clean working tree (no staged, modified, or untracked files), check whether there are unpushed commits or a missing PR before stopping. The current branch and existing PR check are already available from the context above. Additionally:
142
+
143
+ 1. Run `git rev-parse --abbrev-ref --symbolic-full-name @{u}` to check whether an upstream is configured.
144
+ 2. If the command succeeds, run `git log <upstream>..HEAD --oneline` using the upstream name from the previous command.
145
+
146
+ - If the current branch is `main`, `master`, or the resolved default branch from Step 1 and there is **no upstream** or there are **unpushed commits**, explain that pushing now would use the default branch directly. Ask whether to create a feature branch first. Use the platform's blocking question tool (`question` in OpenCode, `request_user_input` in Codex, `ask_user` in Gemini). If no question tool is available, present the options and wait for the user's reply.
147
+ - If the user agrees, derive a descriptive branch name from the change content, create it with `git checkout -b <branch-name>`, then continue from Step 5 (push).
148
+ - If the user declines, report that this workflow cannot open a PR from the default branch directly and stop.
149
+ - If there is **no upstream**, treat the branch as needing its first push. Skip Step 4 (commit) and continue from Step 5 (push).
150
+ - If there are **unpushed commits**, skip Step 4 (commit) and continue from Step 5 (push).
151
+ - If all commits are pushed but **no open PR exists** and the current branch is `main`, `master`, or the resolved default branch from Step 1, report that there is no feature branch work to open as a PR and stop.
152
+ - If all commits are pushed but **no open PR exists**, skip Steps 4-5 and continue from Step 6 (write the PR description) and Step 7 (create the PR).
153
+ - If all commits are pushed **and an open PR exists**, report that and stop -- there is nothing to do.
154
+
155
+ ### Step 2: Determine conventions
156
+
157
+ Follow this priority order for commit messages *and* PR titles:
158
+
159
+ 1. **Repo conventions already in context** -- If project instructions (AGENTS.md, AGENTS.md, or similar) are loaded and specify conventions, follow those. Do not re-read these files; they are loaded at session start.
160
+ 2. **Recent commit history** -- If no explicit convention exists, match the pattern visible in the last 10 commits.
161
+ 3. **Default: conventional commits** -- `type(scope): description` as the fallback.
162
+
163
+ ### Step 3: Check for existing PR
164
+
165
+ Use the current branch and existing PR check from the context above. If the current branch is empty, report that the workflow is in detached HEAD state and stop.
166
+
167
+ Interpret the PR check result using the Reusable PR probe rules:
168
+
169
+ - If it **returns PR data with `state: OPEN`**, an open PR exists for the current branch. Note the URL and continue to Step 4 (commit) and Step 5 (push). Then skip to Step 7 (existing PR flow) instead of creating a new PR.
170
+ - If it **returns PR data with a non-OPEN state** (CLOSED, MERGED), treat this the same as "no PR exists" -- the previous PR is done and a new one is needed. Continue to Step 4 through Step 8 as normal.
171
+ - If it **exits non-zero and the output indicates that no pull request exists for the current branch**, no PR exists. Continue to Step 4 through Step 8 as normal.
172
+ - If it **errors** (auth, network, repo config), report the error to the user and stop.
173
+
174
+ ### Step 4: Branch, stage, and commit
175
+
176
+ 1. If the current branch from the context above is `main`, `master`, or the resolved default branch from Step 1, create a descriptive feature branch first with `git checkout -b <branch-name>`. Derive the branch name from the change content.
177
+ 2. Before staging everything together, scan the changed files for naturally distinct concerns. If modified files clearly group into separate logical changes (e.g., a refactor in one set of files and a new feature in another), create separate commits for each group. Keep this lightweight -- group at the **file level only** (no `git add -p`), split only when obvious, and aim for two or three logical commits at most. If it's ambiguous, one commit is fine.
178
+ 3. For each commit group, stage and commit in a single call. Avoid `git add -A` or `git add .` to prevent accidentally including sensitive files. Follow the conventions from Step 2. Use a heredoc for the message:
179
+ ```bash
180
+ git add file1 file2 file3 && git commit -m "$(cat <<'EOF'
181
+ commit message here
182
+ EOF
183
+ )"
184
+ ```
185
+
186
+ ### Step 5: Push
187
+
188
+ ```bash
189
+ git push -u origin HEAD
190
+ ```
191
+
192
+ ### Step 6: Write the PR description
193
+
194
+ Before writing, determine the **base branch** and gather the **full branch scope**. The working-tree diff from Step 1 only shows uncommitted changes at invocation time -- the PR description must cover **all commits** that will appear in the PR.
195
+
196
+ #### Detect the base branch and remote
197
+
198
+ Resolve the base branch **and** the remote that hosts it. In fork-based PRs the base repository may correspond to a remote other than `origin` (commonly `upstream`).
199
+
200
+ Use this fallback chain. Stop at the first that succeeds:
201
+
202
+ 1. **PR metadata** (if an existing PR was found in Step 3):
203
+ ```bash
204
+ gh pr view --json baseRefName,url
205
+ ```
206
+ Extract `baseRefName` as the base branch name. The PR URL contains the base repository (`https://github.com/<owner>/<repo>/pull/...`). Determine which local remote corresponds to that repository:
207
+ ```bash
208
+ git remote -v
209
+ ```
210
+ Match the `owner/repo` from the PR URL against the fetch URLs. Use the matching remote as the base remote. If no remote matches, fall back to `origin`.
211
+ 2. **Remote default branch from context above:** If the remote default branch resolved (not `__DEFAULT_BRANCH_UNRESOLVED__`), strip the `origin/` prefix and use that. Use `origin` as the base remote.
212
+ 3. **GitHub default branch metadata:**
213
+ ```bash
214
+ gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name'
215
+ ```
216
+ Use `origin` as the base remote.
217
+ 4. **Common branch names** -- check `main`, `master`, `develop`, `trunk` in order. Use the first that exists on the remote:
218
+ ```bash
219
+ git rev-parse --verify origin/<candidate>
220
+ ```
221
+ Use `origin` as the base remote.
222
+
223
+ If none resolve, ask the user to specify the target branch. Use the platform's blocking question tool (`question` in OpenCode, `request_user_input` in Codex, `ask_user` in Gemini). If no question tool is available, present the options and wait for the user's reply.
224
+
225
+ #### Gather the branch scope
226
+
227
+ Once the base branch and remote are known, gather the full scope in as few calls as possible.
228
+
229
+ First, verify the remote-tracking ref exists and fetch if needed:
230
+
231
+ ```bash
232
+ git rev-parse --verify <base-remote>/<base-branch> 2>/dev/null || git fetch --no-tags <base-remote> <base-branch>
233
+ ```
234
+
235
+ Then gather the merge base, commit list, and full diff in a single call:
236
+
237
+ ```bash
238
+ MERGE_BASE=$(git merge-base <base-remote>/<base-branch> HEAD) && echo "MERGE_BASE=$MERGE_BASE" && echo '=== COMMITS ===' && git log --oneline $MERGE_BASE..HEAD && echo '=== DIFF ===' && git diff $MERGE_BASE...HEAD
239
+ ```
240
+
241
+ Use the full branch diff and commit list as the basis for the PR description -- not the working-tree diff from Step 1.
242
+
243
+ #### Classify commits before writing
244
+
245
+ Before writing the description, scan the commit list and classify each commit:
246
+
247
+ - **Feature commits** -- implement the purpose of the PR (new functionality, intentional refactors, design changes). These drive the description.
248
+ - **Fix-up commits** -- work product of getting the branch ready: code review fixes, lint/type error fixes, test fixes, rebase conflict resolutions, style cleanups, typo corrections in the new code. These are invisible to the reader.
249
+
250
+ Only feature commits inform the description. Fix-up commits are noise -- they describe the iteration process, not the end result. The full diff already includes whatever the fix-up commits changed, so their intent is captured without narrating them. When sizing and writing the description, mentally subtract fix-up commits: a branch with 12 commits but 9 fix-ups is a 3-commit PR in terms of description weight.
251
+
252
+ This is the most important step. The description must be **adaptive** -- its depth should match the complexity of the change. A one-line bugfix does not need a table of performance results. A large architectural change should not be a bullet list.
253
+
254
+ #### Sizing the change
255
+
256
+ Assess the PR along two axes before writing, based on the full branch diff:
257
+
258
+ - **Size**: How many files changed? How large is the diff?
259
+ - **Complexity**: Is this a straightforward change (rename, dependency bump, typo fix) or does it involve design decisions, trade-offs, new patterns, or cross-cutting concerns?
260
+
261
+ Use this to select the right description depth:
262
+
263
+ | Change profile | Description approach |
264
+ |---|---|
265
+ | Small + simple (typo, config, dep bump) | 1-2 sentences, no headers. Total body under ~300 characters. |
266
+ | Small + non-trivial (targeted bugfix, behavioral change) | Short "Problem / Fix" narrative, ~3-5 sentences. Enough for a reviewer to understand *why* without reading the diff. No headers needed unless there are two distinct concerns. |
267
+ | Medium feature or refactor | Summary paragraph, then a section explaining what changed and why. Call out design decisions. |
268
+ | Large or architecturally significant | Full narrative: problem context, approach chosen (and why), key decisions, migration notes or rollback considerations if relevant. |
269
+ | Performance improvement | Include before/after measurements if available. A markdown table is effective here. |
270
+
271
+ **Brevity matters for small changes.** A 3-line bugfix with a 20-line PR description signals the author didn't calibrate. Match the weight of the description to the weight of the change. When in doubt, shorter is better -- reviewers can read the diff.
272
+
273
+ #### Writing principles
274
+
275
+ - **Lead with value**: The first sentence should tell the reviewer *why this PR exists*, not *what files changed*. "Fixes timeout errors during batch exports" beats "Updated export_handler.py and config.yaml".
276
+ - **No orphaned opening paragraphs**: If the description uses `##` section headings anywhere, the opening summary must also be under a heading (e.g., `## Summary`). An untitled paragraph followed by titled sections looks like a missing heading. For short descriptions with no sections, a bare paragraph is fine.
277
+ - **Describe the net result, not the journey**: The PR description is about the end state -- what changed and why. Do not include work-product details like bugs found and fixed during development, intermediate failures, debugging steps, iteration history, or refactoring done along the way. Those are part of getting the work done, not part of the result. If a bug fix happened during development, the fix is already in the diff -- mentioning it in the description implies it's a separate concern the reviewer should evaluate, when really it's just part of the final implementation. Exception: include process details only when they are critical for a reviewer to understand a design choice (e.g., "tried approach X first but it caused Y, so went with Z instead").
278
+ - **When commits conflict, trust the final diff**: The commit list is supporting context, not the source of truth for the final PR description. If commit messages describe intermediate steps that were later revised or reverted (for example, "switch to gh pr list" followed by a later change back to `gh pr view`), describe the end state shown by the full branch diff. Do not narrate contradictory commit history as if all of it shipped.
279
+ - **Explain the non-obvious**: If the diff is self-explanatory, don't narrate it. Spend description space on things the diff *doesn't* show: why this approach, what was considered and rejected, what the reviewer should pay attention to.
280
+ - **Use structure when it earns its keep**: Headers, bullet lists, and tables are tools -- use them when they aid comprehension, not as mandatory template sections. An empty "## Breaking Changes" section adds noise.
281
+ - **Markdown tables for data**: When there are before/after comparisons, performance numbers, or option trade-offs, a table communicates density well. Example:
282
+
283
+ ```markdown
284
+ | Metric | Before | After |
285
+ |--------|--------|-------|
286
+ | p95 latency | 340ms | 120ms |
287
+ | Memory (peak) | 2.1GB | 1.4GB |
288
+ ```
289
+
290
+ - **No empty sections**: If a section (like "Breaking Changes" or "Migration Guide") doesn't apply, omit it entirely. Do not include it with "N/A" or "None".
291
+ - **Test plan -- only when it adds value**: Include a test plan section when the testing approach is non-obvious: edge cases the reviewer might not think of, verification steps for behavior that's hard to see in the diff, or scenarios that require specific setup. Omit it for straightforward changes where the tests are self-explanatory or where "run the tests" is the only useful guidance. A test plan for "verify the typo is fixed" is noise.
292
+
293
+ #### Visual communication
294
+
295
+ Include a visual aid when the PR changes something structurally complex enough that a reviewer would struggle to reconstruct the mental model from prose alone. Visual aids are conditional on content patterns -- what the PR changes -- not on PR size. A small PR that restructures a complex workflow may warrant a diagram; a large mechanical refactor may not.
296
+
297
+ The bar for including visual aids in PR descriptions is higher than in brainstorms or plans. Reviewers scan PR descriptions to orient before reading the diff -- visuals must earn their space quickly.
298
+
299
+ **When to include:**
300
+
301
+ | PR changes... | Visual aid | Placement |
302
+ |---|---|---|
303
+ | Architecture touching 3+ interacting components or services | Mermaid component or interaction diagram | Within the approach or changes section |
304
+ | A multi-step workflow, pipeline, or data flow with non-obvious sequencing | Mermaid flow diagram | After the summary or within the changes section |
305
+ | 3+ behavioral modes, states, or variants being introduced or changed | Markdown comparison table | Within the relevant section |
306
+ | Before/after performance data, behavioral differences, or option trade-offs | Markdown table (see the "Markdown tables for data" writing principle above) | Inline with the data being discussed |
307
+ | Data model changes with 3+ related entities or relationship changes | Mermaid ERD or relationship diagram | Within the changes section |
308
+
309
+ **When to skip:**
310
+ - The change is trivial -- if the sizing table routes to "1-2 sentences", skip visual aids
311
+ - Prose already communicates the change clearly
312
+ - The diagram would just restate the diff in visual form without adding comprehension value
313
+ - The change is mechanical (renames, dependency bumps, config changes, formatting)
314
+ - The PR description is already short enough that a diagram would be heavier than the prose around it
315
+
316
+ **Format selection:**
317
+ - **Mermaid** (default) for flow diagrams, interaction diagrams, and dependency graphs -- 5-10 nodes typical for a PR description, up to 15 only for genuinely complex changes. Use `TB` (top-to-bottom) direction so diagrams stay narrow in both rendered and source form. Source should be readable as fallback in diff views, email notifications, and Slack previews.
318
+ - **ASCII/box-drawing diagrams** for annotated flows that need rich in-box content -- decision logic branches, file path layouts, step-by-step transformations with annotations. More expressive than mermaid when the diagram's value comes from annotations within steps. Follow 80-column max for code blocks, use vertical stacking.
319
+ - **Markdown tables** for mode/variant comparisons, before/after data, and decision matrices.
320
+ - Keep diagrams proportionate to the change. A PR touching a 5-component interaction gets 5-8 nodes. A larger architectural change may need 10-15 nodes -- that is fine if every node earns its place.
321
+ - Place inline at the point of relevance within the description, not in a separate "Diagrams" section.
322
+ - Prose is authoritative: when a visual aid and surrounding description prose disagree, the prose governs.
323
+
324
+ After generating a visual aid, verify it accurately represents the change described in the PR -- correct components, no missing interactions, no merged steps. Diagrams derived from a diff (rather than from code analysis) carry higher inaccuracy risk.
325
+
326
+ #### Numbering and references
327
+
328
+ **Never prefix list items with `#`** in PR descriptions. GitHub interprets `#1`, `#2`, etc. as issue/PR references and auto-links them. Instead of:
329
+
330
+ ```markdown
331
+ ## Changes
332
+ #1. Updated the parser
333
+ #2. Fixed the validation
334
+ ```
335
+
336
+ Write:
337
+
338
+ ```markdown
339
+ ## Changes
340
+ 1. Updated the parser
341
+ 2. Fixed the validation
342
+ ```
343
+
344
+ When referencing actual GitHub issues or PRs, use the full format: `org/repo#123` or the full URL. Never use bare `#123` unless you have verified it refers to the correct issue in the current repository.
345
+
346
+ #### Systematic badge
347
+
348
+ Append a badge footer to the PR description, separated by a `---` rule. Do not add one if the description already contains a Systematic badge (e.g., added by another skill like ce-work).
349
+
350
+ **Plugin version (pre-resolved):** !`jq -r .version "${CLAUDE_PLUGIN_ROOT}/.claude-plugin/plugin.json"`
351
+
352
+ If the line above resolved to a semantic version (e.g., `2.42.0`), use it as `[VERSION]` in the versioned badge below. Otherwise (empty, a literal command string, or an error), use the versionless badge. Do not attempt to resolve the version at runtime.
353
+
354
+ **Versioned badge** (when version resolved above):
355
+
356
+ ```markdown
357
+ ---
358
+
359
+ [![Systematic v[VERSION]](https://img.shields.io/badge/Systematic-v[VERSION]-6366f1)](https://github.com/marcusrbrown/systematic)
360
+ 🤖 Generated with [MODEL] ([CONTEXT] context, [THINKING]) via [HARNESS](HARNESS_URL)
361
+ ```
362
+
363
+ **Versionless badge** (when version is not available):
364
+
365
+ ```markdown
366
+ ---
367
+
368
+ [![Systematic](https://img.shields.io/badge/Systematic-6366f1)](https://github.com/marcusrbrown/systematic)
369
+ 🤖 Generated with [MODEL] ([CONTEXT] context, [THINKING]) via [HARNESS](HARNESS_URL)
370
+ ```
371
+
372
+ Fill in at PR creation time:
373
+
374
+ | Placeholder | Value | Example |
375
+ |-------------|-------|---------|
376
+ | `[MODEL]` | Model name | Claude Opus 4.6, GPT-5.4 |
377
+ | `[CONTEXT]` | Context window (if known) | 200K, 1M |
378
+ | `[THINKING]` | Thinking level (if known) | extended thinking |
379
+ | `[HARNESS]` | Tool running you | OpenCode, Codex, Gemini CLI |
380
+ | `[HARNESS_URL]` | Link to that tool | `https://opencode.ai` |
381
+
382
+ ### Step 7: Create or update the PR
383
+
384
+ #### New PR (no existing PR from Step 3)
385
+
386
+ ```bash
387
+ gh pr create --title "the pr title" --body "$(cat <<'EOF'
388
+ PR description here
389
+
390
+ ---
391
+
392
+ [BADGE LINE FROM BADGE SECTION ABOVE]
393
+ 🤖 Generated with [MODEL] ([CONTEXT] context, [THINKING]) via [HARNESS](HARNESS_URL)
394
+ EOF
395
+ )"
396
+ ```
397
+
398
+ Use the versioned or versionless badge line resolved in the Systematic badge section above.
399
+
400
+ Keep the PR title under 72 characters. The title follows the same convention as commit messages (Step 2).
401
+
402
+ #### Existing PR (found in Step 3)
403
+
404
+ The new commits are already on the PR from the push in Step 5. Report the PR URL, then ask the user whether they want the PR description updated to reflect the new changes. Use the platform's blocking question tool (`question` in OpenCode, `request_user_input` in Codex, `ask_user` in Gemini). If no question tool is available, present the option and wait for the user's reply before proceeding.
405
+
406
+ - If **yes** -- write a new description following the same principles in Step 6 (size the full PR, not just the new commits). Classify commits per "Classify commits before writing" -- the new commits since the last push are often fix-up work (code review fixes, lint fixes) and should not appear as distinct items in the updated description. Describe the PR's net result as if writing it fresh. Include the Systematic badge unless one is already present in the existing description. Apply it:
407
+
408
+ ```bash
409
+ gh pr edit --body "$(cat <<'EOF'
410
+ Updated description here
411
+ EOF
412
+ )"
413
+ ```
414
+
415
+ - If **no** -- done. The push was all that was needed.
416
+
417
+ ### Step 8: Report
418
+
419
+ Output the PR URL so the user can navigate to it directly.