Back to list
CULPRITCHAOS

governed-dev

by CULPRITCHAOS

The Circuit Breaker for AI Infrastructure. A safety certification and failure-survivability system for RAG pipelines and Vector DBs.

2🍴 0📅 Jan 13, 2026

SKILL.md


name: governed-dev description: Evidence-first development with fail-closed behavior user-invocable: false allowed-tools:

  • Read
  • Grep
  • Glob
  • Bash(./scripts/claude/*) denied-tools:
  • Bash(curl)
  • Bash(wget)
  • Bash(powershell)
  • Bash(pwsh)

Governed Development Skill

This skill enforces evidence-first development practices for Interlock.

Core Principles

1. Evidence-First

Every claim must be backed by evidence:

  • If a command was not run: Mark the claim as UNVERIFIED
  • If output was not captured: Do not claim success
  • If artifacts were not produced: Do not claim completion
## Claim: Smoke tests pass

**Evidence**: `artifacts/claude/20260110T120000Z/smoke/summary.md`
**Status**: VERIFIED - Exit code 0, all steps passed

vs.

## Claim: Smoke tests pass

**Evidence**: None
**Status**: UNVERIFIED - Command not executed

2. Fail-Closed

Never "limp past" failures:

  • Any non-zero exit: Stop and report
  • Missing artifacts: Stop and report
  • Partial success: Report as failure
# WRONG - Ignoring failures
./scripts/claude/smoke.sh || true

# RIGHT - Respecting failures
./scripts/claude/smoke.sh
if [ $? -ne 0 ]; then
    echo "GATE FAILED"
    exit 1
fi

3. Artifacts Are Deliverables

Every operation should produce artifacts:

  • Link to artifacts in reports
  • Preserve artifacts for audit
  • Never overwrite without archiving
See: `artifacts/claude/20260110T120000Z/smoke/summary.md`

Verification Rules

Before Making Claims

  1. Run the relevant wrapper script
  2. Check exit code
  3. Read the summary.md artifact
  4. Only then make claims about results

After Failures

  1. Report the failure immediately
  2. Link to error artifacts (stderr.log)
  3. Do not attempt to "fix and continue" without explicit approval
  4. Mark all downstream claims as BLOCKED

Allowed Operations

OperationToolPurpose
Read filesReadInspect code and artifacts
Search filesGrep, GlobFind relevant code
Run wrappersBash(./scripts/claude/*)Execute verified scripts

Prohibited Operations

  • Arbitrary shell commands
  • Network requests (curl, wget)
  • Modifying production code without planning
  • Claiming success without evidence

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon