load-bearing

load-bearing is a skill for Claude Code, Codex from IamK77/Skill. It costs 138 tokens per session (4,242 once invoked), scanned A, original, Apache-2.0.

A guide to making the important structural choices in a software system, such as its architecture, technology stack, module boundaries, interfaces, and data model.

In plain words
What is it for?
Use it when planning a new system or reshaping an existing one. It helps decide how parts should fit together, what rules they share, and which choices need careful review.
Why use it?
It helps separate decisions that are expensive to change—such as stored data and public interfaces—from code that can be reorganized later. This keeps human attention on choices that could cause lasting problems.

Skill for Claude CodeCodex

Part of the engineering plugin — 10 skills shipped together

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/iamk77/skill/load-bearing
Any agent
npx skills add IamK77/Skill --skill load-bearing
Clone the repo
git clone --depth 1 https://github.com/IamK77/Skill

Made for: Claude Code, Codex.

Or install engineering, the plugin that ships this one along with the rest of its 10 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 load-bearing

README.md
[![agentmods](https://agentmods.dev/badge/skills/iamk77/skill/load-bearing.svg)](https://agentmods.dev/skills/iamk77/skill/load-bearing)
Your own site
<a href="https://agentmods.dev/skills/iamk77/skill/load-bearing"><img src="https://agentmods.dev/badge/skills/iamk77/skill/load-bearing.svg" alt="Measured on agentmods" height="20"></a>
Per session 138 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,242 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.00138 $0.04242
Opus 5 $0.00069 $0.02121
Sonnet 5 $0.00028 $0.00848
Haiku 4.5 $0.00014 $0.00424

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

Security

Grade A, and why

load-bearing 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.

skills/engineering/load-bearing/SKILL.md · 175 lines

How it starts

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

load-bearing

!checklist init ${CLAUDE_SKILL_DIR} --force

Architecture is the set of decisions that are expensive to reverse. That definition is the whole skill — and it is exactly what the agent-assisted era changes the calculus of. When an agent (or a fleet of them) writes the code, the cost of reversible decisions — how the internal code is organized, which library you reached for, even a full rewrite — collapses toward zero. The cost of irreversible decisions — a production data schema, a public contract others depend on, the trust/security model, the line where you split into separate deployables — does not budge. Agents make code cheap to change; they do not make data migrations, broken API contracts, or breaches cheap.

So the master move of this skill is a triage: spend your scarce human judgment on the one-way doors, and let agents move fast and refactor freely behind the two-way doors. Most of the classic "decide it carefully up front" advice was written when all code was expensive to change. Half of it now applies only to the durable layer.

Speak the owner's language, or the one-way door isn't theirs. This skill works by spending the user's judgment where you cannot reverse it — validating an inherited decision, approving or vetoing an ADR — and they can only judge a decision they follow. Read their fluency from how they talk, and gloss a term on first use (SSRF, CAP, idempotent, a discriminated union). An owner nodding at an ADR they did not parse hasn't approved that door — they've abdicated it, the exact irreversible mistake this skill exists to prevent.

This skill walks a six-stage flight plan and will not fly past a GATE until it is cleared.

Discipline: finish every GATE before the next stage. GATEs are hard — never skip, batch past, or self-certify a stage you have not done. The checklist tool enforces the order; let it. Commands address stages by name.

Read references/agent-era-shifts.md first. It is the heart of this skill: the seven ways architecture in the agent era differs from the textbook, each with the design consequence. The human-era canon (Conway, Monolith First, DDD, CAP, ADR, KISS/YAGNI) is all still here — but re-aimed for a world where the code is written by something that has no instinct to respect a boundary, feels no cost producing complexity, and forgets everything between sessions.

This stage consumes the output of the groundwork skill — the funded requirements, the non-functional requirements, and the scope. If that does not exist yet, get it first; designing against unstated requirements is the original sin. If $ARGUMENTS is a trivial, structurally-settled change, this skill is overkill — say so and proceed.

Read the full file on GitHub · 175 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. 5d ago First seen · 175 lines · 138 tokens per session scan A c4509a5f2d1f

Subscribe to this mod's changes

load-bearing is a skill published in the GitHub repository IamK77/Skill (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 138 tokens to every session and 4,242 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-31.

Related

Other skills, from other repositories

create-site

Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…

microsoft/power-platform-skills · 73 tokens

google-ads-audit

Google Ads account audit and business context setup. Run this first — it gathers business information, analyzes account health, and saves context that all other ads skills reuse. Trigger on "audit my ads", "ads audit", "set up my ads", "onboard", "account overview", "how's my account", "ads health check", "what should…

nowork-studio/notfair-plugin · 114 tokens

review

5-pass structured code review — correctness, security, performance, readability, consistency.

SethGammon/Citadel · 17 tokens

ops-pocket

OPS on-demand: This skill should be used when the user asks to "pocket memos", "voice memo pipeline"…

Lifecycle-Innovations-Limited/claude-ops · 29 tokens

alive:system-upgrade

Upgrade ALIVE to the current version. Handles v1/v2/v3.x source states, multi-surface aware (alive-mcp / Hermes / Codex), retroactive version detection, partial-failure resume, dry-run previews, and rollback inspection.

alivecontext/alive · 57 tokens

extract-resume

Parse a resume's uploaded PDF into structured JSON (basics, experience, projects, skills, education) and save it to the editor.

suxrobGM/jobpilot · 32 tokens