Subagent Verification for Claude AI Code Networks 2026
# Add to your Claude Code skills
git clone https://github.com/minetechnic2012-lang/claude-ops-inspectorGuides for using ai agents skills like claude-ops-inspector.
claude-ops-inspector is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by minetechnic2012-lang. Subagent Verification for Claude AI Code Networks 2026. It has 72 GitHub stars.
claude-ops-inspector's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/minetechnic2012-lang/claude-ops-inspector" and add it to your Claude Code skills directory (see the Installation section above).
claude-ops-inspector is primarily written in HTML. It is open-source under minetechnic2012-lang on GitHub, so you can review or fork the full source.
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 claude-ops-inspector against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
A distributed intelligence network of six single-purpose Claude Code subagents that verify, validate, and certify changes across codebases, network configurations, and endpoint management—engineered to Anthropic’s subagent best practices, with a built-in meta-validator that proves the agent files themselves conform to specification.
Imagine a team of six tireless specialists—each with a laser-focused mission, a shared language, and an unbreakable commitment to correctness. Welcome to CodeGuardian Swarm, a repository that reimagines how teams verify technical changes. Instead of chasing bugs through spreadsheets, email chains, or monolithic CI pipelines that test everything at once, you deploy a coordinated intelligence that mimics the best parts of a rigorous code review committee—but runs autonomously, 24 hours a day, across three critical domains: code integrity, network fidelity, and endpoint management.
Each subagent in this swarm is a "guardian" with a single, narrow responsibility. One checks for regressions in pull requests. Another validates that firewall rules match declared intent. A third ensures Intune device compliance policies haven’t drifted. They don’t overlap; they orchestrate. When a change enters the system, the relevant guardians awaken, run their verification protocols, and report back—together, in a unified format.
The sixth agent is special: the Validator. It doesn’t verify code or infrastructure. It verifies the agents themselves—ensuring every file in this repository adheres to the architectural patterns, naming conventions, and behavioral contracts defined by Anthropic’s subagent best practices. If a guardian begins to deviate, the Validator raises an alarm. This is self-healing metadata.
A linter checks syntax. A test runner checks behavior. A compliance scanner checks policies. CodeGuardian Swarm checks all three in a single, agent-coordinated pass, and then checks itself. This is the difference between a checklist and a constitution.
CodeGuardian Swarm bridges these gaps by giving each verification domain a dedicated, reasoning-capable agent that doesn’t just flag problems—it explains why a change is safe or unsafe in natural language, referencing the exact line, rule, or policy that triggered the concern.
Each agent is a single-focus Lua-configured Claude Code instance, designed to run headless in CI/CD or as a local verification tool. They share a common input/output protocol called SwarmSpec, which allows them to be composed, tested, and validated independently.
CodeGuardian – Pull Request Validator
Verifies that code changes don’t introduce regressions, violate architectural constraints, or bypass security hooks.
NetGuardian – Infrastructure Compliance Agent
Compares declared network intent (Terraform, Ansible, or raw configuration) against live state, flagging discrepancies in firewall rules, subnet boundaries, and access control lists.
EndpointGuardian – Intune Policy Verifier
Checks that device compliance policies, configuration profiles, and conditional access rules are correctly applied and haven’t drifted from declared baselines.
DependencyGuardian – Supply Chain Auditor
Scans dependencies for known vulnerabilities, license compliance, and unexpected transitive changes introduced by a PR.
LogGuardian – Event Correlation Agent
Analyzes logs from previous deployments to detect patterns that predict failure, such as latency spikes or error rate increases after similar changes.
MetaGuardian – Validator of Validators
Reads every other agent’s configuration, file structure, and behavioral contract, then certifies that they conform to the Anthropic subagent best practices specification embedded in this repo.
Every agent is built following Anthropic’s published guidelines for reliable, hallucination-resistant subagents. This means:
The MetaGuardian doesn’t just validate others—it validates the entire repository as a living document. Run it before every commit and it will:
verify(input) interface.All six agents emit results in a shared format (SwarmReport), which can be visualized in a lightweight HTML dashboard or ingested by existing monitoring tools. You get a single source of truth for: “Did my change break anything—code, network, or endpoints?”
While the agent outputs are in English, the summary layer supports localization. Teams can opt to receive the final report in Spanish, French, German, or Japanese—generated by a lightweight translation agent that never touches raw configuration.
No manual trigger required. Set up a webhook or schedule, and the Swarm wakes on each change. EndpointGuardian can poll Intune hourly. NetGuardian can diff firewall rules every 15 minutes. LogGuardian listens to log streams in near-real-time.
Agents communicate via SwarmMessage, a lightweight JSON envelope that carries:
agent_id – UUID of the source guardiantarget_domain – code / network / endpoint / metaverification_context – the specific diff or policy snapshotconfidence_score – a float between 0.0 and 1.0evidence_chain – an array of file paths, line numbers, and rule referencesNo agent talks directly to another. Instead, they post to a shared message bus (implemented as a simple file-based queue or in-memory ring buffer). The Orchestrator (a seventh, lightweight coordinator) routes messages and ensures ordering.
The MetaGuardian runs after every cycle (or on demand). It reads all SwarmConfig files, checks them against a formal schema, and runs a series of “best-practice probes” inspired by Anthropic’s subagent guidelines:
If any probe fails, the MetaGuardian produces a DeviationReport with a severity label and a recommended fix. This self-referential validation is the reason the Swarm can evolve safely.
Financial services, healthcare, and defense organizations must prove that every code change, every network rule update, every endpoint policy modification is verified by multiple independent checks. CodeGuardian Swarm produces an auditable trail for each change, satisfying compliance requirements without manual paperwork.
Instead of having separate pipelines for unit tests, security scans, infrastructure checks, and policy compliance, a single Swarm invocation can verify all domains in parallel. The result is a unified pass/fail decision with per-domain granularity.
When an incident occurs and a hotfix is deployed, the Swarm can be invoked to verify that the fix hasn’t destabilized other parts of the system. NetGuardian ensures firewall rules weren’t accidentally opened. EndpointGuardian checks that emergency policies were rolled back correctly. LogGuardian confirms no new anomalies appeared.
New developers can run the Swarm locally before pushing code. The agents explain failures in plain language, reducing the learning curve for complex verification rules. MetaGuardian acts as a safety net, ensuring no agent configuration drift occurs as the repo grows.
/
├── agents/
│ ├── codeguardian/
│ │ ├── config.yaml # SwarmConfig for code verification
│ │ └── rules/
│ │ ├── regression.json
│ │ └── security_hooks.yaml
│ ├── netguardian/
│ ├── endpointguardian/
│ ├── dependencyguardian/
│ ├── logguardian/
│ └── metaguardian/
│ ├── config.yaml # Validator configuration
│ └── probes/
│ ├── scope.yaml
│ └── determinism.yaml
├── swarm_spec/
│ ├── message_schema.json # JSON schema for