Skip to content

Release v0.1.2

Choose a tag to compare

@github-actions github-actions released this 30 Jul 18:55
· 7 commits to master since this release

Sniff v0.1.2

Code quality analysis tool that detects AI-generated deception patterns and provides quality gates.

Features

  • [ANALYSIS] File analysis for code quality issues and misalignment patterns
  • [VERIFY] TODO verification with quality gates
  • [CHECKPOINT] Change tracking and diff analysis
  • [PATTERNS] Extensible pattern management system
  • [MULTI-LANG] Support for Rust, Python, TypeScript, JavaScript, Go, C/C++

Installation

From GitHub Releases

# Linux/macOS
curl -L https://github.com/conikeec/sniff/releases/download/v0.1.2/sniff-v0.1.2-$(uname -s)-$(uname -m).tar.gz | tar xz
sudo mv sniff /usr/local/bin/

# Windows (PowerShell)
Invoke-WebRequest -Uri "https://github.com/conikeec/sniff/releases/download/v0.1.2/sniff-v0.1.2-Windows-x86_64.zip" -OutFile "sniff.zip"
Expand-Archive -Path "sniff.zip" -DestinationPath "."

From Homebrew

brew install conikeec/tap/sniff

From Cargo

cargo install sniff

Usage

# Analyze files for code quality issues
sniff analyze-files src/ --format table --detailed

# Verify TODO completion with quality gates
sniff verify-todo TODO-123 --files src/auth.rs --min-quality 80

# Create and manage checkpoints
sniff checkpoint create "before-refactor" src/
sniff checkpoint diff "before-refactor" --paths src/

# Manage pattern library
sniff patterns list

See README.md for detailed documentation.