ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Solaudit - Smart Contract Security Scanner

Solidity smart contract security auditor. Detect reentrancy, overflow, access control issues. 50+ vulnerability patterns. CI/CD ready. Free CLI tool.

skill-install โ€” Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/lxgicstudios/solaudit
Or

Solaudit

Security scanner for Solidity smart contracts. Find vulnerabilities before deployment.

Installation

npm install -g solaudit-cli

Commands

Full Audit

solaudit audit Contract.sol
solaudit audit ./contracts/ -r              # Recursive
solaudit audit . -s high                    # Only high+ severity
solaudit audit . --gas --best-practices     # Include all checks

Quick Check

solaudit check Token.sol
solaudit check Vault.sol -s critical

Gas Analysis

solaudit gas Contract.sol

List Patterns

solaudit patterns
solaudit patterns --category reentrancy

Vulnerability Detection

Critical

  • Reentrancy attacks
  • Unprotected selfdestruct
  • Delegatecall injection
  • Signature replay

High

  • Integer overflow/underflow
  • Access control issues
  • Unchecked return values
  • Price manipulation

Medium

  • tx.origin authentication
  • Floating pragma
  • Timestamp dependence
  • Front-running risks

Low

  • Unused variables
  • Missing events
  • Implicit visibility
  • Magic numbers

Output Formats

solaudit audit Contract.sol              # Table (default)
solaudit audit Contract.sol -o json      # JSON
solaudit audit Contract.sol -o markdown  # Markdown report

CI/CD Integration

# Fail on critical issues
solaudit audit ./contracts/ -s critical && echo "Passed"

# GitHub Actions
- run: npm install -g solaudit-cli
- run: solaudit audit ./contracts/ -r -s high

Common Use Cases

Pre-deployment check:

solaudit audit ./contracts/ -r -s high

Generate audit report:

solaudit audit . -o markdown --save AUDIT.md

Gas optimization:

solaudit gas Contract.sol

Built by LXGIC Studios

๐Ÿ”— GitHub ยท Twitter

Metadata

Stars1601
Views0
Updated2026-02-27
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build โ€” we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-lxgicstudios-solaudit": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.