https://github.com/tmdgusya/engineering-discipline
SKILL for engineering-discipline
https://github.com/tmdgusya/engineering-discipline
Last synced: 22 days ago
JSON representation
SKILL for engineering-discipline
- Host: GitHub
- URL: https://github.com/tmdgusya/engineering-discipline
- Owner: tmdgusya
- Created: 2026-03-31T01:56:18.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-07-02T15:27:09.000Z (25 days ago)
- Last Synced: 2026-07-02T17:28:22.593Z (25 days ago)
- Language: HTML
- Homepage: https://tmdgusya.github.io/engineering-discipline/
- Size: 284 KB
- Stars: 114
- Watchers: 0
- Forks: 19
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ccamel - tmdgusya/engineering-discipline - SKILL for engineering-discipline (HTML)
README
# Engineering Discipline
[한국어](README.ko.md) | [中文](README.cn.md)
Engineering discipline skills for AI coding agents. Works with Claude Code, Gemini CLI, OpenCode, Codex, and Cursor.
## How It Works
Skills chain together to handle tasks from vague request to verified implementation:
```
User request
|
clarification ─── resolve ambiguity, explore codebase
|
|── Complexity Assessment (auto-routing)
| |
| |── Simple (score 5-8)
| | |
| | plan-crafting ─── create executable plan
| | |
| | run-plan ─── worker-validator execution loop
| | |
| | review-work ─── information-isolated verification
| |
| |── Complex (score 10-15)
| |
| milestone-planning ─── explore → draft → adversarial critics
| |
| long-run ─── multi-day orchestrator
| |── M1: plan-crafting → run-plan → review-work → checkpoint
| |── M2: plan-crafting → run-plan → review-work → checkpoint
| |── ...
|
|── karpathy ─── implementation guardrails (before/during coding)
|── clean-ai-slop ─── post-generation AI code cleanup
|── simplify ─── post-implementation code quality pass
|── systematic-debugging ─── reproduce-first bug fixing
|── rob-pike ─── measurement-driven optimization
```
You don't need to memorize this. Each skill activates automatically based on trigger phrases and context.
## Skills
### Workflow Skills (chain together)
#### Clarification
Resolves vague requests into well-defined work scopes — explores the codebase first, then runs iterative Q&A grounded in the findings. Outputs a Context Brief with automatic complexity routing.
**Triggers on:** "I want to...", "I need...", "let's build...", or any request where scope isn't immediately clear.
#### Plan Crafting
Creates executable multi-step implementation plans from a clear scope. Every step contains actual code — no placeholders allowed.
**Triggers on:** "plan this", "create a plan", or after clarification completes with a Simple verdict.
#### Run Plan
Executes plans using worker-validator pairs. Workers implement, validators verify independently with zero knowledge of the worker's approach.
**Triggers on:** "run the plan", "execute the plan", or after plan-crafting completes.
#### Review Work
Information-isolated post-execution verification. Reads only the plan document and the codebase — receives no execution logs or worker output.
**Triggers on:** "review the work", "verify the implementation", or after run-plan completes.
#### Simplify
Reviews changed code through three parallel agents (reuse, quality, efficiency), then fixes any issues found.
**Triggers on:** "simplify", "clean up the code", "review the changes".
### Long Running Execution
For complex tasks that span multiple days.
#### Milestone Planning (Ultraplan)
Grounds a draft milestone DAG in broad parallel exploration, then submits it to independent adversarial critics — hidden complexity, dependency & ordering, verifiability, integration risk — who attack the draft in rounds until no blocking findings remain.
**Triggers on:** "plan milestones", "break this into milestones", "ultraplan", or after clarification with a Complex verdict (score 10-15).
**Key features:**
- Two draft skeletons (interface-first vs risk-first) to counter anchoring
- Independent adversarial critics with information isolation (no cross-pollination)
- Critique-until-dry revision loop with a verbatim resolution log
- Binary-decidable success criteria enforced per milestone
- Milestone count guard (warn >7, require approval >10)
#### Long Run Harness
Orchestrates multi-day execution. Each milestone passes through plan-crafting, run-plan, review-work with checkpoint/recovery. Runs autonomously — the milestone lock is the single approval gate; it escalates only on failures.
**Triggers on:** "long run", "start long run", "execute milestones".
**Key features:**
- State persisted to disk after every phase transition (survives crashes)
- Retry escalation: re-execute → re-plan → stop (with persistent counter)
- Parallel milestones via worktree isolation
- Recovery protocol for interrupted sessions
- Rate limit handling aligned with Claude Code's built-in retry
- Context window management for long conversations
- Mid-execution correction and milestone addition procedures
### Standalone Skills
#### Karpathy Guidelines
Preventive guardrails for code implementation — enforces surgical changes, assumption verification, and scope discipline before and during coding.
**Triggers on:** Before implementing features, modifying code, or when generating code without reading existing context first.
#### Clean AI Slop
Corrective cleanup of AI-generated code. Removes LLM-specific patterns (over-commenting, unnecessary abstractions, defensive paranoia, verbose naming, filler) while preserving behavior. Regression-tests-first, single-smell-pass discipline.
**Triggers on:** "clean up", "deslop", "slop", "clean AI code", or after any significant generation session.
#### Rob Pike's 5 Rules
A decision framework that prevents premature optimization and enforces measurement-driven development.
**Triggers on:** "optimize", "slow", "performance", "bottleneck", "speed up", "make faster", "too slow"
#### Systematic Debugging
Strict debugging workflow: reproduce-first, root-cause-first, failing-test-first.
**Triggers on:** Any bug, test failure, or unexpected behavior.
**Reference guides:**
- [Condition-based waiting](skills/systematic-debugging/condition-based-waiting.md) — Replace flaky timeouts with reliable condition polling
- [Defense-in-depth validation](skills/systematic-debugging/defense-in-depth.md) — Validate at every layer data passes through
- [Root cause tracing](skills/systematic-debugging/root-cause-tracing.md) — Trace backward through call chains to find the original trigger
- [Find polluter script](skills/systematic-debugging/find-polluter.sh) — Bisection script to find which test creates unwanted files/state
## Quick Start
After installation, just describe what you want to do:
- **"I want to add authentication to the API"** — triggers clarification, routes to plan-crafting or milestone-planning based on complexity
- **"run the plan"** — executes the plan with worker-validator verification
- **"this test is flaky"** — triggers systematic-debugging
- **"the API is slow"** — triggers rob-pike measurement-first workflow
- **"clean up the AI code"** — triggers clean-ai-slop corrective cleanup
- **"simplify"** — reviews recent changes for reuse, quality, and efficiency
- **"long run"** — starts multi-day milestone execution with checkpoints
## Installation
### Claude Code
```
/plugin marketplace add tmdgusya/engineering-discipline
/plugin install engineering-discipline
```
### Gemini CLI
```bash
gemini extensions install https://github.com/tmdgusya/engineering-discipline
```
### Cursor
Install from the plugin marketplace, or:
```text
/add-plugin engineering-discipline
```
### Codex
```bash
npx skills add tmdgusya/engineering-discipline
```
Or install globally (available across all projects):
```bash
npx skills add tmdgusya/engineering-discipline -g
```
See [Codex install guide](.codex/INSTALL.md) for details.
### OpenCode
Add to your `opencode.json`:
```json
{
"plugin": ["engineering-discipline@git+https://github.com/tmdgusya/engineering-discipline.git"]
}
```
See [OpenCode install guide](.opencode/INSTALL.md) for details.
## Verify Installation
Start a new session and mention a performance concern or a bug. The relevant skill should activate automatically.
## Marketplace
This plugin is listed in the Claude Code plugin marketplace.
- **Category:** engineering
- **Tags:** optimization, debugging, engineering, discipline, rob-pike, systematic, planning, long-running
### Install from marketplace
```
/plugin marketplace add tmdgusya/engineering-discipline
/plugin install engineering-discipline
```
### Publish updates
Update `.claude-plugin/marketplace.json` with a new version and push to the repository. The marketplace entry pulls metadata from that file.
## License
MIT