press-release-writing
Press release writing in AP style with inverted pyramid structure. Covers formatting, datelines, quotes, boilerplates, and fact-checking. Use for: product launches, funding announcements, partnerships, company news, events. Triggers: press release, pr writing, media release, news release, announcement, product launch announcement, funding announcement, company news, media advisory, ap style, press statement, news wire
What this skill does
> **Install the belt CLI skill:** `npx skills add belt-sh/cli`
# Press Release Writing
Write professional press releases with research and fact-checking via [inference.sh](https://inference.sh) CLI.
## Quick Start
> Requires inference.sh CLI (`belt`). [Install instructions](https://raw.githubusercontent.com/inference-sh/skills/refs/heads/main/cli-install.md)
```bash
belt login
# Research for fact-checking and context
belt app run tavily/search-assistant --input '{
"query": "SaaS funding rounds Q1 2024 average series A size"
}'
```
## AP Style Format
### Structure
```
HEADLINE IN TITLE CASE, PRESENT TENSE, NO PERIOD
Optional Subheadline With More Detail
CITY, STATE (Month Day, Year) — Lead paragraph with WHO, WHAT, WHEN,
WHERE, and WHY in the first 25 words.
Second paragraph expands on the lead with supporting details, context,
and significance.
"Executive quote providing perspective on the announcement," said
[Full Name], [Title] at [Company]. "Second sentence of quote adding
depth or forward-looking statement."
Body paragraphs with additional details, arranged in descending order
of importance (inverted pyramid).
"Supporting quote from partner, customer, or analyst," said
[Full Name], [Title] at [Organization].
Final paragraph with availability, pricing, or next steps.
About [Company]
[Company] is a [description]. Founded in [year], the company
[brief background]. For more information, visit [website].
Media Contact:
[Name]
[Email]
[Phone]
```
## Section-by-Section Guide
### Headline
```
❌ Company X Announces Revolutionary New Product That Will Change Everything!
❌ Press Release: Company X
❌ Company X's Amazing Product Launch
✅ Company X Launches AI-Powered Analytics Platform for Enterprise Teams
✅ Company X Raises $25 Million Series B to Expand Global Operations
✅ Company X Partners With Acme Corp to Accelerate Cloud Migration
```
**Rules:**
- Present tense, active voice
- No period at end
- No superlatives ("revolutionary", "groundbreaking", "best-in-class")
- No exclamation points
- Include the key news element
- Title case
### Dateline
```
SAN FRANCISCO, Jan. 15, 2026 —
NEW YORK, March 3, 2026 —
LONDON, Dec. 10, 2026 —
```
**AP month abbreviations:** Jan., Feb., Aug., Sept., Oct., Nov., Dec. (March, April, May, June, July spelled out)
### Lead Paragraph
Answer WHO, WHAT, WHEN, WHERE, WHY in 25-35 words:
```
❌ "We are thrilled to announce that after months of hard work, our talented
team has created something truly special that we think you'll love."
✅ "Company X, a developer tools startup, today launched DataFlow, an
AI-powered analytics platform that automates reporting for enterprise
engineering teams."
```
### Quotes
**Rules:**
- 1-2 quotes maximum (CEO/founder + partner/customer)
- Never start a quote with "I"
- Attribution format: "Quote," said Full Name, Title at Company.
- Quotes should add perspective, not repeat facts from the body
- Forward-looking quotes work well: "We believe this will..."
```
❌ "I am so excited about this launch," said John Smith.
❌ "We launched a new product today," said the CEO.
✅ "Enterprise teams spend an average of 15 hours per week on manual
reporting," said Sarah Chen, CEO of Company X. "DataFlow eliminates
that burden entirely, letting engineers focus on building."
✅ "Since adopting DataFlow, our reporting cycle dropped from three days
to three minutes," said Marcus Lee, VP of Engineering at Acme Corp.
```
### Boilerplate (About Section)
```
About Company X
Company X is a [category] company that [what it does] for [who].
Founded in [year] and headquartered in [city], the company serves
[number] customers across [industries/geographies]. For more
information, visit www.companyx.com.
```
Keep to 3-4 sentences. Consistent across all press releases.
### Media Contact
```
Media Contact:
Jane Doe
PR Manager, Company X
[email protected]
(555) 123-4567
```
## The Inverted Pyramid
Most important information first. Each paragraph is less critical than the one before. Editors cut from the bottom.
```
┌─────────────────────────┐
│ MOST IMPORTANT │ Lead: core announcement
│ (Who, What, When, │
│ Where, Why) │
├─────────────────────────┤
│ IMPORTANT DETAILS │ Supporting facts, context
│ (How, stats, quotes) │
├─────────────────────────┤
│ BACKGROUND │ Industry context, history
│ (Context, trends) │
├─────────────────────────┤
│ ADDITIONAL INFO │ Availability, pricing
│ (Nice to have) │
├─────────────────────────┤
│ BOILERPLATE │ About section, contact
└─────────────────────────┘
```
## Research & Fact-Checking
### Verify Claims
```bash
# Check market size claims
belt app run tavily/search-assistant --input '{
"query": "enterprise analytics market size 2024 2025 forecast"
}'
# Verify competitor claims
belt app run exa/search --input '{
"query": "Company X competitors enterprise analytics market share"
}'
# Get industry statistics
belt app run exa/answer --input '{
"question": "How much time do engineering teams spend on reporting weekly?"
}'
```
### Add Context
```bash
# Industry trends for the "why now" angle
belt app run tavily/search-assistant --input '{
"query": "AI automation enterprise reporting trends 2024"
}'
```
## Press Release Types
### Product Launch
**Focus:** What it does, who it's for, why it matters, availability
**Quote:** CEO or product lead on the vision
### Funding Announcement
**Focus:** Amount, round, lead investor, what funds will be used for
**Quote:** CEO on growth plans + lead investor on why they invested
### Partnership
**Focus:** What the partnership enables, benefits to customers
**Quote:** One from each company
### Milestone / Achievement
**Focus:** The metric, growth trajectory, what it means
**Quote:** CEO on the journey and what's next
### Executive Hire
**Focus:** Who, their background, what they'll lead
**Quote:** CEO on why this hire + new exec on why they joined
## Length Guidelines
| Element | Length |
|---------|--------|
| Headline | 10-15 words |
| Subheadline (optional) | 15-25 words |
| Total body | 400-600 words |
| Quotes | 2-3 sentences each, max 2 quotes |
| Boilerplate | 3-4 sentences |
| **Total** | **500-800 words** |
Over 800 words and editors won't read it. Under 400 and it lacks substance.
## AP Style Quick Reference
| Rule | Example |
|------|---------|
| Numbers 1-9 spelled out, 10+ as digits | "nine employees" / "10 employees" |
| Percent as one word | "15 percent" (not 15% in body text) |
| Titles before names capitalized | "CEO Sarah Chen" |
| Titles after names lowercase | "Sarah Chen, chief executive officer" |
| Company names: no Inc./Corp. in body | "Company X" not "Company X, Inc." |
| Dates: month day, year | "Jan. 15, 2026" |
| States abbreviated in dateline | "SAN FRANCISCO, Calif." |
| Serial comma: AP does NOT use it | "fast, simple and effective" |
## Common Mistakes
| Mistake | Problem | Fix |
|---------|---------|-----|
| Superlatives | "Revolutionary" = ignored by editors | State facts, let readers judge |
| Exclamation points | Unprofessional | Never use in press releases |
| Starting quotes with "I" | Informal, weak opening | Start with a fact or insight |
| Burying the lead | Key news in paragraph 3 | Most important info first |
| Too long | Won't be read | 500-800 words max |
| Jargon | Alienates non-expert readers | Write for a general audience |
| No fact-checking | Credibility risk | Verify all claims and statistics |
| Missing contact info | Journalists can't follow up | Always include media contact |
## Checklist
- [ ] Headline: present tense, active voice, no period, no superlatives
- [ ] Dateline: correct AP format (CITY, STATE, date)
- [ ] Lead: WHO, WHAT, WHEN, WHERE, WHY in first 25 words
- [ ] Inverted pyramid: most important first
- [ ] Quotes: attributed, don't start with "I", add perspective
- [ ] All claims and statistics fact-checked
- [ ]Related in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing — use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.