Infrastructure and Tools
Collection
IDEs, MCP servers, dev tools, browsers, deployment β’ 18 items β’ Updated
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Verifiable script envelope utility for governed execution.
Wraps shell scripts in structured JSON envelopes with:
No raw script execution without a receipt. No deployment without verification. No action without provenance.
git clone https://github.com/your-org/env-ship.git
cd env-ship
chmod +x bin/*.sh
export PATH="$PWD/bin:$PATH"
Or install globally:
sudo cp bin/env-ship.sh /usr/local/bin/env-ship
sudo cp bin/validate-envelope.sh /usr/local/bin/validate-envelope
# Create a script
cat > deploy.sh <<'EOF'
#!/bin/bash
set -euo pipefail
echo "Deploying..."
EOF
chmod +x deploy.sh
# Wrap it in an envelope
env-ship encapsulate deploy.sh
# Verify the envelope
env-ship verify deploy.envelope
# Extract and run
env-ship extract deploy.envelope verified.sh
./verified.sh
| Command | Description |
|---|---|
encapsulate |
Create envelope from script |
verify |
Verify envelope integrity |
extract |
Extract script from envelope |
inspect |
Display envelope metadata |
link-proof |
Attach proof reference |
sign |
Add Ed25519 signature |
batch |
Process all .sh files |
env-ship encapsulate deploy.sh
# Creates: deploy.envelope
env-ship encapsulate deploy.sh deploy.envelope "lean://Theorems/Conduction.lean"
# Generate keys
openssl genpkey -algorithm ED25519 -out private.pem
openssl pkey -in private.pem -pubout -out public.pem
# Sign envelope
env-ship encapsulate deploy.sh deploy.envelope "" private.pem
# Verify with signature
env-ship verify deploy.envelope --verify-signature public.pem
env-ship batch ./scripts ./proofs private.pem
Override defaults via environment variables:
export ENVELOPE_AUTHOR="your-name"
export ENVELOPE_INFRASTRUCTURE="your-infra"
export TRUST_PROTOCOL="your-protocol"
export ENVELOPE_AUDIT_SPEC="your-uuid"
script
β base64 encode
β SHA-256 hash
β JSON envelope
β optional Ed25519 signature
β optional proof reference
β schema validation
β verified extraction
β governed execution
{
"envelope_version": "1.0.0",
"envelope_id": "env-a1b2c3d4e5f6g7h8-1720000000",
"author": "your-name",
"infrastructure": "your-infra",
"trust_protocol": "your-protocol",
"audit_spec": "uuid",
"timestamp": "2026-07-05T00:00:00Z",
"hash": "sha256-of-original-script",
"proof_ref": "lean://Theorems/Proof.lean",
"payload_b64": "base64-encoded-script",
"signature": "optional-ed25519-signature"
}
jq - JSON processingsha256sum - Hash computationbase64 - Payload encodingopenssl - Signature operationsInstall on Ubuntu/Debian:
sudo apt-get install jq coreutils openssl
Install on macOS:
brew install jq
# Run the full interactive walkthrough
./demo/interactive.sh
# Or quick one-liner
./demo/quick.sh
# Run all tests
bash tests/test.sh
GitHub Actions workflow validates on every push:
MIT