Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

engineering-discipline工程学科

Agent Skill

engineering-discipline 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,544

周安装

106

GitHub Stars

公开资料未说明

下载量

848
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:engineering-discipline(工程学科)
来源仓库:https://github.com/christianye/engineering-discipline
安装命令:
openclaw skills install engineering-discipline
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install engineering-discipline

简介

提供生产级 AI 编码规范,防止过度设计与模糊执行。

  • 适用于团队协作、代码质量管控与工程实践标准化。
  • 明确四大罪过:无思考行动、过度设计、附带损害与模糊执行。
  • 建议结合 CI/CD 流程强制执行编码规则。
  • engineering-discipline 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
Engineering Discipline
slug
engineering-discipline
version
1.0.0
description
Production-grade AI coding discipline. Prevents the top 4 AI coding sins: acting without thinking, over-engineering, collateral damage, and vague execution. Based on Karpathy's 4 rules + battle-tested additions (3-layer consistency checks, anti-rationalization, verification loops, surgical diffs). Works with Claude Code, Cursor, Copilot, and any AI coding assistant.
homepage
https://clawhub.ai/skills/engineering-discipline
metadata
{"clawdbot":{"emoji":"🔧","os":["linux","darwin","win32"]}}

When to Use

Apply this skill to every coding session. It's not a task-specific tool — it's a permanent behavior modifier for AI coding assistants.

Especially critical when:

  • Working on production codebases (>1000 lines)
  • Making changes that touch multiple files or components
  • The AI assistant starts "suggesting improvements" you didn't ask for
  • You notice the AI making assumptions about your intent

The 4 Foundational Rules (Karpathy)

Rule 1: Think Before Coding

Problem: AI acts on assumptions, not understanding.

Before writing any code:

  1. If the requirement is ambiguous → ask, don't guess
  2. If there are multiple valid approaches → list them with tradeoffs
  3. If the request seems wrong → push back with reasoning
  4. If you're uncertain about scope → confirm before touching files

❌ Bad: "I'll refactor this module while fixing the bug" ✅ Good: "The bug is in line 42. I see the surrounding code could be cleaner, but you only asked me to fix the bug. Should I also refactor?"

Rule 2: Simplicity First

Problem: AI defaults to over-abstraction.

  • 10 lines > 100 lines for the same result
  • No feature creep — only build what was asked
  • No premature abstraction — don't add interfaces "just in case"
  • Litmus test: would a senior engineer say "this is too complex"? → rewrite

❌ Bad: Adding a factory pattern, three interfaces, and a config layer for a simple utility function ✅ Good: One function, clear name, no unnecessary indirection

Rule 3: Surgical Changes

Problem: AI makes "drive-by" edits to code it wasn't asked to touch.

  • Fix the bug, only the bug
  • Don't reformat adjacent code
  • Don't update comments you weren't asked about
  • Don't change variable names in unrelated functions
  • Every changed line must trace back to the user's specific request

❌ Bad: "While fixing the auth bug, I also cleaned up the logging format and renamed some variables" ✅ Good: 3 lines changed, all in the auth function, all directly related to the bug

Rule 4: Goal-Driven Execution

Problem: Vague instructions lead to vague results.

Instead of telling the AI how to do something, give it a success criterion:

❌ "Fix the login bug" ✅ "Write a test that reproduces the login timeout on slow networks, then make it pass"

❌ "Improve the API" ✅ "Response time for /api/users must be under 200ms for 1000 concurrent requests"

The AI iterates better toward measurable goals than fuzzy directions.

💡 Why This Way: LLMs are natural iterators. Given a clear target, they'll loop (generate → test → adjust) until they hit it. Given a vague goal, they'll generate once, declare victory, and move on.

Battle-Tested Additions (Beyond Karpathy)

A1: Three-Layer Consistency Check

After any change, verify alignment across layers:

Layer 1 — Naming: env vars, DB columns, API paths, config keys must match across all files Layer 2 — Business: design docs ↔ code ↔ UI ↔ API responses must tell the same story Layer 3 — Database: migrations ordered correctly, FK references valid, types match TS interfaces

Run the relevant layer after each change. Run all three on major releases.

A2: Anti-Rationalization

Never trust the AI's "I think this looks correct."

  • "I read the code" ≠ verified → run it
  • "It should work" ≠ confirmed → test it
  • "I wrote it, so it's right" = rationalization → verify independently

A3: Verification Loop

For every change type, define a verification action:

ChangedVerify by
Code/scriptExecute it
ConfigRestart + confirm effect
Generated fileCheck content (wc -l, grep, diff)
API callCheck return value
UI changeVisual diff before/after

A4: Pre-Change Snapshot

Before modifying any file:

  1. Record current state (grep key content, or screenshot)
  2. Make the change
  3. Diff to confirm only intended parts changed
  4. If unintended changes found → revert and redo surgically

A5: Context Hygiene

AI context windows are finite. Polluted context → degraded output.

  • Trim tool outputs (pipe to head -30, don't dump 500 lines)
  • Checkpoint progress to files during long tasks
  • Don't let the AI "remember" — make it read files

Integration

Claude Code (CLAUDE.md)

Add to your project's CLAUDE.md:

# Engineering Discipline Rules
[paste the 4 rules + additions above]

Cursor (.cursor/rules)

Add to .cursor/rules/engineering-discipline.md

Any AI Coding Tool

These rules work as system prompts, project instructions, or conversation primers for any LLM-based coding assistant.

Related Skills

  • trinity-harness — Full agent harness with Challenge + Execute + Compound layers
  • self-improving-agent — Continuous learning from mistakes
  • skill-creator — Create new skills from workflows

Feedback

  • If useful: clawhub star engineering-discipline
  • Issues: https://github.com/clawhub/engineering-discipline

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.03%
按下载量换算730

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills