ideogram-incident-runbook
Execute Ideogram incident response with triage, mitigation, and postmortem. Use when responding to Ideogram-related outages, investigating errors, or running post-incident reviews for Ideogram integration failures. Trigger with phrases like "ideogram incident", "ideogram outage", "ideogram down", "ideogram on-call", "ideogram emergency", "ideogram broken". '
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill ideogram-incident-runbook --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Ideogram Incident Runbook ## Overview Rapid incident response for Ideogram API outages, auth failures, rate limiting, and degraded generation quality. Covers triage, immediate remediation, fallback activation, and postmortem process. ## Severity Levels | Level | Definition | Response Time | Example | |-------|------------|---------------|---------| | P1 | API unreachable or all requests failing | < 15 min | 401 on valid key, 500 on all requests | | P2 | Degraded quality or performance | < 1 hour | P95 latency > 30s, high 429 rate | | P3 | Minor impact, workaround exists | < 4 hours | Occasional safety rejections, slow downloads | | P4 | No user impact | Next business day | Monitoring gaps, stale cache | ## Quick Triage (Run These First) ```bash set -euo pipefail echo "=== IDEOGRAM TRIAGE ===" # 1. Test API connectivity and auth echo -n "API status: " curl -s -o /dev/null -w "%{http_code}" \ -X POST https://api.ideogram.ai/generate \ -H "Api-Key: $IDEOGRAM_API_KEY" \ -H "Content-Type: application/json" \ -d '{"image_request":{"prompt":"triage test","model":"V_2_TURBO","magic_prompt_option":"OFF"}}' echo "" # 2. Test V3 endpoint echo -n "V3 status: " curl -s -o /dev/null -w "%{http
- Overview
- Severity Levels
- Quick Triage (Run These First)
- Decision Tree
- Immediate Actions
- 401 -- Authentication Failure
- 429 -- Sustained Rate Limiting
- 500/503 -- Ideogram Outage
- 402 -- Credits Exhausted
- Fallback Implementation
- Communication Templates
- Internal (Slack)
- Postmortem Template
- Error Handling
set -euo pipefail
echo "=== IDEOGRAM TRIAGE ==="
echo -n "API status: "
curl -s -o /dev/null -w "%{http_code}" \
echo ""
echo -n "V3 status: "
echo -n "DNS: "
nslookup api.ideogram.ai 2>/dev/null | grep -A1 "Name:" | tail -1 || echo "lookup failed"
echo -n "Latency: "
curl -s -o /dev/null -w "%{time_total}s" \What does the ideogram-incident-runbook skill do?
Execute Ideogram incident response with triage, mitigation, and postmortem. Use when responding to Ideogram-related outages, investigating errors, or running post-incident reviews for Ideogram integration failures. Trigger with phrases like "ideogram incident", "ideogram outage", "ideogram down", "ideogram on-call", "ideogram emergency", "ideogram broken". '
How do I install it?
Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill ideogram-incident-runbook --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.