Agent skill
grammarly-incident-runbook
Follow Grammarly incident response runbook for API outages. Use when Grammarly API is down, experiencing errors, or when investigating service degradation. Trigger with phrases like "grammarly down", "grammarly outage", "grammarly incident", "grammarly not responding".
Install this agent skill to your Project
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/grammarly-pack/skills/grammarly-incident-runbook
SKILL.md
Grammarly Incident Runbook
Triage Steps
Step 1: Verify Outage
# Test API health
curl -s -o /dev/null -w "%{http_code}" \
https://api.grammarly.com/ecosystem/api/v2/scores
# Test with auth
curl -s -w "\n%{http_code}" \
-H "Authorization: Bearer $GRAMMARLY_ACCESS_TOKEN" \
-X POST https://api.grammarly.com/ecosystem/api/v2/scores \
-H "Content-Type: application/json" \
-d '{"text": "Test sentence with enough words for minimum requirement for the Grammarly writing score API diagnostic check."}'
Step 2: Classify Severity
| Severity | Condition | Action |
|---|---|---|
| P1 | API returns 5xx for all requests | Activate fallback, notify stakeholders |
| P2 | Intermittent 5xx or high latency | Enable retry logic, monitor |
| P3 | Specific endpoint failing | Route around, file support ticket |
Step 3: Fallback Mode
async function scoreWithFallback(text: string, token: string) {
try {
return await grammarlyClient.score(text);
} catch {
console.warn('Grammarly API unavailable, returning placeholder');
return { overallScore: -1, correctness: -1, clarity: -1, engagement: -1, tone: -1, fallback: true };
}
}
Resources
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?