Patina: A Claude Code Skill That Detects and Rewrites AI Writing Patterns

✍️ OpenClawRadar📅 Published: April 2, 2026🔗 Source
Patina: A Claude Code Skill That Detects and Rewrites AI Writing Patterns
Ad

What Patina Does

Patina is a Claude Code skill that analyzes text for patterns commonly found in AI-generated writing. It detects these patterns using regex/heuristic detectors and can rewrite the flagged sections to sound more human.

Pattern Detection Details

The creator cataloged 112 specific patterns across four languages (English, Korean, Chinese, and Japanese), with 28 patterns per language. Each pattern includes a detector and description of why it's a giveaway.

Examples from the English set include:

  • Pattern #7: AI Vocabulary Words - "delve into", "tapestry", "multifaceted" clustered in one paragraph
  • Pattern #25: Metronomic Paragraph Structure - Starting three consecutive paragraphs with the same structure (claim, evidence, significance)
  • Pattern #6: The classic challenges-then-optimism closer - "Despite these challenges, the industry remains poised for growth"
  • Pattern #8: Copula Avoidance - "serves as a vital hub" when "is" would work fine

Tool Usage and Modes

To use patina, run /patina and paste your text. The tool has several modes:

  • Default: Detect and rewrite flagged sections
  • --audit: Show what's wrong without making changes
  • --score: Rate text 0-100 on how AI-like it sounds
  • --diff: Show exactly which patterns were caught and what changed
  • --ouroboros: Keep rewriting until the score converges

There's also a MAX mode that runs text through Claude, Codex, and Gemini, then picks whichever version sounds most human.

Ad

Before/After Example

Before: AI coding tools represent a groundbreaking milestone showcasing the innovative potential of large language models, signifying a pivotal turning point in software development evolution. This not only streamlines processes but also fosters collaboration and facilitates organizational alignment.

After: AI coding tools speed up grunt work. Config files, test scaffolding, that kind of thing. The problem is the code looks right even when it isn't. It compiles, passes lint, so you merge it — then find out later it's doing something completely different from what you intended.

Technical Details

The tool is based on blader/humanizer and has been extended for multilingual support. It's available on GitHub under an MIT license, and the pattern files are in markdown format for easy contribution.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Context-Engineered Study System for Claude Code Acts as Persistent Tutor
Tools

Context-Engineered Study System for Claude Code Acts as Persistent Tutor

A developer built a study system using Claude Code that tracks progress across sessions, probes understanding, works through exercises, and adapts to learning styles. The system uses structured markdown files to shape agent behavior and includes tools for extracting textbook pages from PDFs.

OpenClawRadar
Hollow AgentOS reduces Claude Code token usage by 68.5% with JSON-native OS for AI agents
Tools

Hollow AgentOS reduces Claude Code token usage by 68.5% with JSON-native OS for AI agents

Hollow AgentOS is a JSON-native operating system for AI agents that cuts Claude Code's token usage by 68.5% by eliminating wasteful shell command overhead. It plugs into Claude Code via MCP, runs local inference through Ollama, and is MIT licensed.

OpenClawRadar
SOULS for AI Agents: A Community-Driven Personality Library
Tools

SOULS for AI Agents: A Community-Driven Personality Library

A Reddit user created an open-source repository of carefully crafted personality files ("souls") for AI coding agents. The repo currently includes Jarvis, Gojo, Eren Yeager, René Descartes, and Rapper, with a call for community contributions.

OpenClawRadar
ShareMyClaudeMD: Tool Converts Claude-Generated Markdown Files to Shareable Rendered Pages
Tools

ShareMyClaudeMD: Tool Converts Claude-Generated Markdown Files to Shareable Rendered Pages

A developer built sharemyclaudemd.com, a free tool that converts any Markdown file into a live, rendered page with a shareable URL and QR code. The tool addresses the friction of sharing Claude-generated Markdown files, which often requires recipients to open them in a specific editor or push to GitHub just for a rendered view.

OpenClawRadar