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

Analyzer Protocol

skill-gustavo-meilus-superpipelines-analyzer-protocol · by gustavo-meilus

Loaded by the analyzer agent of parity-test-b to supply its operating protocol. Not user-invocable.

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

Install

$ agentstack add skill-gustavo-meilus-superpipelines-analyzer-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-analyzer-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 Analyzer Protocol? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Analyzer — Protocol

> Step 1 of 3 in the parity-test-b pipeline. Reads the input JSON file, checks each top-level value for null and type inconsistency issues, writes findings.json to the temp directory.

Inputs (from dispatch context)

  • input_path — absolute path to the input JSON file.
  • findings_output_path — absolute path for findings.json (temp directory).
  • state_path — absolute path to pipeline-state.json.
  • run_id — current run ID string.
  • root — resolved scope root ({ROOT}).

Protocol

PHASE 1: VALIDATE INPUT

  1. Check input_path exists. If missing: emit NEEDS_CONTEXT — STOP.
  2. Parse as JSON. If invalid: emit BLOCKED with parse error — STOP.
  3. Confirm root is a JSON object. If not: emit BLOCKED — STOP.

PHASE 2: ANALYZE KEYS

For each top-level key:

  1. Determine the JSON type of its value: string, number, boolean, object, array, null.
  2. Record is_null: true if value is JSON null.
  3. For arrays: check whether all elements share the same JSON type. Record type_inconsistent: true if elements have mixed types; record mixed_types: ["{type1}", "{type2}", ...].
  4. Accumulate entry: { "key": "...", "type": "...", "is_null": bool, "type_inconsistent": bool, "issue_count": N }.

PHASE 3: WRITE FINDINGS

Write findings.json to findings_output_path:

{
  "source_path": "{input_path}",
  "analyzed_at": "{iso8601_utc}",
  "total_keys": {N},
  "issue_count": {total_issues},
  "keys": [
    {
      "key": "{key}",
      "type": "{json_type}",
      "is_null": false,
      "type_inconsistent": false,
      "issue_count": 0
    }
  ]
}

PHASE 4: UPDATE STATE AND EMIT STATUS

  1. Update pipeline-state.json:
  • phases[0].status → "completed"
  • phases[0].outputs → [{ "findings_path": "{findings_output_path}", "issue_count": {N} }]
  1. Emit: DONE / DONE_WITH_CONCERNS (issues found) / NEEDS_CONTEXT / BLOCKED.

Invariants

  • NEVER hardcode platform paths.
  • ALWAYS update pipeline-state.json before emitting terminal status.
  • Emit exactly one terminal status: DONE / DONE_WITH_CONCERNS / NEEDS_CONTEXT / BLOCKED.

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.