claudegoodies
Command

start

From ruvnet

Truth verification system for ensuring code quality and correctness with a 0.95 accuracy threshold.

Install

/start

Facts

Repository
ruvnet/ruflo
Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this command runs.

# 🔍 Verification Commands

Truth verification system for ensuring code quality and correctness with a 0.95 accuracy threshold.

## Overview

The verification system provides real-time truth checking and validation for all agent tasks, ensuring high-quality outputs and automatic rollback on failures.

## Subcommands

### `verify check`
Run verification checks on current code or agent outputs.

```bash
claude-flow verify check --file src/app.js
claude-flow verify check --task "task-123"
claude-flow verify check --threshold 0.98
```

### `verify rollback`
Automatically rollback changes that fail verification.

```bash
claude-flow verify rollback --to-commit abc123
claude-flow verify rollback --last-good
claude-flow verify rollback --interactive
```

### `verify report`
Generate verification reports and metrics.

```bash
claude-flow verify report --format json
claude-flow verify report --export metrics.html
claude-flow verify report --period 7d
```

### `verify dashboard`
Launch interactive verification dashboard.

```bash
claude-flow verify dashboard
claude-flow verify dashboard --port 3000
claude-flow verify dashboard --export
```

## Configuration

Default threshold: **0.95** (95% accuracy required)

Configure in `.claude-flow/config.json`:
```json
{
  "verification": {
    "threshold": 0.95,
    "autoRollback": true,
    "gitIntegration": true,
    "hooks": {
      "preCommit"
View full source on GitHub →

Other slash commands