From grammarly-pack
Configures Grammarly CI/CD integration with GitHub Actions for automated content quality checks. Useful for adding writing quality gates to CI pipelines.
How this skill is triggered — by the user, by Claude, or both
Slash command
/grammarly-pack:grammarly-ci-integrationThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```yaml
name: Content Quality
on: [push, pull_request]
jobs:
quality-check:
runs-on: ubuntu-latest
env:
GRAMMARLY_CLIENT_ID: ${{ secrets.GRAMMARLY_CLIENT_ID }}
GRAMMARLY_CLIENT_SECRET: ${{ secrets.GRAMMARLY_CLIENT_SECRET }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: { node-version: '20', cache: 'npm' }
- run: npm ci
- name: Score documentation
run: node scripts/score-docs.js
gh secret set GRAMMARLY_CLIENT_ID --body "client_id"
gh secret set GRAMMARLY_CLIENT_SECRET --body "client_secret"
For deployment, see grammarly-deploy-integration.
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin grammarly-pack2plugins reuse this skill
First indexed Jul 17, 2026
Sets up Grammarly Text API CI/CD with GitHub Actions: unit tests mock grammar checks and suggestions, integration tests validate live API connectivity on PRs and main branch merges.
Installs and configures Doc Detective GitHub Action workflow for automated documentation testing in CI. Detects project context, creates YAML file, sets triggers, PR/issue creation, and integrations.
Reusable GitHub Actions workflows for security, quality, accessibility. Use when adding OWASP/secret/code-smell scans or WCAG checks to PR pipelines.