Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ Over 176 production-ready plugins that extend Claude Code with domain-specific c
| [toprank](https://github.com/nowork-studio/toprank) | SEO + Google Ads plugin for Claude Code. Pulls real Search Console data and Google Ads API data, audits traffic and wasted ad spend, rewrites meta tags, generates JSON-LD schema, and ships the fixes. 9 skills across SEO, Ads, and cross-model review |
| [sniff-qa](https://github.com/Aboudjem/sniff) | AI-powered QA tool — 8 checks in one command. Source scanning (dead links, API endpoints, debug statements, broken imports), accessibility (axe-core), visual regression (pixelmatch), performance (Lighthouse), AI exploration, source/browser cross-referencing. MCP server included. 213 tests, Apache 2.0 |
| [humanizer-skill](https://github.com/Aboudjem/humanizer-skill) | Detects 37 AI writing patterns and rewrites text with human rhythm. 5 voice profiles (casual, professional, technical, warm, blunt). Based on burstiness/perplexity research. Zero dependencies |
| [unslop](https://github.com/MohamedAbdallah-14/unslop) | Removes AI writing tells (tricolons, em-dash pileups, hedging stacks, sycophancy openers, stock vocabulary). Split lint/rewrite modes — run detection-only passes on your own text without rewriting. Five intensity levels. MIT licensed |
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix alphabetical ordering.

The unslop entry should be placed after ui-ux-suite, not before it. When both entries start with 'u', alphabetical order is determined by subsequent characters: 'ui-ux-suite' (second char 'i') comes before 'unslop' (second char 'n').

📋 Proposed fix

Move line 299 to after line 300:

 | [humanizer-skill](https://github.com/Aboudjem/humanizer-skill) | Detects 37 AI writing patterns and rewrites text with human rhythm. 5 voice profiles (casual, professional, technical, warm, blunt). Based on burstiness/perplexity research. Zero dependencies |
-| [unslop](https://github.com/MohamedAbdallah-14/unslop) | Removes AI writing tells (tricolons, em-dash pileups, hedging stacks, sycophancy openers, stock vocabulary). Split lint/rewrite modes — run detection-only passes on your own text without rewriting. Five intensity levels. MIT licensed |
 | [ui-ux-suite](https://github.com/Aboudjem/ui-ux-suite) | Design audit across 12 dimensions — color contrast, typography, layout, accessibility. Scans CSS, JSX, Tailwind configs. Quantified scores (1-10) with before/after fix code. WCAG 2.1, APCA, OKLCH. Zero deps |
+| [unslop](https://github.com/MohamedAbdallah-14/unslop) | Removes AI writing tells (tricolons, em-dash pileups, hedging stacks, sycophancy openers, stock vocabulary). Split lint/rewrite modes — run detection-only passes on your own text without rewriting. Five intensity levels. MIT licensed |
 | [claude-cybersecurity](https://github.com/AgriciDaniel/claude-cybersecurity) | AI-powered cybersecurity code review with 8 parallel agents. OWASP 2025, CWE Top 25, MITRE ATT&CK, 11 languages, 5 compliance frameworks, threat intelligence. Zero config. MIT |
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
| [unslop](https://github.com/MohamedAbdallah-14/unslop) | Removes AI writing tells (tricolons, em-dash pileups, hedging stacks, sycophancy openers, stock vocabulary). Split lint/rewrite modes — run detection-only passes on your own text without rewriting. Five intensity levels. MIT licensed |
| [humanizer-skill](https://github.com/Aboudjem/humanizer-skill) | Detects 37 AI writing patterns and rewrites text with human rhythm. 5 voice profiles (casual, professional, technical, warm, blunt). Based on burstiness/perplexity research. Zero dependencies |
| [ui-ux-suite](https://github.com/Aboudjem/ui-ux-suite) | Design audit across 12 dimensions — color contrast, typography, layout, accessibility. Scans CSS, JSX, Tailwind configs. Quantified scores (1-10) with before/after fix code. WCAG 2.1, APCA, OKLCH. Zero deps |
| [unslop](https://github.com/MohamedAbdallah-14/unslop) | Removes AI writing tells (tricolons, em-dash pileups, hedging stacks, sycophancy openers, stock vocabulary). Split lint/rewrite modes — run detection-only passes on your own text without rewriting. Five intensity levels. MIT licensed |
| [claude-cybersecurity](https://github.com/AgriciDaniel/claude-cybersecurity) | AI-powered cybersecurity code review with 8 parallel agents. OWASP 2025, CWE Top 25, MITRE ATT&CK, 11 languages, 5 compliance frameworks, threat intelligence. Zero config. MIT |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 299, The README entry for "unslop" is out of alphabetical
order relative to "ui-ux-suite"; move the table row containing the unslop entry
so it appears after the ui-ux-suite row (i.e., swap the two rows so
"ui-ux-suite" comes before "unslop"), ensuring the project names "ui-ux-suite"
and "unslop" are correctly ordered in the list.

| [ui-ux-suite](https://github.com/Aboudjem/ui-ux-suite) | Design audit across 12 dimensions — color contrast, typography, layout, accessibility. Scans CSS, JSX, Tailwind configs. Quantified scores (1-10) with before/after fix code. WCAG 2.1, APCA, OKLCH. Zero deps |
| [claude-cybersecurity](https://github.com/AgriciDaniel/claude-cybersecurity) | AI-powered cybersecurity code review with 8 parallel agents. OWASP 2025, CWE Top 25, MITRE ATT&CK, 11 languages, 5 compliance frameworks, threat intelligence. Zero config. MIT |
| [Clarvia MCP](https://github.com/clarvia-project/scanner) | MCP quality scanner — scans any MCP server, returns AEO (Agent Engine Optimization) score. Indexes 27,843+ tools for instant lookup. 24 MCP tools (search, scan, compare, leaderboard, trending). `npx -y clarvia-mcp-server` |
Expand Down