adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
List open PRs, filter automation PRs, group by ticket ID, format as Markdown. Use when: user asks for PR summary, PR status, or /pr-summary
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill pr-summary --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pr-summaryContext preview
The summary Claude sees to decide when to auto-load this skill.
List open PRs, filter automation PRs, group by ticket ID, format as Markdown. Use when: user asks for PR summary, PR status, or /pr-summary
name: pr-summary description: "List open PRs, filter automation PRs, group by ticket ID, format as Markdown. Use when: user asks for PR summary, PR status, or /pr-summary" allowed-tools: Bash(git:*), Bash(gh:*), Bash(bash:*)
List open PRs, filter automation PRs (dependabot/snyk), group by ticket ID, output formatted summary.
| Scenario | Use Instead | |----------|-------------| | Create a new PR | `/create-pr` | | Review PR code | `/codex-review` | | View single PR details | `gh pr view <N>` | | Pre-merge analysis | `/merge-prep` |
`/pr-summary [--author <user>] [--label <label>]`
| Argument | Description | Default | |----------|-------------|---------| | `--author <user>` | Filter by author | All | | `--label <label>` | Filter by label | All |
bash skills/pr-summary/scripts/pr-summary.sh [--author <user>] [--label <label>]
The script automatically:
| Step | Action | |------|--------| | Fetch | `gh pr list --json` to get open PRs (max 200) | | Filter | Exclude `dependabot/*` and `snyk-*` | | Group | Group by ticket ID (`{TICKET_PATTERN}` or `[A-Z]+-\d+`) | | Detect | Identify stacked PRs (base is not main/master/develop) | | Output | Write formatted text to `/tmp/pr-summary.md` |
Read `/tmp/pr-summary.md` and display to user.
Content written to /tmp/pr-summary.md Copy: cat /tmp/pr-summary.md | pbcopy
**PROJ-520** https://github.com/user/repo/pull/123 > fix: Add Redis cache for contract codes https://github.com/user/repo/pull/124 > fix: Tune server timeouts (stacked on fix/PROJ-520) **PROJ-123** https://github.com/user/repo/pull/99 > feat: Add DeFi portfolio tracking
| Condition | Strategy | |-----------|----------| | Same ticket ID | Same group | | Stacked PR (base is feature branch) | Same group, annotate `(stacked on <base>)` | | No ticket / unrelated | Standalone entry |
| PR Source | Action | |-----------|--------| | `dependabot/*` | Exclude | | `snyk-*` | Exclude | | Others | Keep |
| File | Purpose | |------|---------| | [pr-summary.sh](scripts/pr-summary.sh) | PR fetch, filter, group, format script |
Language: English | 繁體中文 | 简体中文 | 日本語 | 한국어 | Español The harness layer for Claude Code. Let the model choose the path. Keep "done" verifiable. Full control plane on Claude Code. Skills-only distribution for Codex CLI and other compatible agents.
Repo: sd0xdev/sd0x-dev-flow
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Architecture design and documentation. Produces 3-architecture.md with component diagrams, data flow, integration points, and architecture decisions. Reads…
Context-aware Q&A with auto context gathering. Use when: user has a quick question about codebase, git history, rules, docs, or skills during development. Not…
Industry best practices conformance audit with mandatory adversarial debate. Produces audit artifact: verdict (OK/WARN/FAIL) + gap roadmap + debate proof. Use…
Bug fix workflow. Use when: fixing bugs, resolving issues, regression fixes. Not for: new features (use feature-dev), understanding code (use code-explore).…
Bump package and plugin version in sync. Updates package.json, .claude-plugin/plugin.json, and install-state manifest to the same version. Use when: user says…