Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By rlagycks
Battle-tested Claude Code workflows — 125 skills, agents, commands, and hooks for TDD, security scanning, code review, and autonomous development.
npx claudepluginhub rlagycks/oh-my-forge --plugin oh-my-forgeAnswer a quick side question without interrupting or losing context from the current task. Resume work automatically after answering.
Incrementally fix build and type errors with minimal, safe changes.
Create or verify a checkpoint in your workflow.
Ontology-guided implementation by Claude directly (no Codex required). Reads .claude/ontology/index.json to get file coordinates, generates a structured BRIEF, then implements inline.
Start NanoClaw v2 — OMF's persistent, zero-dependency REPL with model routing, skill hot-load, branching, compaction, export, and metrics.
Build and TypeScript error resolution specialist. Use PROACTIVELY when build fails or type errors occur. Fixes build/type errors only with minimal diffs, no architectural edits. Focuses on getting the build green quickly.
Personal communication chief of staff that triages email, Slack, LINE, and Messenger. Classifies messages into 4 tiers (skip/info_only/meeting_info/action_required), generates draft replies, and enforces post-send follow-through via hooks. Use when managing multi-channel communication workflows.
Expert code review specialist. Proactively reviews code for quality, security, and maintainability. Use immediately after writing or modifying code. MUST BE USED for all code changes.
C++ build, CMake, and compilation error resolution specialist. Fixes build errors, linker issues, and template errors with minimal changes. Use when C++ builds fail.
Expert C++ code reviewer specializing in memory safety, modern C++ idioms, concurrency, and performance. Use for all C++ code changes. MUST BE USED for C++ projects.
Head-to-head comparison of coding agents (Claude Code, Aider, Codex, etc.) on custom tasks with pass rate, cost, time, and consistency metrics
Design and optimize AI agent action spaces, tool definitions, and observation formatting for higher completion rates.
Add x402 payment execution to AI agents — per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents need to pay for APIs, services, or other agents.
Operate as an agentic engineer using eval-first execution, decomposition, and cost-aware model routing.
Engineering operating model for teams where AI agents generate a large share of implementation output.
Matches all tools
Hooks run on every tool call, not just specific ones
Executes bash commands
Hook triggers when Bash tool is used
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Complete collection of battle-tested Claude Code configs from an Anthropic hackathon winner - agents, skills, hooks, and rules evolved over 10+ months of intensive daily use
oh-my-zsh for Claude Code — 11 agents, 33 commands, 24 skills, 15 hooks + 9 examples (21 events), 9 rules, 4 MCP (minimal: playwright, context7, jina-reader, chrome-devtools@0.23.0). One-line install: curl -fsSL https://raw.githubusercontent.com/sangrokjung/claude-forge/main/install.sh | bash
Harness-native ECC plugin for engineering teams - 63 agents, 249 skills, 79 legacy command shims, reusable hooks, rules, MCP conventions, and operator workflows for Claude Code plus adjacent agent harnesses
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Modifies files
Hook triggers on file write and edit operations
Modifies files
Hook triggers on file write and edit operations
External network access
Connects to servers outside your machine
External network access
Connects to servers outside your machine
Uses power tools
Uses Bash, Write, or Edit tools
Uses power tools
Uses Bash, Write, or Edit tools
No model invocation
Executes directly as bash, bypassing the AI model
No model invocation
Executes directly as bash, bypassing the AI model
Runs pre-commands
Contains inline bash commands via ! syntax
Runs pre-commands
Contains inline bash commands via ! syntax
Bash prerequisite issue
Uses bash pre-commands but Bash not in allowed tools
Bash prerequisite issue
Uses bash pre-commands but Bash not in allowed tools
Share bugs, ideas, or general feedback.
English | 한국어
Every time an agent makes a mistake, change the system so that mistake cannot structurally happen again.
A customized Claude Code harness built on everything-claude-code. The core addition: an ontology-driven structural error prevention system that makes agent failures self-correcting at the harness level.
everything-claude-code is a production-ready performance optimization system for AI agent harnesses — skills, instincts, memory persistence, continuous learning, and cross-harness compatibility (Claude Code, Codex, Cowork).
oh-my-forge keeps all of that and adds two things on top:
1. Ontology-driven structural error prevention
When an agent makes a mistake, the default response is to patch the prompt. That's fragile — the same mistake resurfaces in a new session with a fresh context. oh-my-forge treats mistakes as system signals: each error is classified, routed, and converted into a structural change (a new constraint in the ontology, or a failure instinct in the learning pipeline) so the same failure cannot happen again.
2. Ontology as a GPS for implementation
Claude Code plans. The ontology index (index.json) acts as a coordinate map — Claude reads only the domain index and one spec doc (~3K tokens) instead of exploring the full source tree, then generates a structured BRIEF. Implementation is handled by whichever engine is available:
codex CLI is installed (/codex-delegate)/claude-implement)No configuration needed. The engine is auto-detected at plan time.
Three principles:
/.claude/ontology/)The central knowledge graph. Maps logical domains to their files, constraints, and feature specs.
"domain_hooks": {
"files": ["hooks/hooks.json", "scripts/hooks/..."],
"spec": "docs/features/hooks.md",
"constraints": [
"블로킹 훅(PreToolUse, Stop)은 200ms 이하 — 네트워크 호출 금지",
"신규 훅은 run-with-flags.js 래퍼를 통해서만 등록"
],
"riskLevel": "high",
"codexWorkerHint": "workspace-write"
}
Each domain_* entry defines:
|pattern:keyword)"read-only" or "workspace-write", tells Codex what role to take"high" triggers stronger warnings from the constraint guardSchema: /.claude/ontology/_schema.json validates every domain entry.
/commands/codex-delegate.md, /commands/claude-implement.md)The ontology index doubles as a GPS for implementation. Instead of giving the implementer the full source tree, Claude reads only index.json and the relevant spec doc (~3K tokens total), then generates a structured BRIEF.
/plan → auto-detects engine → /codex-delegate (Codex CLI installed)
→ /claude-implement (no Codex, Claude-only)
Both commands use the same BRIEF format and produce the same HANDOFF output — the engine is interchangeable. The /plan skill enforces Codex-first delegation and guards against silent fallback loops (fixed in v1.10.x).
Engine detection (first match wins):
CLAUDE_IMPL_ENGINE env var (claude or codex).claude/settings.json → implementationEngine~/.claude/settings.json → implementationEnginecodex binary absent → "claude""codex"Project/global implementationEngine is operator configuration, not an in-session escape hatch. pre-write-edit-codex-guard pins the resolved engine per session and blocks direct .claude/settings.json engine flips unless ECC_BYPASS_CODEX_GUARD=1 is set explicitly.