Agent skill · Code Review & Quality

unslop

Post-process AI-generated text through the unslop CLI to strip AI writing patterns before publishing

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill unslop --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Declared author: MohamedAbdallah-14
Path: skills/unslop/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# unslop — Strip AI Writing Patterns via CLI ## Overview unslop is a CLI tool that post-processes text to remove AI writing patterns programmatically. Unlike skills that ask the agent to avoid AI-isms, unslop runs as a deterministic pipeline step: pipe text in, get clean text out. Use it as a final pass before committing docs, publishing posts, or sending any AI-generated content to production. The `--deterministic` flag makes output reproducible — same input always produces same output. The `--stdin` flag reads from stdin, enabling shell pipeline composition. ## When to Use This Skill - When you have AI-generated text ready to publish and want a final cleanup pass - When working in a shell pipeline where text quality needs to be enforced automatically - When writing commit hooks or CI steps that validate content before it ships - When you need reproducible text normalization across multiple runs ## Setup Install once: ```bash pipx install unslop # or uv tool install unslop ``` Verify: ```bash unslop --version ``` ## How It Works ### Step 1: Pipe Text Through unslop Standard cleanup (may vary slightly between runs): ```bash echo "This leverages cutting-edge AI to deliver robust sol

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. Setup
  4. How It Works
  5. Step 1: Pipe Text Through unslop
  6. Step 2: Use in Shell Pipelines
  7. Step 3: Integrate into Commit Hooks or CI
  8. Examples
  9. Example 1: Clean a Draft Document
  10. Example 2: Inline Cleanup During Writing
  11. Example 3: Validate Before Submitting a PR
  12. Best Practices
  13. Limitations
  14. Security & Safety Notes
Commands it runs
pipx install unslop
or
uv tool install unslop
unslop --version
echo "This leverages cutting-edge AI to deliver robust solutions." | unslop --stdin
echo "This leverages cutting-edge AI to deliver robust solutions." | unslop --stdin --deterministic
cat draft.md | unslop --stdin --deterministic > clean.md
cat draft.md | unslop --stdin --deterministic | pbcopy   # macOS: copy clean text to clipboard
In .git/hooks/pre-commit or a CI script
if [ "$CONTENT" != "$CLEANED" ]; then
More from agentic-awesome-skills
All skills →
About this skill
What does the unslop skill do?

Post-process AI-generated text through the unslop CLI to strip AI writing patterns before publishing

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill unslop --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going