enterprisifier

enterprisifier is a skill for Claude Code, Codex from AdamBien/airails. It costs 131 tokens per session (2,446 once invoked), scanned A, original, MIT.

A coding instruction set that intentionally restructures even simple code into many layers, modules, interfaces, and design patterns. It treats extra abstraction as the main design goal.

In plain words
What is it for?
Use it when asked to overengineer code, add enterprise-style layers, introduce many design patterns, or make an implementation heavily abstracted.
Why use it?
It is intended for situations where the requested result is deliberately overengineered rather than kept as a simple direct implementation.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/adambien/airails/enterprisifier
Any agent
npx skills add AdamBien/airails --skill enterprisifier
Clone the repo
git clone --depth 1 https://github.com/AdamBien/airails

Made for: Claude Code, Codex.

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 enterprisifier

README.md
[![agentmods](https://agentmods.dev/badge/skills/adambien/airails/enterprisifier.svg)](https://agentmods.dev/skills/adambien/airails/enterprisifier)
Your own site
<a href="https://agentmods.dev/skills/adambien/airails/enterprisifier"><img src="https://agentmods.dev/badge/skills/adambien/airails/enterprisifier.svg" alt="Measured on agentmods" height="20"></a>
Per session 131 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,446 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00131 $0.02446
Opus 5 $0.00066 $0.01223
Sonnet 5 $0.00026 $0.00489
Haiku 4.5 $0.00013 $0.00245

Measured 5d ago against content hash 3246f96a83ae, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

enterprisifier 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 5d 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.

java/enterprisifier/SKILL.md · 203 lines

How it starts

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

Overengineering

Transform any simple, working code into a maximally abstracted, pattern-saturated, enterprise-grade architecture. No line of implementation shall be directly reachable. Every concept gets its own module, interface, factory, and anti-corruption layer.

Philosophy

  • Never depend on implementation — all access goes through at least 3 layers of abstraction
  • Every pattern is applicable — if a GoF pattern exists, use it, even if it adds no value
  • More modules = more enterprise — a single class is a failure; a 47-class hierarchy is a feature
  • Abstractions over results — the code doesn't need to be faster, just more abstract
  • Future-proof everything — defend against requirements that will never come

Mandatory Patterns to Apply

Apply ALL of the following to every piece of code, regardless of size or complexity:

Structural Patterns (apply all)

  1. Facade — wrap every public API in a facade
  2. Proxy — add a proxy in front of every facade
  3. Decorator — wrap every proxy in a decorator for cross-cutting concerns
  4. Adapter — adapt every external type into an internal type
  5. Bridge — separate every abstraction from its implementation
  6. Composite — model everything as a tree, even single values
  7. Flyweight — pool and share objects even when memory is not a concern

Creational Patterns (apply all)

  1. Abstract Factory — never use new directly; always go through a factory of factories
  2. Builder — every object with more than zero fields gets a builder
  3. Singleton — critical services are singletons, accessed through a registry
  4. Prototype — support cloning on every entity, just in case
  5. Factory Method — subclasses decide which class to instantiate

Behavioral Patterns (apply all)

  1. Strategy — every if statement becomes a strategy interface with injectable implementations
  2. Observer — every state change fires events through an event bus
  3. Command — every method call becomes a command object with undo support
  4. Chain of Responsibility — every request passes through a chain of handlers
  5. Mediator — components never talk directly; everything goes through a mediator
  6. Memento — every object supports full state snapshots and rollback
  7. State — every status field becomes a state machine with dedicated state classes
  8. Template Method — every algorithm is a skeleton with overridable hook methods
  9. Visitor — every operation on a structure is a separate visitor
  10. Iterator — custom iterators for every collection, never use built-in for-each
  11. Interpreter — configuration is a DSL parsed by an interpreter

Read the full file on GitHub · 203 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 203 lines · 131 tokens per session scan A 3246f96a83ae

Subscribe to this mod's changes

enterprisifier is a skill published in the GitHub repository AdamBien/airails (48 stars, last pushed 15d ago), licensed MIT. It adds 131 tokens to every session and 2,446 once invoked, about $0.0007 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

deno-sandbox

Use when building features that execute untrusted user code, AI-generated code, or need isolated code execution environments. Covers the @deno/sandbox SDK.

denoland/skills · 36 tokens

deno-frontend

Use when building a web frontend with Deno — running React, Vite, Astro, SvelteKit, Next.js, Nuxt or other npm frameworks under Deno, or working with Fresh, Deno's own island-architecture framework. Covers which path to pick, Fresh 2.x routes, handlers, islands, Preact signals, Tailwind, and Fresh 1.x to 2.x migration.

denoland/skills · 88 tokens

5writing

数学建模竞赛论文撰写阶段,支持 Typst 和 LaTeX 双引擎。根据 ANALYSISMODELINGREPORT.md、RESULTSREPORT.md 和 figures/.pdf 选择比赛模板、排版引擎、组织章节,并在论文正文中按章节直接插入图表。.

jihe520/MathModelAgent · 68 tokens

6verity

数学建模竞赛最终验证和验收阶段,支持 Typst 和 LaTeX 双引擎。用于论文写完后检查章节数量、标题顺序、图表引用、数值一致性、占位符、内部文件泄露、参考文献、代码可复现性、编译和提交就绪状态。.

jihe520/MathModelAgent · 76 tokens

typst-author

Generate idiomatic Typst (.typ) code, edit and troubleshoot Typst documents and projects, and answer Typst syntax/reference questions. Use when working with .typ files or when the user explicitly asks for Typst document creation, editing, debugging, compilation, formatting, template work, or package usage.

jihe520/MathModelAgent · 65 tokens

1start-mathmodel

数学建模竞赛工作流入口。用于启动完整建模流程:询问用户偏好,生成 plan.md 和 todo.md,并按阶段调用赛题分析、建模、代码与图表、流程图、论文撰写、验证验收等 skills。.

jihe520/MathModelAgent · 64 tokens