Claude Code plugin — silently corrects broken English in your prompts before answering.
On every prompt, injects a reminder telling Claude to:
- Silently fix grammar errors in your message
- Show it as:
grammar fix: 'corrected sentence' - Answer normally below it
Skips clean English and slash-commands.
/plugin marketplace add <your-github-username>/grammar-fix
/plugin install grammar-fix@grammar-fix
echo '{"prompt":"me want fix english"}' | node hooks/grammar-reminder.js
grammar-fix/
├── .claude-plugin/
│ ├── plugin.json # plugin metadata
│ └── marketplace.json # marketplace listing (self-hosted)
├── hooks/
│ ├── hooks.json # registers UserPromptSubmit hook
│ └── grammar-reminder.js # the hook script
└── README.md