unslop
Post-process AI-generated text through the unslop CLI to strip AI writing patterns before publishing
npx skills add sickn33/agentic-awesome-skills --skill unslop --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Overview
- When to Use This Skill
- Setup
- How It Works
- Step 1: Pipe Text Through unslop
- Step 2: Use in Shell Pipelines
- Step 3: Integrate into Commit Hooks or CI
- Examples
- Example 1: Clean a Draft Document
- Example 2: Inline Cleanup During Writing
- Example 3: Validate Before Submitting a PR
- Best Practices
- Limitations
- Security & Safety Notes
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
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.