/compress-architecture: An Agent Skill to Prune Over-Engineering

A Reddit user (u/CamWebby) built /compress-architecture, an agent skill for AI coding agents that focuses on removing unnecessary architecture rather than adding it. The core question it asks: “Can the system do the same job with fewer visible parts?” The goal is fewer concepts, clearer ownership, and less incidental coupling — not fewer files or lines.
What It Audits
- Speculative layers (abstractions for features that never materialized)
- Pass-through modules (code that just delegates without adding value)
- Duplicate concepts (two ways to do the same thing)
- Abstractions that no longer earn their keep (overhead > benefit)
What It Protects
- Real domain boundaries (actual business logic seams)
- Public APIs (contracts consumed externally)
- Testability seams (dependency injection, interfaces that enable testing)
- Explicit error handling (not swallowed or concealed)
- Code that changes at different rates (separate evolution paths)
The skill is designed to be run as part of an AI coding agent's workflow, presumably via a command like /compress-architecture against a codebase directory. It's not a standalone tool — it's an agent skill that modifies the agent's behavior to audit and suggest removals.
Who It's For
Developers using AI coding agents (e.g., Claude, Copilot, etc.) who want to automatically detect and remove over-engineering from their codebases without breaking legitimate architectural boundaries.
📖 Read the full source: r/ClaudeAI
👀 See Also

Revise: AI Editor Built with Agentic Coding Tools and Y.js CRDT
Revise is an AI editor for documents built from scratch over 10 months using agentic coding tools, with a custom word processor engine and rendering layer that only uses Y.js for the CRDT stack. It integrates multiple AI models including GPT-5.4 variants and Claude models for proofreading and revision.

Harnessing Claude Code for Bot Consultancy: A Deep Dive
Exploring the integration of Claude Code within bot development to enhance functionality through AI consultancy, as shared by an enthusiast on r/clawdbot.

80-line Python script uses Claude to auto-generate internal link suggestions, cuts linking time from 2 hours to 8 minutes
A Reddit user built an 80-line Python script that feeds an article draft and sitemap to Claude, returning relevant internal link targets with suggested anchor text — reducing manual linking time from 2 hours to 8 minutes per article.
Claude to LinkedIn Posts Directly from Chat: Full Workflow
A Reddit user shares a workflow using the Contentdrips MCP connector to write, design, and publish LinkedIn posts directly from Claude AI chat.