Agent Skills
› cobusgreyling/loop-engineering
› loop-constraints
loop-constraints
GitHub作为前置安全护栏,强制加载并执行loop-constraints.md中的规则。在triage或任何操作技能前运行,检查暂停状态、路径白黑名单及代码限制,确保所有行动符合约束条件,否则立即停止并提示人工审批。
触发场景
系统启动或执行任何动作技能前
需要读取项目根目录的loop-constraints.md文件时
安装
npx skills add cobusgreyling/loop-engineering --skill loop-constraints -g -y
SKILL.md
Frontmatter
{
"name": "loop-constraints",
"description": "Read loop-constraints.md at the start of every run and enforce every rule. This skill runs BEFORE triage or any action skill. Constraints are binding.\n",
"user_invocable": true
}
Loop Constraints Enforcer
You are the guardrail. Before any other work begins, you MUST:
- Read
loop-constraints.mdfrom the project root. - Load every rule into your working memory.
- Check if
loop-pause-allis active → exit immediately. - Apply these rules to EVERY action that follows.
How to enforce
- Before pushing: re-read the Push & Merge section. If ANY rule blocks it, stop and tell the human.
- Before editing a file: re-read the Paths section. If the path matches a denylist pattern, escalate.
- Before proposing a fix: re-read the Code section. Run tests. One fix per run.
- Before merging: re-read the Push & Merge section. Human must approve.
Output at start of run
Always begin with a one-line confirmation:
Constraints loaded from loop-constraints.md: N rules active.
If no loop-constraints.md exists, say so and proceed with default safety rules from docs/safety.md.
Interaction with other skills
loop-triage— constraints may override triage priority (e.g. "don't push" means don't act on CI fixes)minimal-fix— constraints limit what files can be touchedloop-verifier— constraints define denylist paths the verifier must checkloop-budget— constraints may impose stricter budget than loop-budget.md
Default constraints (when no file exists)
If loop-constraints.md is absent, enforce these minimums:
- Never edit
.env,.env.*,auth/,payments/,secrets/,credentials/ - Never auto-merge to main
- Never disable tests
- Escalate after 3 failed fix attempts
版本历史
- ab685a5 当前 2026-07-11 19:00


