Reliability Evidence Pack

ReviewAudited by ClawScan on May 10, 2026.

Overview

Review before installing: the pack is mostly a local reliability-logging tool, but its advertised CLI can falsely report validation/report success without doing the work.

Install only if you need local reliability-evidence artifacts. Prefer the direct validation scripts over the packaged `rep` CLI unless the CLI is fixed, keep artifact directories private and out of source control, and enable cron only when you want continuous background recording.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user or CI workflow could believe reliability evidence was validated when this CLI path did not actually validate anything.

Why it was flagged

The `rep validate` command prints that validation passed without reading artifacts, schemas, or a config file. Since the skill is marketed for validation and compliance reporting, this can create false assurance.

Skill content
console.log(chalk.blue('Validating REP configuration...')); ... console.log(chalk.bold.green('\n✓ Validation passed!'));
Recommendation

Do not rely on the packaged `rep` CLI until it calls the real validator and exits nonzero on failures; use reviewed direct scripts such as `scripts/rep-validate.mjs` instead.

What this means

Running the tool executes local JavaScript with the user account's permissions.

Why it was flagged

The tool can spawn a local Node process. This is purpose-aligned for invoking a validator, but it is still local command execution.

Skill content
const child = spawn('node', validateArgs, { stdio: 'pipe' });
Recommendation

Run it from a trusted copy of the bundle, avoid elevated privileges, and review command arguments before using it in automation.

What this means

If enabled, the heartbeat job will keep running and writing logs/artifacts until the user removes the cron entry.

Why it was flagged

The skill documents optional scheduled heartbeat recording. It says the operator must configure cron, so this is disclosed persistence rather than hidden background behavior.

Skill content
# 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
Recommendation

Only add the cron job if ongoing monitoring is desired, and document how to disable or remove it.

What this means

Sensitive context, decisions, or memory-like information could remain in local artifact files and later be shared or committed accidentally.

Why it was flagged

The skill intentionally records persistent context and decision artifacts. This is disclosed and purpose-aligned, but those records may contain private operational or user data.

Skill content
REP captures context snapshots, decision logs, and memory-like artifacts that may contain sensitive information.
Recommendation

Use an access-controlled artifact directory, add it to `.gitignore`, redact before sharing, and avoid storing secrets in REP artifacts.