Agent Skills: Grammarly Security Basics

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/grammarly-security-basics

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-security-basics

Skill Files

Browse the full folder contents for grammarly-security-basics.

Download Skill

Loading file tree…

plugins/saas-packs/grammarly-pack/skills/grammarly-security-basics/SKILL.md

Skill Metadata

Name
grammarly-security-basics
Description
|

Grammarly Security Basics

Credential Management

| Credential | Scope | Storage | |-----------|-------|--------| | Client ID | App-level | Config | | Client Secret | App-level | Secrets vault | | Access Token | Session | Memory only |

Instructions

Step 1: Environment Security

# .env (never commit)
GRAMMARLY_CLIENT_ID=your_id
GRAMMARLY_CLIENT_SECRET=your_secret

Step 2: Token Lifecycle

Tokens from client_credentials grant expire. Never persist access tokens to disk. Re-authenticate when needed.

Step 3: Security Checklist

  • [ ] Client secret in secrets vault
  • [ ] Access tokens never logged
  • [ ] HTTPS for all API calls
  • [ ] Pre-commit hook blocks credential leaks

Resources

Next Steps

For production, see grammarly-prod-checklist.