1.7kโ
by lxgicstudios
Solaudit - Smart Contract Security Scanner โ OpenClaw Skill
Solaudit - Smart Contract Security Scanner is an OpenClaw Skills integration for security workflows. Solidity smart contract security auditor. Detect reentrancy, overflow, access control issues. 50+ vulnerability patterns. CI/CD ready. Free CLI tool.
Skill Snapshot
| name | Solaudit - Smart Contract Security Scanner |
| description | Solidity smart contract security auditor. Detect reentrancy, overflow, access control issues. 50+ vulnerability patterns. CI/CD ready. Free CLI tool. OpenClaw Skills integration. |
| owner | lxgicstudios |
| repository | lxgicstudios/solaudit |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @lxgicstudios/solaudit |
| last updated | Feb 7, 2026 |
Maintainer

lxgicstudios
Maintains Solaudit - Smart Contract Security Scanner in the OpenClaw Skills directory.
View GitHub profilename: Solaudit - Smart Contract Security Scanner description: Solidity smart contract security auditor. Detect reentrancy, overflow, access control issues. 50+ vulnerability patterns. CI/CD ready. Free CLI tool.
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
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install Solaudit - Smart Contract Security Scanner?
Run openclaw add @lxgicstudios/solaudit in your terminal. This installs Solaudit - Smart Contract Security Scanner into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/solaudit. Review commits and README documentation before installing.
