项目简介
为 LLM(如 Claude)设计的技巧文件,用于检测并去除常见的 AI 写作痕迹。包含禁用短语、结构套路和句子级别规则,并提供评分系统评估散文质量。
README 预览
# Stop Slop\n\nA skill for removing AI tells from prose.\n\n\n\n## What this is\n\nAI writing has patterns. Predictable phrases, structures, rhythms. This skill teaches Claude (or any LLM) to catch and remove them.\n\n## Skill Structure\n\n```\nstop-slop/\n├── SKILL.md # Core instructions\n├── references/\n│ ├── phrases.md # Phrases to remove\n│ ├── structures.md # Structural patterns to avoid\n│ └── examples.md # Before/after transformations\n├── README.md\n└── LICENSE\n```\n\n## Quick start\n\n**Claude Code:** Add this folder as a skill.\n\n**Claude Projects:** Upload `SKILL.md` and reference files to project knowledge.\n\n**Custom instructions:** Copy core rules from `SKILL.md`.\n\n**API calls:** Include `SKILL.md` in your system prompt. Reference files load on demand.\n\n## What it catches\n\n**Banned phrases** - Throat-clearing openers, emphasis crutches, business jargon, all adverbs, vague declaratives, meta-commentary. See `references/phrases.md`.\n\n**Structural clichés** - Binary contrasts, negative listings, dramatic fragmentation, rhetorical setups, false agency, narrator-from-a-distance voice, passive voice. See `references/structures.md`.\n\n**Sentence-level rules** - No Wh- sentence starters, no em dashes, no staccato fragmentation, no lazy extremes, active voice required.\n\n## Scoring\n\nRate 1-10 on each dimension:\n\n| Dimension | Question |\n|-----------|----------|\n| Directness | Statements or announcements? |\n| Rhythm | Varied or metronomic? |\n| Trust | Respects reader intelligence? |\n| Authenticity | Sounds human? |\n| Density | Anything cuttable? |\n\nBelow 35/50: revise.\n\n## Author\n\n[Hardik Pandya](https://hvpandya.com)\n\n## License\n\nMIT. Use freely, share widely.\n
常见问题 (1)
故障排除为什么在添加技能时,Claude Desktop 显示“SKILL.md 前导数据中出现意外的键”?
故障排除
为什么在添加技能时,Claude Desktop 显示“SKILL.md 前导数据中出现意外的键”?SKILL.md frontmatter 包含不在 allowed list 中的键(如 'trigger'、'author')。顶层仅允许 'name'、'description'、'license'、'allowed-tools'、'compatibility' 和 'metadata'。将多余的键移至 'metadata' 下。示例:
---
name: stop-slop
description: 移除 AI 写作模式...
metadata:
trigger: 写作散文、编辑草稿...
author: Hardik Pandya
---