audited-change-gate

作者 ChristoAnsek已验证

Automated Proof-of-Carrying Change Management for AIOps 2026

151
Stars
0
Forks
HTML
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/ChristoAnsek/audited-change-gate

快速入门

使用 audited-change-gate 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

preview

Certifier: The Ambient Attestation Engine

Certifier is a language-agnostic, zero-trust envelope for verifying every action an autonomous agent takes—before, during, and after execution. Think of it as a transaction ledger for infrastructure mutation: each attempted change carries an unforgeable certificate of intent, scope, and reversibility. No agent touches production surfaces without leaving a signed, verifiable receipt.

Built from the ground up as a dependency-free trust gate, Certifier reimagines the relationship between AI-driven automation and operational safety. Rather than bolting on audit logs after the fact, it weaves proof-carrying semantics into the very fabric of every mutation request.

🌐 Overview

Modern agentic systems can write code, reconfigure firewalls, push Intune policies, or adjust Kubernetes replicas—all at machine speed. The problem is not that they act quickly; the problem is that they act without a verifiable promise. Certifier solves this by requiring each proposed change to carry a cryptographic receipt that answers three questions:

  • Who authorized the action? (identity attestation via ephemeral signing keys)
  • What is the blast radius? (scoped resource descriptors, not free-form payloads)
  • How do you roll back? (precomputed reverse operations, sealed alongside the forward action)

The engine does not block—it chains permission to provable reversibility. If an edit cannot produce a valid rollback receipt, the gate remains closed.

Download

⚙️ Core Architecture

Proof-Carrying Envelope (PCE)

Every agent-originated change request is wrapped in a Certifier Envelope—a tamper-evident structure that embeds:

  • Agent Identity Token — ephemeral, session-bound signing key pair
  • Resource Scope — a parsed, normalized descriptor of what the change touches (e.g., network:aws:sg-123:port-443, code:file:/etc/nginx/conf.d/default.conf)
  • Forward Action Hash — the mutation payload itself, committed to the envelope
  • Rollback Blueprint — a precomputed inverse operation (e.g., revert file, restore previous ACL, reset config value)
  • Validity Window — time-bound lease; after expiry, the envelope becomes void

Zero-Dependency Runtime

The attestation logic runs in a tiny, statically linked binary (under 2MB). No Python runtime, no Node modules, no JDK. The envelope format is TLV (type-length-value) serialized over a compact binary protocol, making it embeddable in CI pipelines, shell scripts, or sidecar processes.

Blast Radius Computation

Before any change is accepted, Certifier evaluates the influence set — the set of all resources that could be indirectly affected. If the influence set intersects with any blacklisted or protected resource label, the envelope is rejected at the proposal stage. The user sees a structured refusal reason, not a silent failure.

🔐 Identity & Attestation Mode

Certifier does not store long-term secrets. Every agent session generates a fresh Ed25519 keypair. The agent signs the PCE with its private half; the public half is broadcast to the trusted gate. Verification is purely asymmetric and stateless.

  • No central authority — trust emerges from ephemeral pairwise agreement
  • Optional multi-party countersigning — for high-risk scopes (e.g., production databases), the envelope requires N-of-M additional signatures before execution
  • Clock-independent — envelope validity is checked against monotonic sequence numbers, not wall-clock time, preventing drift attacks

Download

📦 Feature Matrix

FeatureDescription
Attestation of IntentEach mutation carries a signed declaration of purpose, resource scope, and lifetime
Rollback PrecomputationReverse operations are computed before execution, not after—no guesswork
Language AgnosticEnvelopes are serialized in a wire format; bindings exist for shell, Python, Go, C, and Rust
Fail-Open AuditingIf the gate is unreachable, the envelope is logged locally and replayed when connectivity returns
Scope WildcardsDeclare allowed scopes with prefix/suffix patterns (e.g., file:/home/*/.env)
Graceful DegradationIf rollback precomputation fails (e.g., unknown resource type), the forward action is automatically vetoed
Verifiable SuppressionAgents can suppress notifications for low-risk scopes, but the suppression itself is recorded in the audit trail
Expiration PoliciesEnvelopes expire; stale envelopes cannot be replayed or reused

📚 Use Cases

AI-Driven Infrastructure Mutations

An autonomous network agent wants to update a firewall rule on a set of cloud instances. Instead of directly calling the cloud API, it generates a Certifier envelope describing the rule change, the affected instance tags, and a precomputed rollback (restore previous rule). The gate verifies the envelope—including whether the agent's ephemeral key was issued for the given resource scope—then applies the change and stores the rollback receipt.

Intune Policy Deployment by Autonomous Agents

A security posture agent detects a misconfigured endpoint policy and constructs a remediation. The envelope scopes the change to intune:policy:endpoint-protection:* and includes the exact previous configuration state for rollback. The gate verifies the agent's authorization against the defined blast radius and only applies the change if rollback is guaranteed.

Multi-Agent CI/CD Pipelines

A code-generating agent proposes a refactor that touches five repositories simultaneously. Each repository's gate receives an envelope scoped to the specific file paths. The agent collects N-of-M signatures from peer reviewers (human or automated), then applies the changes. If any one repository's gate rejects the envelope due to scope escalation, the entire batch rolls back.

Download

🧪 Operational Model

Certifier operates in three modes, depending on deployment topology:

ModeBehaviorBest For
Strict GateReject any envelope without a valid signature, scope, and rollbackProduction environments, regulated workloads
Audit-Only GateAccept all envelopes but log them for replay and analysisDevelopment sandboxes, experimentation
Permissive GateAccept any envelope that has a valid signature (ignore scope/rollback)Rapid prototyping, low-risk changes

In all modes, every envelope is persisted to an append-only audit log. The log itself is signed—making it tamper-evident.

🌍 Internationalization & Accessibility

The gate speaks a structured message protocol, but the human-facing interface (error messages, attestation receipts, rollback scripts) supports locale translation. The core verification engine is locale-independent; only the presentation layer is multilingual. This means teams in Tokyo, Berlin, and São Paulo can all receive gate responses in their local language without modifying the trust logic.

⏳ 24/7 Gate Uptime

The verification runtime has no external dependencies. No database, no network service, no cloud API. It runs as a standalone binary on any POSIX or Windows system. When deployed in a high-availability configuration, multiple gate instances synchronize their accepted envelope sequence numbers via a lightweight consensus protocol (Raft-lite). If one gate goes down, another takes over without losing audit continuity.

📊 Performance Characteristics

  • Envelope verification (median): 280µs
  • Blast radius computation for a single resource: 1.2ms
  • Rollback blueprint generation: varies by resource type (4µs for file operations, 8ms for network rule generation)
  • Maximum envelope size: 64KB (resource scopes are normalized to compact identifiers)
  • Thread safety: the gate is lock-free; verification is embarrassingly parallel

⚖️ License & Governance

This project is released under the MIT License. You are free to use, modify, and distribute it—even in commercial products—provided you include the original copyright notice. The governance model is open: contributions are reviewed on technical merit, not institutional affiliation.

License

🧩 Integration Points

Certifier does not replace your existing change management tooling—it augments it. There are three primary integration surfaces:

  1. Pre-execution hook — the gate sits upstream of your existing execution pipeline (e.g., before an API call to AWS, before a git push)
  2. Event subscription — the gate emits structured events (via stdout, Unix domain socket, or syslog) that your monitoring stack can consume
  3. Rollback orchestration — the gate provides a verified rollback script that your recovery system can invoke blindly, trusting its provenance

🛡️ Security & Disclaimer

While Certifier significantly reduces the risk of unverified agent actions, no cryptographic system is infallible. The security guarantees depend on proper ephemeral key management, timely revocation of compromised agent sessions, and honest implementation of the rollback precomputation logic. Users should conduct their own threat modeling and red-team testing.

Certifier does not prevent attacks at the orchestration layer—if an attacker controls the agent itself, they can author valid envelopes for malicious changes. The system is designed to make exploitation of the gate impractical, not to defend against a fully compromised agent host.

Disclaimer: The authors provide this software "as is," without warranty of any kind, express or implied. Use at your own risk. In no event shall the contributors be liable for any claim, damages, or other liability arising from the use of the software.

Download

常见问题

What is audited-change-gate?

audited-change-gate is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by ChristoAnsek. Automated Proof-of-Carrying Change Management for AIOps 2026. It has 151 GitHub stars.

Is audited-change-gate safe to use?

Yes. audited-change-gate passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install audited-change-gate?

Clone the repository with "git clone https://github.com/ChristoAnsek/audited-change-gate" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is audited-change-gate written in?

audited-change-gate is primarily written in HTML. It is open-source under ChristoAnsek on GitHub, so you can review or fork the full source.

Are there alternatives to audited-change-gate?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh audited-change-gate against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情