nebula: Skill for Claude Code

.claude/skills/pr-description/SKILL.md

pr-description is a skill for Claude Code from AgentSystemLabs/nebula. It costs 125 tokens per session (3,928 once invoked), scanned B, original, MIT.

Write a pull request description for the current branch in nebula's house style — a clickable table of contents, benefit-grouped sections a reader can scan, screenshots of the change, a mermaid diagram of the change, a risk read in the pr-reviewer's order, and a technical overview — from one of ten templates, then…

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: mentions Claude Code; mentions AGENTS.md.

This is AgentSystemLabs/nebula's own configuration. It tells Claude Code how to work on nebula itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything nebula configures →

Reuse

Borrowing it

Nothing to install: this file belongs to AgentSystemLabs/nebula. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/AgentSystemLabs/nebula/main/.claude/skills/pr-description/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/AgentSystemLabs/nebula

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pr-description

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentsystemlabs/nebula/pr-description.svg)](https://agentmods.dev/skills/agentsystemlabs/nebula/pr-description)
Your own site
<a href="https://agentmods.dev/skills/agentsystemlabs/nebula/pr-description"><img src="https://agentmods.dev/badge/skills/agentsystemlabs/nebula/pr-description.svg" alt="Measured on agentmods" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,928 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin unknown No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00125 $0.03928
Opus 5 $0.00063 $0.01964
Sonnet 5 $0.00025 $0.00786
Haiku 4.5 $0.00013 $0.00393

Measured today against content hash 0068d030a577, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

pr-description scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

grep -ril '<slug or TERM>' .claude/memory/entries # the task's MEMORY LOG entry: the why and the gotchas
.claude/skills/pr-description/SKILL.md · 228 lines

How it starts

The opening of the file, as written. The whole thing — 228 lines — stays where its author put it; the contents beside it link to each section on GitHub.

A PR description is read three times: by the reviewer deciding whether to open the diff, by the person six weeks later asking why the code looks like this, and by the PR ARCHIVE (.claude/memory/prs/), which renders every merged PR into Markdown so a future agent can grep the why without a network call. Write for all three: high level first, a picture before a paragraph, the mechanism at the bottom where only the reviewer scrolls.

This skill produces the body. The title is the commit-subject rule from the RELEASE SKILL: what a user now gets, not what the diff did ("Workspaces as a top tab bar, and one nebula instance per checkout", never "feat(tui): add tabs").

What every PR body carries — no exceptions

  1. A table of contents at the top, one link per ## section, so the reader clicks straight to the part they want. GitHub gives a PR body's headings no anchors of their own, so every linked heading ends with <a id="…"></a> and the link names that id with GitHub's prefix, #user-content-… — see GitHub anchors below; a dead TOC is worse than none.
  2. Screenshots of the change. A TUI change without a picture is a claim. At least one PNG of the screen after the change; a before/after pair when the change replaces something. Captured with the SCREENSHOT HARNESS, hosted on the pr-assets branch (recipe below). A change with no screen (a daemon mechanism, a CLI flag) shows its terminal output in a fenced block and a diagram, and says why there is no screenshot.
  3. A mermaid diagram of the change, in a ```mermaid fence — GitHub renders it inline. Draw the change, not the whole system: the new flow, the state that moved, the crates touched. flowchart, sequenceDiagram and stateDiagram-v2 cover nearly every PR here; the templates show which fits which shape.
  4. Categories a reader can scan. Benefit groups (🚀 Launch faster, 🔔 Know when it's done) or change classes (✨ Feature · 🐛 Fix · 📝 Docs · 🧪 Tests · ♻️ Refactor) — one emoji per heading, never on the bullets. A fix files under the feature whose promise it keeps. Inside a section a bullet is a bold hook and a dash, then two to four indented sub-bullets of one fact each — the key or command in backticks, a setting in the Settings › Sessions › done_sound form, a behaviour — never a paragraph (2026-09-05: PR #30's first cut could not be glanced through). When the change touches something the user likes, one bullet says what stayed the same. Credit contributors inline: Thanks @handle (#NN). No file paths, symbols or line numbers above the technical overview.
  5. A technical overview section, last before the notes, for the reviewer: the mechanism in a few sentences, the files that matter with a clause each, the rejected approach they would ask about, the gate ("make ci green: fmt, clippy, 687 tests"). Everything above it stays high level.
  6. A risk section, directly above the technical overview: the author's own read of what merging could break, in the PR REVIEWER SKILL's order — 🔒 security and production-merge risk, ⚡ performance cost, 🧩 fit with the codebase's patterns — one table row each, rated Low / Medium / High with a one-clause why, a 🟢 / 🟡 / 🔴 verdict above the table, and a Rollback line saying what a git revert undoes and what it does not (a PROTOCOL VERSION bump, a migrated store, a pushed branch). "No risk" is never bare: a docs-only or prose-only PR says why nothing runs. The reviewer checks this read against the diff, so write it as the reviewer would, not as the seller.
  7. The footer. Every PR body ends with the line the harness gives you (currently 🤖 Generated with [Claude Code](https://claude.com/claude-code) plus the session link) — keep it verbatim, last, after a blank line.

Every fact comes from the diff, the commits and the MEMORY LOG entry of the task; do not add a claim the code does not make. A gate that did not run is stated as such (PR #22: "cargo test could not be run in this headless session — please run the test suite before merging"), never implied.

Read the full file on GitHub · 228 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 228 lines · 125 tokens per session scan B 0068d030a577

Subscribe to this mod's changes

pr-description is a skill published in the GitHub repository AgentSystemLabs/nebula (106 stars, last pushed today), licensed MIT. It adds 125 tokens to every session and 3,928 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-06.

Related

Other skills, from other repositories

review-implement-phase

Implements triaged review actions, commits focused fixes, and posts Done plus resolves threads. Use when the user wants only the implementation phase of the review-framework workflow.

prisma/orm · 38 tokens

engram-branch-pr

PR creation workflow for Engram following the issue-first enforcement system. Trigger: When creating a pull request, opening a PR, or preparing changes for review.

Gentleman-Programming/engram · 37 tokens

verify-behavior

Verify or reproduce visible product behavior by driving the real UI with pi-computer-use's checked tools, requiring verified expect postconditions and durable state evidence for meaningful UI flows. Use when triage needs visual reproduction, implementation needs behavioral proof, review needs interactive confirmation…

nicknisi/dotfiles · 68 tokens

github-contributor

End-to-end playbook for shipping high-quality pull requests to open-source projects you don't maintain — discovery, CONTRIBUTING compliance, PR-size check, minimal-diff implementation, PR description with AI-assisted disclosure, conflict resolution, and post-submission maintainer interaction. Use whenever creating…

daymade/claude-code-skills · 133 tokens

revdiff

Review diffs, files, and documents with inline annotations in a TUI overlay, or answer questions about revdiff usage, configuration, themes, and keybindings. Opens revdiff in agterm/tmux/zellij/herdr/kitty/wezterm/cmux/ghostty/iterm2/emacs-vterm, captures annotations, and addresses them. Works in git, hg, and jj repos…

umputun/revdiff · 248 tokens

write-pr

Reference standards for writing pull request titles and descriptions in the tldraw repository, plus the pre-flight comment sweep over the diff. Use as supporting guidance when another skill or workflow needs PR content standards, not as the user-facing create/update PR workflow.

tldraw/tldraw · 53 tokens