Install
openclaw skills install reliability-evidence-packProvides tools to record, validate, and report agent operational reliability artifacts using standardized schemas for consistent monitoring and compliance.
openclaw skills install reliability-evidence-packA comprehensive runtime system for documenting and verifying agent operational reliability through structured artifact recording, validation, and compliance reporting.
/scripts)rep.mjs - Main CLI for initialization, validation, and bundle managementrep-validate.mjs - Schema validation engine for REP artifactsrep-heartbeat-cron.mjs - Records agent heartbeats on a schedulerep-near-miss-cron.mjs - Tracks near-miss reliability eventsrep-performance-baseline.mjs - Captures performance metricsrep-generate-bundle.mjs - Generates REP bundles from artifacts/cli)cli/README.md for installation and usage/github-action)github-action/README.md for setup/schemas)decision_rejection_log.jsonhandoff_acceptance_packet.jsonmemory_reconstruction_audit.jsonnear_miss_reliability_trailer.jsonsigned_divergence_violation_record.json/examples)No other system binaries required.
# Clone or copy this bundle to your project
cp -r rep-bundle-v2 /path/to/your/project/rep
cd rep
# Make scripts executable
chmod +x scripts/*.mjs
# Test
node scripts/rep.mjs --help
cd cli
npm install -g
rep --help
- uses: ./github-action
with:
bundle-path: ./rep
Set environment variables to configure behavior:
# Path to artifacts directory (default: ./artifacts)
REP_ARTIFACTS_PATH=./artifacts
# Path to schemas directory (default: ./schemas)
REP_SCHEMAS_PATH=./schemas
# Log file path (optional)
REP_LOG_FILE=/var/log/rep.log
node scripts/rep.mjs init --name "my-agent"
node scripts/rep-validate.mjs ./artifacts --strict
REP_ARTIFACTS_PATH=./artifacts node scripts/rep-heartbeat-cron.mjs
# Add to crontab - run heartbeat every 5 minutes
*/5 * * * * cd /path/to/rep && REP_ARTIFACTS_PATH=./artifacts node scripts/rep-heartbeat-cron.mjs >> /var/log/rep-heartbeat.log 2>&1
| Artifact | Purpose |
|---|---|
agent_heartbeat_record | Agent lifecycle events |
decision_rejection_log | Decisions and their outcomes |
context_snapshot | Memory/context state |
handoff_acceptance_packet | Inter-agent handoff validation |
near_miss_reliability_trailer | Near-miss events |
memory_reconstruction_audit | Memory integrity checks |
signed_divergence_violation_record | Policy violations |
MIT
SPEC.md, QUICKSTART.md, INTEGRATION.mdexamples/node scripts/rep-validate.mjs --helpREP captures context snapshots, decision logs, and memory-like artifacts that may contain sensitive information.
REP_ARTIFACTS_PATH to an isolated, access-controlled directoryThe SPEC includes signature fields for artifact integrity, but key management is operator-defined:
The GitHub Action is local to your repository:
github-action/entrypoint.sh before use in public CIAll scripts operate locally:
.gitignore