grammarly-sdk-patterns

Installation
SKILL.md

Grammarly SDK Patterns

Overview

Production patterns for Grammarly API: typed client, token management, text chunking for large documents, and Python integration.

Instructions

Step 1: Typed API Client

class GrammarlyClient {
  private token: string;
  private expiresAt: number = 0;
  private base = 'https://api.grammarly.com/ecosystem/api';

  constructor(private clientId: string, private clientSecret: string) {}
Installs
1
GitHub Stars
2.8K
First Seen
Sep 3, 2026
grammarly-sdk-patterns — jeremylongshore/tons-of-skills-marketplace