AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Pipeline Auditor Protocol

skill-gustavo-meilus-superpipelines-pipeline-auditor-protocol · by gustavo-meilus

Loaded by the pipeline-auditor agent to audit Superpipelines pipeline bundles against compliance, CAD, topology, and bundle hygiene rules.

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-gustavo-meilus-superpipelines-pipeline-auditor-protocol

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-gustavo-meilus-superpipelines-pipeline-auditor-protocol)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Pipeline Auditor Protocol? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Pipeline Auditor — Operational Protocol

The full checklist in compliance-matrix.md covering layout, frontmatter, topology, runtime safety (criteria 1–25), and resolver consolidation (PR-01..PR-05, PR-07..PR-10). Classification levels from SEV-0 (Critical/Blocking) to SEV-3 (Informational/Style). A generated Markdown document summarizing findings with quoted evidence and remediation paths.

The Auditor is strictly read-only; it cannot modify files. Remediation must be routed to the pipeline-architect.

Operating Modes

| Mode | Trigger | Scope | | :--- | :--- | :--- | | FULL | Direct invocation or first audit. | Entire pipeline bundle: all agents, skills, and topology. | | DELTA | Triggered by mutation commands. | Changed files plus immediate neighbors and the entry skill. | | SCOPE-WIDE | audit-steps --all command. | FULL audit across all registered pipelines in all scope roots. |

Workflow

1. LOCATE

  • Resolve paths via sk-pipeline-paths.
  • FULL: Glob all agents and skills; read topology.json and the registry.
  • DELTA: Target only changed files and their graph neighbors.
  • SCOPE-WIDE: Iterate through all scope roots and registered pipelines.

2. AUDIT

  • Detect layout FIRST: determine whether the bundle is data-only (CAD agents + entry.md under .superpipelines/pipelines/{P}/) or legacy old-root (zero-body agents + run-{P} skill under tool dirs), per references/compliance-matrix.md § "Pipeline layout & criterion applicability". Apply criteria by layout: legacy layout/frontmatter/Lean-Agent criteria (1, 4, 5, 8, 9, 10, 10a, 19) are N/A on data-only — CAD-01..CAD-10 govern there instead. Never FAIL a conformant CAD against a legacy-only criterion.
  • Compliance Matrix: Execute the full compliance check in references/compliance-matrix.md (criteria 1-25 including 10a, resolver consolidation criteria PR-01..PR-05 and PR-07..PR-10, canonical agent-def criteria CAD-01..CAD-10, and bundle-maintenance criteria BUNDLE-01..BUNDLE-07 when auditing the Superpipelines bundle), honoring the layout applicability table.
  • Topology Rules: Verify graph validity, agent coverage, and edge consistency via references/topology-rules.md.
  • Assign severity per references/severity-classification.md and select fixes from references/fix-templates.md.

3. REPORT

  • The auditor is read-only (disallowedTools: Write, Edit, Bash) and NEVER writes the report file or mutates registry.json. Persistence is the orchestrator's responsibility (see commands/audit-steps.md REPORTING).
  • Render the full report per references/audit-report-template.md as inline output in the agent's response, together with the executive summary.
  • Hand the orchestrator an explicit registry-update instruction: the target audit/latest.md path and the last_audit timestamp value to record.
  • Record every audit, even those with zero findings.

4. FIX ROUTING

  • Auditor remains read-only.
  • SEV-0/1: Route to pipeline-architect with the remediation plan.
  • SEV-2/3: Surface to the user for manual decision.

Model-Tier Resolution Criteria (v2.0)

| ID | Criterion | SEV | Detection | |---|---|---|---| | MT-01 | Hardcoded model ID in skill body | SEV-2 | grep -E "claude-(sonnet\|opus\|haiku)-[0-9]\|gpt-5\.[0-9]\|gemini-3\." skills/**/SKILL.md skills/**/references/*.md returns matches outside skills/sk-platform-dispatch/profiles/ | | MT-02 | Agent missing both model_tier: and model: | SEV-1 | Agent frontmatter has neither field. Runtime resolver tolerates (defaults to fast) but scaffold-time auditor blocks: explicit declaration required for v2.0+ agents. | | MT-03 | Agent has explicit model: without comment justification | SEV-3 | Escape hatch in use. Surface to reviewer; do not block. Distinguish by plugin_version: if absent or = 2.0.0 → intentional v2 escape hatch (advisory only). | | MT-04 | Profile JSON missing model_tiers_version field | SEV-2 | Required for drift detection. | | MT-05 | Preference file references a model not in any profile's catalog | SEV-2 | Compare every prefs.platforms[*].tiers[*] value against the union of all profiles' model_tiers[*].model. Mismatch likely typo or stale ID. | | MT-06 | Agent has effort_tier: set on a platform with effort_field_name == null | SEV-3 | Effort will be silently ignored on this platform — inform user. Detection requires knowing the source/runtime tier. |

Resolution

  • MT-01: Move the hardcoded ID to a profile JSON; reference via platform_profile.model_tiers[tier].
  • MT-02: Add model_tier: to the agent (architect should have done this in Phase 4).
  • MT-03: Add a comment line above model: documenting WHY the escape hatch is needed.
  • MT-04: Add "model_tiers_version": "YYYY-MM-DD" to the profile.
  • MT-05: Run /superpipelines:change-models Mode F (catalog refresh) to reconcile.
  • MT-06: Either drop effort_tier: or accept that it's a no-op on this platform.
  • Cite file:line and quote evidence verbatim for every finding.
  • DELTA mode must ignore findings outside the changed scope to prevent unrelated blocking.
  • NEVER skip the compliance matrix checks, regardless of file appearance.
  • NEVER create or modify pipeline components directly.
  • Criterion 22 (PORTABILITY CHECK) applies in FULL and DELTA modes. FULL scope: all agents, skills, and topology.json. DELTA scope: changed files only — PLUS the entry skill unconditionally (entry skill is always in scope for portability checks regardless of which files changed).

Reference Files

  • ${CLAUDE_PLUGIN_ROOT}/skills/pipeline-auditor-references/references/compliance-matrix.md
  • ${CLAUDE_PLUGIN_ROOT}/skills/pipeline-auditor-references/references/canonical-agent-def.md
  • ${CLAUDE_PLUGIN_ROOT}/skills/pipeline-auditor-references/references/topology-rules.md
  • ${CLAUDE_PLUGIN_ROOT}/skills/pipeline-auditor-references/references/severity-classification.md
  • ${CLAUDE_PLUGIN_ROOT}/skills/pipeline-auditor-references/references/audit-report-template.md
  • ${CLAUDE_PLUGIN_ROOT}/skills/pipeline-auditor-references/references/fix-templates.md

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.