build-without-fear

build-without-fear is a skill for Codex from AkshitIreddy/agent-skills. It costs 78 tokens per session (847 once invoked), scanned A, original, MIT.

A development approach for building complete, production-ready systems with explicit handling for states, errors, retries, interruptions, and platform differences. It favors clear subsystems over small patches.

In plain words
What is it for?
Use it for large or complex implementations, especially interfaces, animations, audio, and other systems with many possible states and failure cases.
Why use it?
It helps prevent fixes that work only in the simplest case and prepares software for the many conditions it can encounter in real use.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it for large or complex implementations, especially interfaces, animations, audio, and other systems with many possible states and failure cases.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/akshitireddy/agent-skills/build-without-fear
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 AkshitIreddy/agent-skills --skill build-without-fear
Clone the repo
git clone --depth 1 https://github.com/AkshitIreddy/agent-skills

Made for: 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 build-without-fear

README.md
[![agentmods](https://agentmods.dev/badge/skills/akshitireddy/agent-skills/build-without-fear/github.svg)](https://agentmods.dev/skills/akshitireddy/agent-skills/build-without-fear)
Your own site
<a href="https://agentmods.dev/skills/akshitireddy/agent-skills/build-without-fear"><img src="https://agentmods.dev/badge/skills/akshitireddy/agent-skills/build-without-fear/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for build-without-fear

Your own site · 80×15
<a href="https://agentmods.dev/skills/akshitireddy/agent-skills/build-without-fear"><img src="https://agentmods.dev/badge/skills/akshitireddy/agent-skills/build-without-fear.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 847 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.00078 $0.00847
Opus 5 $0.00039 $0.00424
Sonnet 5 $0.00016 $0.00169
Haiku 4.5 $0.00008 $0.00085

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

Security

Grade A, and why

build-without-fear 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 11d 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/build-without-fear/SKILL.md · 92 lines

How it starts

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

Build Without Fear

Build the complete system the problem requires. Do not optimize for a small diff, few files, low line count, or a clever abstraction. Optimize for explicit state coverage, predictable transitions, debuggability, and a result that survives the real product's full possibility space.

Start from the state space

Write down the meaningful dimensions before coding:

  • lifecycle states, transitions, interruptions, retries, cancellation and teardown;
  • success, loading, empty, stale, partial, error, fallback and recovery states;
  • input methods, timing orders, re-entrancy, rapid repetition and concurrency;
  • platform, renderer, device, accessibility and reduced-capability variants;
  • persisted, cached, derived, live and presentation state;
  • ownership boundaries and which subsystem is authoritative at each instant.

Turn this into explicit types, state machines, scene descriptions, policies, and contracts. Avoid boolean piles whose combinations are accidental.

Prefer a subsystem over patches

When several bugs share a boundary, replace the boundary with one coherent pipeline. Include as many well-named modules as necessary:

  1. domain types and invariants;
  2. state machine or coordinator;
  3. preparation and preload stages;
  4. runtime execution;
  5. interruption, retry and recovery;
  6. adapters for frameworks or platforms;
  7. diagnostics and inspectable status;
  8. cleanup and resource ownership;
  9. compatibility and migration paths.

Keep business rules separate from framework adapters. Make every public operation return or expose enough information to distinguish played from queued, skipped, blocked, failed, superseded, cancelled, and completed.

Write explicit code

  • Prefer exhaustive discriminated unions and total switches.
  • Prefer named policies and tables over unexplained constants.
  • Prefer separate preparation, commit and cleanup phases.
  • Prefer idempotent operations and monotonic generations over timing guesses.
  • Prefer bounded queues, caches and instance pools with documented eviction.
  • Prefer a full scene/snapshot/model description over scattered DOM/CSS patches.
  • Prefer comments that explain ordering, ownership and failure modes.
  • Preserve extension points for plausible product variants already visible in the codebase; do not invent unrelated features merely to increase size.

Read the full file on GitHub · 92 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. 11d ago First seen · 92 lines · 78 tokens per session scan A b5bc555a53c9

Subscribe to this mod's changes

build-without-fear is a skill published in the GitHub repository AkshitIreddy/agent-skills (1 stars, last pushed 14d ago), licensed MIT. It adds 78 tokens to every session and 847 once invoked, about $0.0004 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

polar-billing

This skill should be used when working on Polar billing system, Stripe integration, subscription lifecycle, checkout flows, or benefit provisioning.

fcakyon/claude-codex-settings · 29 tokens

durable-objects

Build, debug, or review Cloudflare Durable Objects code for persistent state and coordination.

fcakyon/claude-codex-settings · 22 tokens

simplify

This skill should be used when the user asks to "simplify", "clean up the diff", "run simplify", "simplify the changes", "review changed code for cleanup", explicitly invokes "/simplify", or asks to "commit without simplify", "skip simplify for this commit", or "commit this but skip simplify". Reviews changed code…

fcakyon/claude-codex-settings · 97 tokens

ultralytics-platform

This skill should be used when user asks to "upload my model to Ultralytics Platform", "push this run to the platform", "upload a dataset to platform", "download a dataset from platform", "search platform datasets", "start cloud training", "train on platform GPUs", "export a model on platform", "deploy a model…

fcakyon/claude-codex-settings · 112 tokens

dokploy-deploy

This skill should be used when user asks to "deploy with Dokploy", "use Dokploy Cloud", "manage self-hosted Dokploy", "deploy Docker Compose on Dokploy", "manage Dokploy databases", "configure Dokploy domains", or "look up Dokploy CLI commands".

fcakyon/claude-codex-settings · 63 tokens

openai-frontend-design

Use for new frontend applications, dashboards, games, creative websites, hero sections, and visually driven UI from scratch, or when the user explicitly asks for a redesign/restyle/modernization. Builds from clean, airy, high-taste, readable image-generated concept design with section-specific references, faithful…

fcakyon/claude-codex-settings · 71 tokens