monolith

monolith is a skill for Claude Code, Codex from G1Joshi/Agent-Skills. It costs 14 tokens per session (491 once invoked), scanned A, original, MIT.

A traditional application design in which the user interface, business rules, and data access run together as one deployable program, usually with one shared database. This is called a monolith.

In plain words
What is it for?
Use it for prototypes, early products, small teams, and straightforward create-read-update-delete applications. Scaling normally means making the server larger or running copies of the whole application.
Why use it?
It keeps a small or simple system in one place, which can reduce design and deployment overhead. The parts are closely connected, so changing one area may affect others.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for prototypes, early products, small teams, and straightforward create-read-update-delete applications. Scaling normally means making the server larger or running copies of the whole application.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/g1joshi/agent-skills/monolith
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 G1Joshi/Agent-Skills --skill monolith
Clone the repo
git clone --depth 1 https://github.com/G1Joshi/Agent-Skills

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 monolith

README.md
[![agentmods](https://agentmods.dev/badge/skills/g1joshi/agent-skills/monolith.svg)](https://agentmods.dev/skills/g1joshi/agent-skills/monolith)
Your own site
<a href="https://agentmods.dev/skills/g1joshi/agent-skills/monolith"><img src="https://agentmods.dev/badge/skills/g1joshi/agent-skills/monolith.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 491 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.
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.00014 $0.00491
Opus 5 $0.00007 $0.00246
Sonnet 5 $0.00003 $0.00098
Haiku 4.5 $0.00001 $0.00049

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

Security

Grade A, and why

monolith 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 8d 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.

skills/architecture/monolith/SKILL.md · 79 lines

How it starts

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

Monolith (Traditional)

A Monolithic architecture is built as a single unit. All functional components (UI, Business Logic, Data Access) are tightly integrated using a shared database and running in the same process.

When to Use

  • Proof of Concept (PoC) or MVP.
  • Very small teams (< 5 developers).
  • Simple CRUD applications with low complexity.
  • When latency must be absolute zero and throughput is not the bottleneck.

Quick Start

# Django/Rails/Laravel Style
# Everything in one place:
# - models/
# - views/
# - controllers/
# - utils/

def create_order(request):
    user = User.objects.get(id=request.user_id) # Direct DB access
    product = Product.objects.get(id=request.product_id) # Direct DB access

    order = Order.create(user=user, product=product)

    # Direct sync call within same transaction
    EmailService.send_confirmation(user)

    return Response("Order Created")

Core Concepts

Single Process

The entire app runs in one memory space. Scaling means "Vertical Scaling" (bigger server) or "Horizontal Scaling" (cloning the entire monolith behind a load balancer).

Shared Database

All components read/write to the same massive database. JOINs across any domains are easy and performant.

Simplicity

One repo, one build pipeline, one deploy script. Infinite ease of debugging (step through everything).

Common Patterns

Layered Architecture

Even in a monolith, organize by technical layers (Presentation, Business, Data) to prevent spaghetti code.

"Big Ball of Mud" (Anti-pattern)

The chaotic state a monolith reaches without discipline, where everything depends on everything else.

Best Practices

Do:

  • Keep code clean and modular (files/folders) even if deployment is monolithic.
  • Use Feature Flags to manage releases.
  • Optimize Database Queries early, as the single DB is the bottleneck.

Don't:

  • Don't let the build time exceed 10-15 minutes (split if it does).
  • Don't allow "Spaghetti Coupling" (Circular dependencies).

Read the full file on GitHub · 79 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. 8d ago First seen · 79 lines · 14 tokens per session scan A c994981a5be8

Subscribe to this mod's changes

monolith is a skill published in the GitHub repository G1Joshi/Agent-Skills (12 stars, last pushed 7mo ago), licensed MIT. It adds 14 tokens to every session and 491 once invoked, about $0.0001 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

api-and-interface-design

Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints, defining type contracts between modules, or establishing boundaries between frontend and backend.

addyosmani/agent-skills · 49 tokens

nestjs-modular-monolith

Specialist in designing and implementing scalable modular monolith architectures using NestJS with DDD, Clean Architecture, and CQRS patterns. Use when building modular monolith backends, designing bounded contexts, creating domain modules, implementing event-driven module communication, or when user mentions "modular…

tech-leads-club/agent-skills · 131 tokens

component-identification-sizing

Maps architectural components in a codebase and measures their size to identify what should be extracted first. Use when asking "how big is each module?", "what components do I have?", "which service is too large?", "analyze codebase structure", "size my monolith", or planning where to start decomposing. Do NOT use…

tech-leads-club/agent-skills · 81 tokens

evolutionary-modular-architecture

Guides design and implementation of evolutionary modular-monolith platforms with DDD (strategic + tactical), flat-by-aggregate organization, an Anti-Corruption Layer for vendor independence, a transactional outbox for events, smart resilience (backoff with jitter, circuit breakers, idempotency), and a polished…

tech-leads-club/agent-skills · 208 tokens

modular-decomposition

Runs a sequenced monolith-to-modular pipeline that sizes and inventories components, finds shared domain duplication, addresses flattening and hierarchy issues, analyzes coupling, then groups components into candidate domain-aligned units, with optional embedded DDD strategic analysis for bounded contexts. Use when…

tech-leads-club/agent-skills · 158 tokens

rails-dev

Opinionated Rails conventions: rich models, concerns, CRUD-everything, state-as-records, minimal dependencies, Minitest with fixtures. Load this skill BEFORE any code-level thinking, not only before editing a file. It is required the moment a task touches Rails code in ANY way: designing or even just discussing a data…

tech-leads-club/agent-skills · 199 tokens