Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计通过

constraint-engine约束引擎

Agent Skill

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

总安装

10,977

周安装

462

GitHub Stars

公开资料未说明

下载量

3,844
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install constraint-engine

简介

约束引擎通过历史经验动态生成并应用执行规则以优化决策。

  • 适合需要自适应调整策略的智能体在多轮交互中保持稳定行为。
  • 学习过程基于结果反馈而非显式指令,提升泛化能力。constraint-engine 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 仅限 OpenClaw 宿主使用,需确保有足够的历史轨迹数据进行训练。
  • 过度约束可能导致僵化反应,建议保留适度探索空间。

SKILL.md

name
constraint-engine
version
1.3.0
description
Learn from consequences, not instructions — generate and enforce constraints from experience
author
Live Neon <hello@liveneon.ai>
homepage
https://github.com/live-neon/skills/tree/main/agentic/constraint-engine
repository
leegitw/constraint-engine
license
MIT
tags
[agentic, guardrails, enforcement, rules, circuit-breaker, self-improving, prevention, validation]
layer
core
status
active
alias
ce
metadata
openclaw
requires
config
workspace

constraint-engine (制約)

Unified skill for constraint generation, pre-action checking, circuit breaker management, and constraint lifecycle. Consolidates 7 granular skills into a single enforcement system.

Trigger: 行動前∨閾値到達 (pre-action or threshold reached)

Source skills: constraint-generator, circuit-breaker, emergency-override, constraint-lifecycle, constraint-versioning, positive-framer (partial), contextual-injection (partial)

Installation

openclaw install leegitw/constraint-engine

Dependencies: leegitw/failure-memory (for eligibility data)

# Install with dependencies
openclaw install leegitw/context-verifier
openclaw install leegitw/failure-memory
openclaw install leegitw/constraint-engine

Standalone usage: Requires failure-memory for constraint generation from observations. For full lifecycle management, install the complete suite (see Neon Agentic Suite).

Data handling: This skill operates within your agent's trust boundary. When triggered, it uses your agent's configured model for constraint checking and generation. No external APIs or third-party services are called. Results are written to output/constraints/ in your workspace.

What This Solves

Instructions get ignored. Rules get forgotten. Documentation goes unread. This skill takes a different approach — constraints generated from actual failures:

  1. Generate constraints from observations that meet the eligibility threshold (R≥3 ∧ C≥2)
  2. Enforce constraints at runtime with a circuit breaker (CLOSED → OPEN → HALF-OPEN)
  3. Manage lifecycle from proposal through adoption to retirement

The insight: A constraint born from "this actually broke" carries more weight than "this might break." Consequences teach better than instructions.

Usage

/ce <sub-command> [arguments]

Sub-Commands

CommandCJKLogicTrigger
/ce check検査action→constraints[]→pass∨blockNext Steps (auto)
/ce generate生成eligible(obs)→constraintNext Steps (auto)
/ce status状態active[], circuit∈{CLOSED,OPEN,HALF}Explicit
/ce override上書constraint→bypass(temp), audit.log++Explicit
/ce lifecycle周期state∈{draft→active→retiring→retired}Explicit
/ce version版本constraint→v++, history.preserveExplicit
/ce threshold閾値user∨context→custom_thresholdExplicit

Arguments

/ce check

ArgumentRequiredDescription
actionYesAction to check against constraints
--severityNoMinimum severity to check: critical, important, minor (default: all)

/ce generate

ArgumentRequiredDescription
observationYesObservation ID or pattern to generate constraint from
--forceNoGenerate even if eligibility criteria not met

/ce status

ArgumentRequiredDescription
--circuitNoShow circuit breaker status only
--activeNoShow active constraints only

/ce override

ArgumentRequiredDescription
constraintYesConstraint ID to override
reasonYesReason for override (logged for audit)
--durationNoOverride duration (default: "session")

/ce lifecycle

ArgumentRequiredDescription
constraintYesConstraint ID
stateYesTarget state: draft, active, retiring, retired

/ce version

ArgumentRequiredDescription
constraintYesConstraint ID
--bumpNoVersion bump type: major, minor, patch (default: minor)

/ce threshold

ArgumentRequiredDescription
--RNoCustom recurrence threshold (default: 3)
--CNoCustom confirmation threshold (default: 2)
--resetNoReset to default thresholds

Configuration

Configuration is loaded from (in order of precedence):

  1. .openclaw/constraint-engine.yaml (OpenClaw standard)
  2. .claude/constraint-engine.yaml (Claude Code compatibility)
  3. Defaults (built-in)
# .openclaw/constraint-engine.yaml
thresholds:
  R: 3                       # Recurrence threshold (default: 3)
  C: 2                       # Confirmation threshold (default: 2)
  false_positive_max: 0.2    # Max D/(C+D) ratio (default: 0.2)
circuit_breaker:
  critical_threshold: 3      # Violations to trip for CRITICAL
  important_threshold: 5     # Violations to trip for IMPORTANT
  minor_threshold: 10        # Violations to trip for MINOR
  window_days: 30            # Violation window (default: 30 days)
lifecycle:
  review_reminder_days: 80   # Days before 90-day review to remind

Core Logic

Eligibility Criteria

Observation becomes eligible for constraint when:

R≥3 ∧ C≥2 ∧ D/(C+D)<0.2 ∧ sources≥2
CriterionMeaning
R≥3At least 3 recurrences
C≥2At least 2 human confirmations
D/(C+D)<0.2False positive rate under 20%
sources≥2Observed by at least 2 different sources

Positive Reframing

Constraints are automatically reframed positively:

NegativePositive
"Don't commit without tests""Always run tests before commit"
"Don't push to main directly""Always create PR for main changes"
"Don't deploy without review""Always get code review before deployment"
"Don't skip migrations""Always run database migrations before release"

Example: Code Review Constraint

[CHECK BLOCKED] deploy production
Constraint violated: CON-20260212-005
  "Always get code review approval before production deployment"
  Severity: CRITICAL

Action: Request review via /ro twin, then retry deployment.

Example: Deployment Gate Constraint

[CHECK PASSED] deploy staging
Active constraints checked: 3
  ✓ CON-20260210-001: Tests pass
  ✓ CON-20260211-002: Staging smoke test
  ✓ CON-20260212-003: Database migration verified
All constraints satisfied. Proceeding to staging.

Circuit Breaker States

StateMeaningBehavior
CLOSEDNormal operationConstraints enforced
OPENCircuit trippedBlock all related actions
HALF-OPENTesting recoveryAllow limited actions

Circuit Breaker Thresholds

SeverityThresholdWindow
CRITICAL3 violations30 days
IMPORTANT5 violations30 days
MINOR10 violations30 days

Constraint Lifecycle

draft → active → retiring → retired
  │        │         │
  └────────┴─────────┴── 90-day review gates

Output

/ce check output (pass)

[CHECK PASSED] git commit -m "feature"
Active constraints checked: 5
All constraints satisfied.

/ce check output (block)

[CHECK BLOCKED] git commit -m "feature"

Constraint violated: CON-20260210-001
  "Always run tests before commit"
  Severity: CRITICAL

Action: Run tests first, then retry commit.
Override: /ce override CON-20260210-001 "emergency hotfix"

/ce status output

=== Constraint Engine Status ===

Circuit Breaker: CLOSED (healthy)

Active Constraints (5):
- CON-20260210-001: Always run tests before commit [CRITICAL]
- CON-20260212-003: Always lint before commit [IMPORTANT]
- ...

Draft Constraints (2):
- CON-20260215-001: Pending approval

Violations (30d): 2

/ce generate output

[CONSTRAINT GENERATED]

From: OBS-20260210-003 (lint-before-commit)
ID: CON-20260215-001
Text: "Always run lint before commit"
Severity: IMPORTANT
Status: draft

Next: Review and approve with /ce lifecycle CON-20260215-001 active

Integration

  • Layer: Core
  • Depends on: failure-memory (for eligibility data)
  • Used by: governance (for constraint reviews), safety-checks (for enforcement)

Failure Modes

ConditionBehavior
Invalid sub-commandList available sub-commands
Constraint not foundError with suggestion to search
Ineligible observationShow missing criteria, suggest /fm status
Circuit OPENBlock action, show recovery guidance
Override without reasonRequire reason for audit trail

Next Steps

After invoking this skill:

ConditionAction
Constraint generatedAdd to output/constraints/draft/, notify user
Constraint activatedMove to output/constraints/active/
Action blockedLog to output/hooks/blocked.log, explain why
Circuit OPENSurface to user with recovery guidance
Override usedAudit log entry, temporary bypass only

Workspace Files

This skill reads/writes:

output/
├── constraints/
│   ├── draft/           # Pending constraints
│   │   └── CON-YYYYMMDD-XXX.md
│   ├── active/          # Enforced constraints
│   │   └── CON-YYYYMMDD-XXX.md
│   ├── retired/         # Historical constraints
│   │   └── CON-YYYYMMDD-XXX.md
│   └── metadata.json    # VFM scoring data
└── hooks/
    └── blocked.log      # Actions blocked by constraints

Security Considerations

What this skill accesses:

  • Configuration files in .openclaw/constraint-engine.yaml and .claude/constraint-engine.yaml
  • Observation data from failure-memory (via .learnings/ directory)
  • Its own output directories output/constraints/ and output/hooks/

What this skill does NOT access:

  • Files outside declared workspace paths
  • System environment variables
  • Network resources or external APIs

What this skill does NOT do:

  • Send data to external services
  • Execute arbitrary code
  • Modify files outside its workspace

Dependency note: This skill reads observation data from failure-memory skill's workspace (.learnings/). Install leegitw/failure-memory for full constraint generation functionality. Without failure-memory, constraint generation will have no observation data to process.

Audit logging: Override actions are logged to output/hooks/blocked.log for audit purposes. Logs are stored locally in the workspace only.

Acceptance Criteria

  • [ ] /ce check validates action against active constraints
  • [ ] /ce check blocks when constraint violated, shows reason
  • [ ] /ce generate creates constraint from eligible observation
  • [ ] /ce generate applies positive reframing
  • [ ] /ce status shows circuit breaker state and active constraints
  • [ ] /ce override creates temporary bypass with audit log
  • [ ] /ce lifecycle transitions constraint through states
  • [ ] /ce version increments constraint version preserving history
  • [ ] Circuit breaker trips at severity-appropriate thresholds
  • [ ] Workspace files follow documented structure

*Consolidated from 7 skills as part of agentic skills consolidation (2026-02-15).*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.5%
按下载量换算3,786

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills