Agent Skills: Grammarly Debug Bundle

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/grammarly-debug-bundle

Install this agent skill to your local

pnpm dlx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/HEAD/plugins/saas-packs/grammarly-pack/skills/grammarly-debug-bundle

Skill Files

Browse the full folder contents for grammarly-debug-bundle.

Download Skill

Loading file tree…

plugins/saas-packs/grammarly-pack/skills/grammarly-debug-bundle/SKILL.md

Skill Metadata

Name
grammarly-debug-bundle
Description
|

Grammarly Debug Bundle

Instructions

Create Debug Bundle

#!/bin/bash
BUNDLE="grammarly-debug-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BUNDLE"

echo "=== Grammarly Debug ===" | tee "$BUNDLE/summary.txt"

# Credential check
echo "CLIENT_ID: ${GRAMMARLY_CLIENT_ID:+[SET]}" >> "$BUNDLE/summary.txt"
echo "ACCESS_TOKEN: ${GRAMMARLY_ACCESS_TOKEN:+[SET]}" >> "$BUNDLE/summary.txt"

# API test
curl -s -w "\nHTTP %{http_code} in %{time_total}s" \
  -H "Authorization: Bearer $GRAMMARLY_ACCESS_TOKEN" \
  -X POST https://api.grammarly.com/ecosystem/api/v2/scores \
  -H "Content-Type: application/json" \
  -d '{"text": "This is a diagnostic test with enough words to meet the minimum thirty word requirement for the Grammarly writing score API."}' \
  > "$BUNDLE/api-test.json" 2>&1

tar -czf "$BUNDLE.tar.gz" "$BUNDLE"
echo "Bundle: $BUNDLE.tar.gz"

Resources

Next Steps

For rate limits, see grammarly-rate-limits.