$npx -y skills add yha9806/academic-writing-toolkit --skill styleCheck thesis text for British English consistency and safe mechanical spelling fixes.
| 1 | # /style — British English Check |
| 2 | |
| 3 | ## Purpose |
| 4 | |
| 5 | Audit chapter drafts and reading notes for common US spellings when the project requires British English. |
| 6 | |
| 7 | ## Trigger Words |
| 8 | |
| 9 | This skill activates on: `style`, `British English`, `spelling check`, `/style`. |
| 10 | |
| 11 | ## Workflow |
| 12 | |
| 13 | 1. Run: |
| 14 | `python3 scripts/audit-british-english.py --base-dir . --json` |
| 15 | 2. Report every issue by file, line, current spelling, and recommended replacement. |
| 16 | 3. If the user asks for safe fixes, run: |
| 17 | `python3 scripts/audit-british-english.py --base-dir . --fix` |
| 18 | 4. Re-run the audit and report the remaining issue count. |
| 19 | |
| 20 | ## Constraints |
| 21 | |
| 22 | 1. Only apply mechanical spelling replacements produced by the script. |
| 23 | 2. Do not rewrite style, tone, argument, or citations as part of this skill. |
| 24 | 3. Use British English in any inserted prose. |
| 25 | 4. No emoji. |