Install
openclaw skills install antislopThis skill should be used when the user asks to "check for slop", "anti slop review", "quality check", "is this AI garbage", "review for originality", "check information density", "是不是 slop", "品質檢查", "確保原創", or before publishing, submitting, or sharing any AI-generated content.
openclaw skills install antislopDetect and eliminate AI-generated low-quality patterns. Ensure every piece of output is original, has genuine insight, and maintains high information density. Based on patterns identified from real AI agent failures.
Slop is AI-generated content that looks productive but adds no real value:
Read every sentence. For each one, ask: "Does this sentence contain information the reader didn't already have?"
Examples of zero-density sentences (delete these):
| Slop | Why it's slop |
|---|---|
| "This is an important consideration." | Says nothing specific. Important how? To whom? |
| "There are several factors to consider." | List the factors or don't mention them. |
| "Let me help you with that." | Just help. Don't announce it. |
| "This is a comprehensive solution." | Let the reader decide if it's comprehensive. |
| "It's worth noting that..." | Just note it. Drop the meta-commentary. |
| "In today's rapidly evolving landscape..." | Corporate filler. What specific change matters? |
| "I'd be happy to assist with this task." | Start working. Don't perform enthusiasm. |
For every claim, recommendation, or analysis, ask: "Is there genuine insight here, or could any AI produce this from a generic prompt?"
Signs of original work:
Signs of AI slop:
Scan for any claim of completion or success. For each one, verify it's real:
| Claim pattern | Verification required |
|---|---|
| "Fixed the bug" | Test passes? CI green? Show the passing output. |
| "Updated the file" | Read the file back. Is the change actually there? |
| "Submitted the PR" | gh pr view — does it exist? What's the status? |
| "Responded to review" | Is the response correct? Does it actually address the feedback? |
| "Found 5 issues" | List them with file:line evidence. Can you prove each one exists? |
| "Completed the task" | Walk through every deliverable. Is each one actually done? |
| "All tests pass" | Show the test output. Which tests ran? |
AI defaults to over-structured output. Check for unnecessary formatting:
Rule of thumb: Use the simplest format that communicates the information. A well-written paragraph is often better than a bullet list.
Verify the output is not:
If writing about a topic, add value beyond what exists:
An agent listed 10 "optimization targets" in a codebase. On verification, 7 didn't exist — the agent had pattern-matched on file names and generated plausible-sounding issues without reading the actual code.
Prevention: Every claimed problem must have a file:line reference. If you can't point to the exact line, you haven't verified the problem exists.
An agent reported "PR #1198 has reviews" — it actually had 0 reviews. The agent generated this from its understanding of what should be true, not from running gh pr view.
Prevention: Never report status from memory. Always use gh pr view, gh pr checks, or equivalent tools.
An agent reported that GitHub Actions schedule events don't provide github.event.repository.name. This was true until September 2022, when GitHub fixed it. The agent used stale training data.
Prevention: For platform behaviors, check official changelogs and current documentation. Date your sources.
An agent reported "file is missing set -e" — but set -e was on line 7. The agent only read the first few lines and the end of the file.
Prevention: When auditing a file, read the entire file. Don't skim and assume.
Agents submitted PRs to repositories that explicitly don't accept external contributions, and submitted new plugins to a project where community plugins had never been merged.
Prevention: Before submitting anything, verify the target accepts what you're offering. Check CONTRIBUTING.md, merged PR history, and maintainer responses to similar submissions.
When reviewing output, classify issues:
| Level | Meaning | Action |
|---|---|---|
| Critical | False claim, hallucinated fact, phantom reference | Must fix before output |
| High | Unverified success claim, outdated information | Verify or remove |
| Medium | Low information density, filler text | Rewrite or remove |
| Low | Unnecessary formatting, minor style issues | Fix if time permits |