godmode-engineering

godmode-engineering is a skill for Claude Code, Codex from hybridlabor-api/bdb-dev-optimized-agent-skills. It costs 45 tokens per session (1,295 once invoked), scanned A, original, Apache-2.0.

A software-engineering workflow for backend and full-stack development based on domain boundaries, strict TypeScript, and Clean Architecture. It also defines a structured five-step process for debugging.

In plain words
What is it for?
Use it to model business logic, enforce safer TypeScript patterns, structure backend systems, and investigate bugs systematically.
Why use it?
It helps keep business rules separate from implementation details and reduces ambiguous state or loosely checked data in the codebase.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; mentions Claude Code.

Good fit Use it to model business logic, enforce safer TypeScript patterns, structure backend systems, and investigate bugs systematically.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hybridlabor-api/bdb-dev-optimized-agent-skills/godmode-engineering
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 hybridlabor-api/bdb-dev-optimized-agent-skills --skill godmode-engineering
Clone the repo
git clone --depth 1 https://github.com/hybridlabor-api/bdb-dev-optimized-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 godmode-engineering

README.md
[![agentmods](https://agentmods.dev/badge/skills/hybridlabor-api/bdb-dev-optimized-agent-skills/godmode-engineering.svg)](https://agentmods.dev/skills/hybridlabor-api/bdb-dev-optimized-agent-skills/godmode-engineering)
Your own site
<a href="https://agentmods.dev/skills/hybridlabor-api/bdb-dev-optimized-agent-skills/godmode-engineering"><img src="https://agentmods.dev/badge/skills/hybridlabor-api/bdb-dev-optimized-agent-skills/godmode-engineering.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,295 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.00045 $0.01295
Opus 5 $0.00023 $0.00647
Sonnet 5 $0.00009 $0.00259
Haiku 4.5 $0.00005 $0.00129

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

Security

Grade A, and why

godmode-engineering 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 4d 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/basic/godmode-engineering/SKILL.md · 78 lines

How it starts

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

⚙️ BDB Engineering Godmode

This skill orchestrates the core logic, domain modeling, and typing constraints of the codebase. It replaces scattershot coding with rigorous, structured engineering methodologies designed for the BDB ecosystem. As an agent, you must execute these principles rigorously across all supported harnesses (Cursor, Claude Code, Agy, Copilot).

1. Domain Modeling & Type Strictness

Code represents business logic. Do not write implementation details before defining the boundaries.

  • Strict Typing: any is strictly forbidden. Use unknown if a type is truly dynamic, and validate it at runtime (e.g., using Zod).
  • Discriminated Unions: Always use Discriminated Unions (tagged unions) to model state machines. Never rely on multiple optional boolean flags (e.g., isLoading, isError, isSuccess). Instead, use { status: 'loading' } | { status: 'error', error: string } | { status: 'success', data: T }.
  • Immutability: State must be immutable. Use .map(), .filter(), and .reduce() over standard for loops where data transformation is required.

2. Codebase Architecture (Clean Architecture)

Do not couple business logic tightly to framework details (like React components or Express routes).

  • Separation of Concerns: Keep UI logic separate from data fetching. Use custom hooks (in React) or Controllers/Services (in backend) to abstract API calls.
  • Dependency Injection: Pass dependencies as arguments rather than hardcoding global imports to ensure the logic remains testable.
  • ADR (Architecture Decision Records): For any major architectural choice (e.g., choosing a new ORM, changing a state management pattern), document the context, decision, and consequences before proceeding.

3. Systematic Debugging (The 5-Step Triage)

Do not guess fixes based on a single error log line. If an error occurs, you must execute the 5-step triage:

  1. Reproduce: Find the exact sequence of inputs that reliably causes the error.
  2. Localize: Narrow down the error to a specific file or function.
  3. Reduce: Isolate the function. Can the bug be replicated in a minimal unit test?
  4. Fix: Implement the precise logic fix without breaking adjacent code.
  5. Guard: Write a permanent test (Unit or E2E) to prevent regressions.

Read the full file on GitHub · 78 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. 4d ago First seen · 78 lines · 45 tokens per session scan A 413f85095dd8

Subscribe to this mod's changes

godmode-engineering is a skill published in the GitHub repository hybridlabor-api/bdb-dev-optimized-agent-skills (6 stars, last pushed 3d ago), licensed Apache-2.0. It adds 45 tokens to every session and 1,295 once invoked, about $0.0002 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-09-03.