sentinel-audit

Audits Solidity smart contracts for security vulnerabilities and generates a findings report.

Updated Apr 3, 2026
One-click install
npx skills add https://github.com/Ayoub-ouederni/SENTINEL --skill sentinel-audit-ayoub-ouederni
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentinel-audit
Source: https://github.com/Ayoub-ouederni/SENTINEL/tree/main/.claude/skills/sentinel-audit
Command: npx skills add https://github.com/Ayoub-ouederni/SENTINEL --skill sentinel-audit-ayoub-ouederni

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Smart contract vulnerabilities like reentrancy and broken access control can lead to catastrophic fund loss, and manual security review of every Solidity file is slow and error-prone. This Skill automates the security audit of the SENTINEL protocol's contracts. ## Core Features & Use Cases - Automated Contract Scanning: Scans all .sol files in the project for common vulnerability classes. - Vulnerability Detection: Checks for reentrancy, access control flaws, signature issues, integer overflow, and front-running risks. - Focused Reporting: Produces an AUDIT_REPORT.md containing only High severity findings so teams can prioritize critical fixes. - Use Case: Before deploying the SENTINEL registry, scoring, or payment contracts to Flare, run this audit to catch critical vulnerabilities and document them in a report for the team. ## Quick Start Run the sentinel-audit skill to scan all Solidity contracts in this project and generate an audit report with high-severity findings.

Frequently Asked Questions about sentinel-audit

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit Solidity smart contracts for security vulnerabilities?

Run this audit skill to scan all .sol files in the project automatically. It checks for reentrancy, access control flaws, signature issues, overflow, and front-running, then writes findings to AUDIT_REPORT.md.

What vulnerabilities does a smart contract security audit check?

This audit checks five vulnerability classes: reentrancy attacks, broken access control, signature validation problems, integer overflow, and front-running exposure. Only High severity findings are included in the final report.

Does the audit report include low severity findings?

No, the generated AUDIT_REPORT.md contains only High severity findings. This keeps the report focused on critical issues that must be fixed before deployment.

Can I use this audit for contracts outside the SENTINEL project?

The skill scans all .sol files in the current project, so it works on any Solidity codebase. However, its instructions are tailored to the SENTINEL protocol's contract structure and audit workflow.

Is an automated audit enough before deploying smart contracts?

No, automated scanning catches common vulnerability patterns but cannot replace manual review or professional audits. Use the report as a first-pass filter, then verify findings and business logic manually.