Documentation Index
Fetch the complete documentation index at: https://parmanasystems.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Installation
Usage
Global flags
| Flag | Description |
|---|---|
--json | Machine-readable JSON output. Suitable for CI/CD pipelines and automation. |
--strict | Fail-closed mode. Exits with code 1 on any warning, incompatibility, or verification failure. |
verify
parmana verify artifact <file>
Verify a governance verification artifact produced by npm run proof:verify.
signature_verified— Ed25519 signature is validruntime_manifest_verified— Runtime manifest matches expected hashbundle_manifest_verified— Bundle manifest is intactbundle_signature_verified— Bundle signature is validattestation_signature_verified— Attestation signature is validinvariants_verified— All invariant checks pass
0 = pass, 1 = fail (with --strict), 3 = internal error
parmana verify bundle <manifest> <signature>
Verify a governance bundle manifest and its detached signature.
provenance
parmana provenance verify <manifest> <rebuilt>
Verify release provenance by comparing an original release manifest against a rebuilt manifest.
policy
parmana policy build <path>
Build a policy directory into a signed governance bundle.
bundle.manifest.json in the policy directory.
parmana policy inspect <path>
Inspect the structure and schema of a policy file.
- Policy ID and version
- Schema version
- Signal declarations and types
- Number of rules
- Rule IDs and outcomes
parmana policy graph <path>
Visualize the rule evaluation graph of a policy.
parmana policy simulate <policy> <input>
Simulate a batch of decisions against a policy without signing or replay protection.
GovernedExecutionRequest with a records[] array:
- Matched rule ID
- Governance explanation (which signals triggered which conditions)
- Outcome: approved / rejected / escalation required
- Reason string
runtime
parmana runtime inspect
Inspect the current runtime version, hash, and supported schema versions.
runtimeVersion— current runtime versionruntimeHash— hash of runtime binary statesupported_schemaVersions— schema versions this runtime can evaluate
workspace
parmana workspace init <name>
Scaffold a new Parmana Systems governance workspace from the minimal template.
- Example policy structure
- Trust root configuration
- Example signals input file
parmana workspace check
Validate the current workspace — checks policy files, trust root, and runtime compatibility.
parmana workspace explain
Print an explanation of the current workspace structure and governance configuration.
Exit codes
| Code | Meaning |
|---|---|
0 | Success |
1 | Verification failed (with --strict) |
2 | Usage error (invalid command or missing arguments) |
3 | Internal error |