accessibility-complian…
Web accessibility patterns for news and academic sites. Use for WCAG audits, alt text, accessible data viz, and assistive tech.
Crisis communication and rapid-response workflows. Use when covering breaking news or coordinating fast fact-checking on deadline.
$ npx -y skills add jamditis/claude-skills-journalism --skill crisis-communications --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/crisis-communicationsContext preview
The summary Claude sees to decide when to auto-load this skill.
Crisis communication and rapid-response workflows. Use when covering breaking news or coordinating fast fact-checking on deadline.
name: crisis-communications description: Crisis communication and rapid-response workflows. Use when covering breaking news or coordinating fast fact-checking on deadline.
Frameworks for accurate, rapid communication during high-pressure situations.
<!-- untrusted-content-contract:v1 -->
When this skill retrieves third-party material:
Use this shape when passing retrieved material onward:
<EXTERNAL_DATA source="..."> ... </EXTERNAL_DATA>
## Breaking news response **Event**: [Brief description] **Time detected**: [HH:MM] **Initial source**: [Where we learned of this] ### Immediate actions (0-10 min) - [ ] Verify event is real (minimum 2 independent sources) - [ ] Alert editor/team lead - [ ] Check wire services (AP, Reuters, AFP) - [ ] Monitor official accounts (agencies, officials) - [ ] DO NOT publish unverified claims ### Verification phase (10-30 min) - [ ] Primary source contacted/confirmed - [ ] Location verified (if applicable) - [ ] Official statement obtained or requested - [ ] Eyewitness accounts gathered (note: unverified) - [ ] Social media claims flagged for verification ### First publication decision - [ ] What we KNOW (confirmed facts only) - [ ] What we DON'T know (be explicit) - [ ] What we're working to confirm - [ ] Attribution clear for every claim
from enum import Enum
from dataclasses import dataclass
from typing import List
class CrisisLevel(Enum):
LEVEL_1 = "routine" # Single reporter can handle
LEVEL_2 = "elevated" # Editor involvement needed
LEVEL_3 = "major" # Multiple reporters, editor oversight
LEVEL_4 = "critical" # All hands, executive involvement
@dataclass
class BreakingEvent:
description: str
level: CrisisLevel
confirmed_facts: List[str]
unconfirmed_claims: List[str]
sources_contacted: List[str]
assigned_reporters: List[str]
def escalation_needed(self) -> bool:
"""Determine if event needs escalation."""
triggers = [
len(self.unconfirmed_claims) > 5, # Too many unknowns
"fatalities" in self.description.lower(),
"official" in self.description.lower(),
"government" in self.description.lower(),
]
return any(triggers)
ESCALATION_TRIGGERS = {
CrisisLevel.LEVEL_2: [
"Multiple fatalities confirmed",
"Major public figure involved",
"Legal/liability concerns",
"Significant local impact",
],
CrisisLevel.LEVEL_3: [
"National news potential",
"Active danger to public",
"Major institution affected",
"Coordinated misinformation detected",
],
CrisisLevel.LEVEL_4: [
"Mass casualty event",
"Government/democracy implications",
"Our organization directly involved",
"Imminent physical threat",
],
}When time is critical, prioritize these checks:
## Rapid verification checklist ### Source check (1 min) - [ ] Who is claiming this? - [ ] Are they in position to know? - [ ] Have they been reliable before? ### Corroboration (2 min) - [ ] Does anyone else confirm? - [ ] Check wire services - [ ] Check official sources ### Red flags (1 min) - [ ] Too perfect/dramatic? - [ ] Matches known false narratives? - [ ] Single source only? ### Decision (1 min) - [ ] PUBLISH: Multiple credible sources, no red flags - [ ] HOLD: Needs more verification - [ ] MONITOR: Developing, don't publish yet
For verification mechanics (source credibility, image/video checks, archiving evidence), use the **source-verification** skill. This skill focuses on the time-pressure layer: what to triage first, who decides to publish, and how to communicate uncertainty.
Triage rule: claims with the highest physical-harm or election-impact potential go first, then claims that name specific people, then everything else.
For when you need to say something but facts are incomplete:
## Initial statement template [Organization] is aware of [brief description of situation]. We are actively [gathering information / investigating / monitoring the situation]. [If applicable: The safety of [stakeholders] is our top priority.] We will provide updates as verified information becomes available. For media inquiries: [contact] For [affected parties]: [resource/hotline] Last updated: [timestamp]
## Correction
A collection of Agent Skills for journalists, researchers, academics, media professionals, and communications practitioners. The same repository serves Claude Code and Codex while keeping Claude-only commands, agents, and hooks clearly labeled.
Repo: jamditis/claude-skills-journalism
Web accessibility patterns for news and academic sites. Use for WCAG audits, alt text, accessible data viz, and assistive tech.
Scans the session for lessons and workflows, then proposes scoped CLAUDE.md edits. Use for save this lesson or add to context.
Manages attention and evidence in long agent sessions. Use for lost instructions, dropped evidence, or large multi-agent contexts.
Directs the current request through configured lower-tier agents. Use only for explicit /director or /dev-toolkit:director invocation.
Electron desktop apps with React, TypeScript, and Vite. Use for IPC, window/tray, PTY terminals, WebRTC, and packaging.
Remote JavaScript console and debugging on mobile. Use for phone/tablet console errors, responsive testing, Eruda, and vConsole.