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

Corezoid Stage Scan

skill-corezoid-corezoid-ai-plugin-corezoid-stage-scan · by corezoid

>

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

Install

$ agentstack add skill-corezoid-corezoid-ai-plugin-corezoid-stage-scan

✓ 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-corezoid-corezoid-ai-plugin-corezoid-stage-scan)

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 Corezoid Stage Scan? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Scan a Corezoid Stage (pre-merge / pre-deploy validation)

You statically validate exported Corezoid stages — .zip exports or extracted folders — without touching the live environment. This is the fast first answer to "why does my merge / deploy fail" and the safe pre-flight check before any cross-stage merge.

The check is grep/AST-level over every *.conv.json in the export. It is fully offline and deterministic, so it works on attachments (e.g. files pulled from a Jira ticket) even with no Corezoid credentials.

What it detects

These map 1:1 to the errors the platform shows in the merge Errors list dialog:

| Finding | Platform error it explains | |---|---| | [1] process status != active | Only active process can be used | | [1b] empty (no-nodes) process | battered / half-recreated shell; deploy of an empty conv | | [2a] broken node link (to_node_id / err_node_id / go_to → missing node in same process) | Key 'to_node_id'. 'referenced node X does not exist' | | [2b] broken / inactive conv_id ref (api_rpc / api_copy / api_get_task → process missing from stage or not active) | Only active process can be used · Key 'conv_id'. 'Access user to conveyor is denied in logic' | | [2c] api_get_task.node_id missing in the target process | invalid get-task node reference |

{{...}} and @alias conv_id references are reported as unresolvable (counted, never flagged as broken) — they resolve at deploy time against the live stage.

> Note: api_get_task.node_id points at a node in the target conv_id process, > not the current one — the scanner checks it cross-process, so it does not produce > false "missing node" positives for get-task logics.

How to run

The skill ships a self-contained Python 3 scanner (stdlib only — zipfile, json, re; no install). Run it directly on the export(s):

python3 "${CLAUDE_PLUGIN_ROOT}/skills/corezoid-stage-scan/scripts/scan_stage.py" \
   [more ...] [--json report.json] [--quiet]
  • One input → scans that stage.
  • Two inputs → scans both (e.g. source and target of a merge) and prints a

report per stage so you can compare.

  • --json writes a machine-readable report (array if multiple inputs).
  • Exit code 1 if any blocker is found, 0 if clean → drop it into CI before merge.

Every finding carries both path (full file path inside the export) and folder (the human-readable folder location in the tree, e.g. 4570_CRM / 4526_Push: Pin block), so you can always tell the user where to find the object. When reporting back, include the folder for each conv_id — "what's broken" without "where it is" is not actionable. Exported folder names keep their id_ prefix (and may show mojibake for non-ASCII); the folder id always locates the object even if the display name is garbled.

Pass the stage exports as positional args. If the user attached ZIPs to a ticket, download them first, then point the scanner at the local files.

Workflow

  1. Gather inputs. Identify the exported stage file(s). For a merge problem ask

for / locate both the source (откуда) and target (куда) exports — most merge failures are explained by comparing the two.

  1. Run the scanner on each (or both at once).
  2. Map findings to the user's symptom. If they quoted a specific error, point at

the exact conv_id / node from the matching section above.

  1. Recommend the fix per finding:
  • status != active → set the process active, or delete it if unused. Do this on

both stages so the merge sees a consistent state.

  • empty / battered process → deploy real content or delete the shell.
  • broken node link → re-point or remove the dangling to_node_id / err_node_id.

If the export is internally consistent but the live stage still errors, the live process is in a half-merged state — re-deploy or roll back that one process on the environment (a stale merge that was never rolled back).

  • broken / inactive conv_id ref → fix the target (create / activate it, or point to

the correct existing process / alias). If the error is Access user to conveyor is denied, the referenced object is owned by a removed user — reassign ownership to a live account.

  1. Re-export and re-scan after fixes; merge only when the scan is clean on both.

Prevent recurrence (advise the user)

  • Always roll back a failed or aborted merge — never leave processes in merge state.
  • Avoid cross-version merges (newer-version structures into an older capi validate

differently). Align versions first.

  • Run this scan in CI / before every merge as a gate (--quiet, non-zero exit).

Notes

  • Read-only and offline; it never calls the API or mutates anything.
  • Folder/file names in exports may show garbled non-ASCII (UTF-8 shown as latin-1) —

cosmetic only; matching is by conv_id / uuid, not by name.

  • The export schema this relies on: top-level status, obj_id, uuid, conv_type,

and scheme.nodes[].condition.logics[] with type, to_node_id, err_node_id, conv_id, node_id.

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.