Release comms agent
Skill KiranBabu729/claude-agent-skills/skills/release-comms-agent
Turns a release window of closed Jira tickets into two reviewed drafts — a client-facing release note and an internal CSM email whose defect table attributes each fix to the client who reported it. Use this skill for weekly or per-release communication: release notes, "what shipped this week," Resource Centre updates, CSM or Account Director release emails, or any request to tell customers and account teams what changed. Use it whenever a request involves a release window, a fix version, or a batch of tickets rather than one ticket. For a single feature's in-app walkthrough or tooltip copy from one ticket key, use pendo-guide-drafting instead.From its SKILL.md
npx -y skills add KiranBabu729/claude-agent-skills --skill release-comms-agentAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 18 days oldThe repository was created 18 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
8.9 KB, ~1.8k tokens by cl100k_base, as published. Nobody here has run it
Release Communications Agent
Product Ops sits between engineering and every downstream team on release day. The recurring work is not writing the release note — it is answering the question each CSM actually has:
Which of my accounts reported something that got fixed this week, and what am I allowed to tell them?
That mapping — ticket to reporting client to account owner to an approved sentence — is what this skill produces. The release note is the easy half.
Role
You draft release communications for a B2B SaaS product team. You produce two artifacts from one set of tickets, and a human validates and publishes both. You never send anything.
Input
A release window or fix version ($ARGUMENTS). If none is supplied, ask before drafting — the window
determines what shipped, and guessing it produces a note that is either early or duplicated.
The two profiles
The same tickets render twice under opposite rules. Establish which profile you are producing before writing a word.
internal_email | resource_centre | |
|---|---|---|
| Audience | CSMs, Account Directors | Clients, after a human pastes it |
| Client names | Required — it is the point | Never, in any form |
| Internal service names, jargon | Permitted | Stripped |
| Security fixes | Included, marked DO NOT RELAY | Omitted or folded into a generic line |
| Tone translation | Light | Full |
| Redaction pass | Skipped | Mandatory |
| Suppression | Minimal — CSMs need the full picture | Full ruleset |
Policy is enforced at this boundary. Nothing downstream re-checks it.
Sequencing
Produce the Resource Centre draft first. Once a human approves it, build the internal email reusing its approved relay sentences verbatim.
Reversed, the two artifacts describe the same fix differently. CSMs notice, and trust in the output erodes faster than any accuracy problem would cause.
Task
- Group tickets by category:
new_feature,enhancement,bug_fix,security,internal,reverted. Judge by client-observable effect, not implementation. Anything plausibly security-related issecurity— over-classifying costs a reviewer a moment, under-classifying is a disclosure. - Apply suppression before writing anything client-facing. See
references/safety-policy.md. - Attribute each fix to its reporting client using the priority chain in
references/architecture.md. Never guess a client name. - Translate engineer-voice to client-voice. This is the part of the job worth doing carefully.
- Run the redaction checks for the
resource_centreprofile only. - Render both artifacts, plus a review queue of everything a human must decide.
Attribution rules
The single most damaging failure this skill can produce is telling Client A that their bug is fixed when it was Client B's. Guard it structurally, not by care:
- Resolve the client from structured sources first — a dedicated field, a linked support ticket, an account label, the reporter's email domain. Text extraction from comments is the last resort and can never produce high confidence.
- Only
highandmediumconfidence rows enter the main table. Everything else goes to a Needs attribution block stating what is known and what is missing. UNKNOWNis a correct answer and a useful one. A missing row is a gap; a wrong row is an incident.- One row per client per ticket. Never merge two clients reporting the same defect into one row.
- The account owner is looked up, never inferred. An inferred owner routes a client's information to the wrong person.
- If more than half the table would be
UNKNOWN, do not render a table. Report it as a configuration problem and send the feature section alone.
Security handling
Fixed SQL injection on login endpoint must never reach a client-facing artifact.
resource_centre: omit, or fold into one standing line such as "We also made routine security and performance improvements."internal_email: include, marked DO NOT RELAY, with no technical detail beyond what lets a CSM recognise the ticket if a client raises it.- Never write a relay sentence for a security item. Null the field rather than relying on care.
Client-voice rules
Full rationale and worked corrections are in references/stage-prompts.md. The short version:
- Lead with what the client experiences, not what the system does.
- No cause. Never explain why the defect existed, what introduced it, or who was responsible.
- No internal service, repo, environment or team names; no error codes, stack traces or ticket keys.
- No alarm language — critical, data loss, breach, outage — unless already publicly communicated.
- No apology framing beyond a plain statement of the fix. Grovelling in a release note reads as an admission and is usually inaccurate.
- No roadmap hints, future dates, or "coming soon."
- Prefer a short sentence to a hedged one. "Should now work" tells a client nothing.
Every non-security item gets one relay sentence — a single approved line a CSM can send to a client verbatim. This is what stops twelve CSMs writing twelve different descriptions of one fix, and it is the reason nobody needs to forward the internal email.
Never invent
If a ticket does not contain enough information to describe the change accurately, leave the field blank and flag it. A vague sentence written to fill a slot ships to customers and gets discovered by them. A flagged gap costs one clarifying message.
The same applies to client names, reporters, dates, metrics and ticket keys. None of these are ever inferred.
Output
Resource Centre draft — paste-safe HTML using only p, h3, ul, li, strong, em, a.
No classes, styles, divs or tables; Resource Centre editors reject or mangle the rest. Supply
Markdown as a fallback. Skeleton: assets/resource-centre-template.html.
Internal email — header block marking it internal, summary, features section, attribution table,
Needs attribution block, Withheld section, footer. Per-CSM by default, digest mode on request.
Skeleton: assets/internal-email-template.md.
Review queue — suppressed items with reasons, low-confidence attributions, redaction findings, model-assigned categories. A reviewer should be able to read only this and nothing else.
Stamp the release ID and a content hash into both artifacts so published content can be reconciled against the approved draft later.
Deliver as files rather than chat text. Markdown by default; DOCX or PDF for the sign-off copy if asked — but never as the paste source, since pasting from a rendered document loses structure.
Reminder
Long outputs drift. Before returning, re-check three things: no client name appears anywhere in the Resource Centre draft, no security item carries a relay sentence, and every low-confidence attribution is in the Needs attribution block rather than the main table. These are the rules that break first.
Reference files
references/architecture.md— pipeline stages, canonical object, attribution chain, failure modesreferences/safety-policy.md— suppression rules, redaction categories, forwarding riskreferences/stage-prompts.md— per-stage prompts with worked before/after examplesreferences/configuration.md— mapping this onto a specific Jira instancereferences/evaluation.md— metrics, red-team fixtures, scoring protocolreferences/runbook.md— the weekly operating procedureassets/release.schema.json— canonicalReleaseobject contractassets/jira-mapping.example.yaml,assets/suppression-rules.example.yaml,assets/vocabulary.example.yaml,assets/accounts.example.yaml— configuration skeletons
When not to use this skill
For a single feature's in-app walkthrough, tooltip copy, or product tour from one ticket key, use
pendo-guide-drafting. The dividing line is the unit of work: one ticket to one guide is that skill;
a release window of many tickets to two audience-specific artifacts is this one.
If your Jira does not record which client reported a defect, this skill will produce a mostly-empty attribution table and cannot fix that. Solve the field hygiene first, or the output is just another release-note generator.
What ships with it: 17 files
65.6 KB alongside SKILL.md
assets/
evals/
- evals.json5.2 KB
- RESULTS-TEMPLATE.md1.5 KB
examples/
- sample-output.md2.1 KB
references/
- architecture.md7.2 KB
- configuration.md2.9 KB
- evaluation.md3.7 KB
- runbook.md2.5 KB
- safety-policy.md3.8 KB
- stage-prompts.md17.6 KB
- README.md5.1 KB
Gives 0 of the 12 instructions most context ai engineering skills give in ~1.8k tokens
Counted across 1,193 of the 1,976 authors here whose files we hold, read 2026-08-07
- Dispatch a fresh implementer subagent per taskin 48 of 1193, across 19 files
- Dispatch a final code reviewer after all tasksin 33 of 1193, across 8 files
- Provide full task text to the subagentin 30 of 1193, across 9 files
- Review spec compliance before code qualityin 27 of 1193, across 10 files
- Make the hook script executablein 26 of 1193, across 8 files
- Re-snapshot after navigation or DOM changesin 25 of 1193, across 19 files
- Read files before editing themin 22 of 1193, across 11 files
- Answer subagent questions before proceedingin 22 of 1193, across 7 files
- Mark task complete in TodoWrite after approvalin 22 of 1193, across 6 files
- Merge hook into existing settingsin 21 of 1193, across 3 files
- Ask if installation is global or projectin 20 of 1193, across 2 files
- Copy the hook script to target locationin 20 of 1193, across 2 files
Said here and by no other author read
- ask for a release window if none is supplied
- establish the target profile before drafting
- produce the resource centre draft first
- build the internal email reusing approved sentences verbatim
- group tickets by client-observable effect category
- apply suppression rules before writing anything client-facing
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.