用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ChonSong/skill-retriever --skill unslop命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | unslop |
| description | Post-process AI-generated text through the unslop CLI to strip AI writing patterns before publishing |
| category | writing |
| risk | safe |
| source | community |
| source_repo | MohamedAbdallah-14/unslop |
| source_type | community |
| date_added | 2026-04-25 |
| author | MohamedAbdallah-14 |
| tags | ["writing","content-quality","ai-writing","text-processing","cli","publishing"] |
| tools | ["claude-code","cursor","gemini-cli","codex-cli","antigravity"] |
| license | MIT |
| license_source | https://github.com/MohamedAbdallah-14/unslop/blob/main/LICENSE |
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.
Install once:
pipx install unslop
# or
uv tool install unslop
Verify:
unslop --version
Standard cleanup (may vary slightly between runs):
echo "This leverages cutting-edge AI to deliver robust solutions." | unslop --stdin
Deterministic cleanup (same input → same output every run):
echo "This leverages cutting-edge AI to deliver robust solutions." | unslop --stdin --deterministic
Pipe the output of any command through unslop:
cat draft.md | unslop --stdin --deterministic > clean.md
Or chain with other tools:
cat draft.md | unslop --stdin --deterministic | pbcopy # macOS: copy clean text to clipboard
Add to a pre-commit hook or CI step to enforce quality gates on any generated content before it ships:
# In .git/hooks/pre-commit or a CI script
CONTENT=$( docs/changelog.md)
CLEANED=$( | unslop --stdin --deterministic)
[ != ];
1
cat blog-post-draft.md | unslop --stdin --deterministic > blog-post-final.md
# Write content, pipe through unslop, write result back
cat README.md | unslop --stdin > README.clean.md && mv README.clean.md README.md
# Check if any generated docs need cleanup
for f in docs/*.md; do
ORIGINAL=$(cat "$f")
CLEANED=$(echo "$ORIGINAL" | unslop --stdin --deterministic)
[ "$ORIGINAL" != "$CLEANED" ] && echo "Needs cleanup: $f"
done
--deterministic in CI and automation to ensure reproducible outputavoid-ai-writing skill for both generation-time guidance and post-processingpipx or uv for standalone CLI installation--deterministic mode is local and does not make LLM API callsANTHROPIC_API_KEY or the Claude CLI; use --deterministic for sensitive local files and CI gates