Agent skill

grammarly-multi-env-setup

Configure Grammarly across multiple environments. Use when setting up dev/staging/prod environments with Grammarly API. Trigger with phrases like "grammarly multi-env", "grammarly environments", "grammarly staging", "grammarly dev prod setup".

Stars 1,803
Forks 241

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-multi-env-setup

SKILL.md

Grammarly Multi-Environment Setup

Instructions

Step 1: Environment-Specific Credentials

typescript
const config = {
  development: {
    clientId: process.env.GRAMMARLY_DEV_CLIENT_ID!,
    clientSecret: process.env.GRAMMARLY_DEV_CLIENT_SECRET!,
  },
  production: {
    clientId: process.env.GRAMMARLY_PROD_CLIENT_ID!,
    clientSecret: process.env.GRAMMARLY_PROD_CLIENT_SECRET!,
  },
};

const env = process.env.NODE_ENV || 'development';
const client = new GrammarlyClient(config[env].clientId, config[env].clientSecret);

Step 2: Rate Limit Tiers by Environment

typescript
const rateLimits = {
  development: { concurrency: 1, intervalCap: 2 },
  staging: { concurrency: 2, intervalCap: 5 },
  production: { concurrency: 5, intervalCap: 10 },
};

Resources

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results