unslop-reasoning

unslop-reasoning is a skill for Claude Code from MohamedAbdallah-14/unslop. It costs 121 tokens per session (1,445 once invoked), scanned A, original, MIT.

A tool for making AI reasoning traces read less like machine-generated step-by-step text. Reasoning traces are internal or pasted explanations that may repeat the question, over-plan simple tasks, or hedge excessively.

In plain words
What is it for?
Use it when revising pasted chain-of-thought, extended-thinking output, or agent task breakdowns—not for polishing ordinary final prose.
Why use it?
It removes repetitive and overly elaborate reasoning patterns so the thinking is more direct and easier to follow.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the unslop plugin — 6 skills shipped together

Good fit Use it when revising pasted chain-of-thought, extended-thinking output, or agent task breakdowns—not for polishing ordinary final prose.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mohamedabdallah-14/unslop/unslop-reasoning
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add MohamedAbdallah-14/unslop --skill unslop-reasoning
Clone the repo
git clone --depth 1 https://github.com/MohamedAbdallah-14/unslop

Made for: Claude Code.

Or install unslop, the plugin that ships this one along with the rest of its 6 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for unslop-reasoning

README.md
[![agentmods](https://agentmods.dev/badge/skills/mohamedabdallah-14/unslop/unslop-reasoning/github.svg)](https://agentmods.dev/skills/mohamedabdallah-14/unslop/unslop-reasoning)
Your own site
<a href="https://agentmods.dev/skills/mohamedabdallah-14/unslop/unslop-reasoning"><img src="https://agentmods.dev/badge/skills/mohamedabdallah-14/unslop/unslop-reasoning/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for unslop-reasoning

Your own site · 80×15
<a href="https://agentmods.dev/skills/mohamedabdallah-14/unslop/unslop-reasoning"><img src="https://agentmods.dev/badge/skills/mohamedabdallah-14/unslop/unslop-reasoning.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 121 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,445 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00121 $0.01445
Opus 5 $0.00060 $0.00723
Sonnet 5 $0.00024 $0.00289
Haiku 4.5 $0.00012 $0.00145

Measured 13d ago against content hash b17973415cef, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

unslop-reasoning scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/unslop/skills/unslop-reasoning/SKILL.md · 170 lines

How it starts

The opening of the file, as written. The whole thing — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.

unslop-reasoning

Purpose

The regular unslop skill targets prose. Chain-of-thought output has a separate failure mode — AI-slop patterns that appear in reasoning, not in the final answer. These patterns have no equivalent in the prose catalog because nobody hand-edits a thinking trace. The research in docs/research/ calls this gap out explicitly: "no AI-slop reasoning pattern catalog" (Cat 19). This skill fills it.

Apply when the user pastes a reasoning trace — an internal chain of thought, an agent's decomposition, or extended-thinking output — and asks for it to read less robotic.

Signals of reasoning slop

Six canonical patterns, each with an example and a tighter rewrite.

1. Restating the question

AI:

The user is asking how to fix the auth middleware bug. They want me to identify the root cause and propose a fix.

Human:

Auth middleware bug. Find cause, propose fix.

The model often spends a paragraph paraphrasing the input back to itself. Humans don't. They read, maybe underline, and move.

2. Over-hedging the plan

AI:

There are several factors to consider when approaching this problem. First, we should think about the scope. It's also important to consider the context. There are many potential approaches.

Human:

Three options: A, B, C. A is fastest. B is safest. Picking A unless something looks wrong.

Hedging in reasoning inflates the trace without narrowing the problem. Real thinking commits to a direction early, then revises.

3. Over-decomposing

AI (for a two-line fix):

Step 1: Identify the file. Step 2: Find the function. Step 3: Read the function. Step 4: Identify the bug. Step 5: Plan the change. Step 6: Write the change. Step 7: Verify the change.

Human:

Open auth.py. Token expiry uses <, should be <=. Fix line 42.

Trivial problems don't need a 7-step decomposition. A flat "here's the answer" is more honest than a ceremonial march.

4. Infinite-loop rationalization

Read the full file on GitHub · 170 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 170 lines · 121 tokens per session scan A b17973415cef

Subscribe to this mod's changes

unslop-reasoning is a skill published in the GitHub repository MohamedAbdallah-14/unslop (135 stars, last pushed 5d ago), licensed MIT. It adds 121 tokens to every session and 1,445 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ux-design

Use when the user asks for UX, product flow, user journey, wireframes, usability, conversion, onboarding, checkout, signup, navigation, forms, state design, dashboard workflows, command palettes, settings, permissions, long-running task progress, admin/internal tools, activation, retention, or making an app easier to…

f0d010c/stark · 125 tokens

anti-slop-writing-id

Tulis teks yang menghindari semua pola penulisan AI dan terasa seperti ditulis manusia. Gunakan saat menulis artikel, esai, posting blog, konten media sosial, atau teks apa pun dalam Bahasa Indonesia yang harus terasa autentik. Aktif saat ada permintaan untuk menulis secara natural, menghindari slop AI, menghindari…

adenaufal/anti-slop-writing · 106 tokens

anti-slop-writing

Write text that avoids all known AI writing patterns and passes human detection. Use when writing articles, essays, blog posts, social media copy, or any content that must read as authentically human. Triggers on requests to write naturally, avoid AI slop, avoid AI detection, humanize writing, write like a human, or…

adenaufal/anti-slop-writing · 76 tokens

android-design

Use when the user asks for an Android app, Compose UI, Material 3, Material You, Material 3 Expressive, Pixel-style app, foldable/adaptive layout, Play Store deliverable, React Native Android, Flutter Android, Compose Multiplatform, or any Android deliverable. Builds Android apps across system-like Compose, branded…

f0d010c/stark · 128 tokens

design-tokens

Use when the user asks for design tokens, DTCG tokens, theme systems, color/typography/spacing/radius/elevation/motion tokens, translating tokens, exporting tokens, making a Compose color scheme from a palette, auditing tokens, or sharing a single token source across web and native. Generates, audits, and translates…

f0d010c/stark · 126 tokens

list-recent-decisions

Surface the user's recent AxonFlow governance decisions — answers "what just got blocked", "show me my recent denials", or feeds a decision-history forensic flow.

getaxonflow/axonflow-claude-plugin · 38 tokens