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

Validate

skill-jovesun-lab-arcgram-validate · by jovesun-lab

>-

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

Install

$ agentstack add skill-jovesun-lab-arcgram-validate

✓ 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-jovesun-lab-arcgram-validate)

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

About

Validate - the combined Arcgram self-check entry

One call. Two questions answered between the siblings: is the flow well-formed and coherent, AND do its @spec values still match the code?

Validate is a thin wrapper, not a new check. It imports [Checkpoint](../checkpoint/SKILL.md) and [Reconcile](../reconcile/SKILL.md) untouched and composes their pure functions:

  • Checkpoint (one input: the diagram) checks structure - well-formed, coherent.
  • Reconcile (two inputs: diagram + code) checks values - @spec literals == code constants.

Run both -> the diagram is a faithful, current spec. Every finding still comes from one sibling; Validate only merges, source-tags, and unions the attestation.

Code is optional

| input | what runs | clean possible? | |---|---|---| | validate(diagram, { code }) | Checkpoint and Reconcile | yes | | validate(diagram) (no code) | Checkpoint only | no - values unchecked |

Without code there is nothing to reconcile, so Reconcile is not run (running it would just flag every @spec pin as missing). Instead the value half is reported as one uncovered value-check-not-run finding, so a structure-only run is never falsely "clean" on values - the same anti-silent-pass rule both siblings enforce.

Locked invariant - uncovered is a third state, never a pass. A diagram-only run (no code) can never produce an overall green clean, even when the structure is perfect. The attestation explicitly appends | code consistency: NOT CHECKED (no code supplied), summary.codeConsistency reads "NOT_CHECKED", and the CLI verdict is INCOMPLETE, never the word CLEAN. This guards the exact silent-pass the family exists to prevent: claiming "checked & clean" while the code half was never checked.

Output (same contract as both siblings, plus source)

{ findings:[{id,type,severity,note,source}], summary, attestation, clean }
self-check ran HH:MM:SS | N findings | M unchecked
  • source is "checkpoint" | "reconcile" | "validate" - so you can route a finding back

to the check that raised it. Everything else (id, type, severity, note) is verbatim from the sibling.

  • attestation is the union: N and M are the combined defect / uncovered totals. When the

value half did not run it appends an explicit | code consistency: NOT CHECKED (no code supplied).

  • clean === checkpoint.clean && reconcile.clean (identically N=0 && M=0); uncovered is a

third state and is never folded into clean, so a skipped value-check is not clean.

  • summary nests each sibling's own summary under .checkpoint / .reconcile, plus ran and

codeConsistency ("checked" | "NOT_CHECKED").

  • The full sub-results are returned verbatim on .checkpoint / .reconcile for a caller that wants

the per-check breakdown.

Human reads the marker; agent reads the type (and source).

Use

node validate.mjs  [code-file ...] [--tier-b | --no-tier-b] [--json]
import { validate } from './validate.mjs';
validate({ nodes, edges, meta }, { code });   // code: string | string[]; omit -> structure only

--tier-b / --no-tier-b forward to Checkpoint's justification tier (else auto-detected by a decision diamond). Exit 1 on any defect (advisory - never blocks; an uncovered value-check is not a defect).

Verify: node validate-selftest.mjs (36 checks - source tags, union attestation, clean rule, the code-omitted path, and byte parity with running the two siblings separately). Example: examples/example-workflow.html vs example-workflow.config.cs (clean).

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.