Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

solidity-code-review可靠性代码审查

Agent Skill

solidity-code-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

490

周安装

20

GitHub Stars

公开资料未说明

下载量

157
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:solidity-code-review(可靠性代码审查)
来源仓库:https://github.com/whackur/solidity-agent-toolkit
仓库路径:skills/solidity-code-review
安装命令:
npx skills add https://github.com/whackur/solidity-agent-toolkit --skill solidity-code-review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/whackur/solidity-agent-toolkit --skill solidity-code-review

简介

solidity-code-review 用于查找、检索和筛选相关信息,支持基于关键词或任务场景定位内容。

  • 适用于需要快速获取候选结果的 Codex、Claude、Cursor 等宿主环境。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,建议结合原始 README 验证具体用法。
  • 安装前应确认权限范围和维护状态,避免触发联网或文件操作等敏感行为。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Solidity Code Review Guide

When to Apply

Apply this methodology when performing a security audit, peer review, or general assessment of Solidity smart contracts. It is designed to identify vulnerabilities, ensure adherence to best practices, and verify the robustness of the contract logic.

Pre-Review Checklist

Before beginning the manual review, ensure the following items are addressed:

  • Compilation: Verify the code compiles without errors using the project's build system (Foundry, Hardhat, etc.).
  • Test Suite: Run the existing test suite. Ensure tests pass and review coverage reports to identify untested logic.
  • Dependencies: Identify all external libraries and inherited contracts. Verify versions are pinned and trusted.
  • Documentation: Review technical specifications and NatSpec comments to understand intended behavior.
  • Known Issues: Check for previous audit reports or documented "known risks" provided by the developers.
  • Scope: Define the exact list of contracts and functions that are within the audit scope.

Review Methodology

  1. Step 1: Scope & Architecture: Map out the contract inheritance, external dependencies, and system architecture.
  2. Step 2: Manual Line-by-Line Review: Perform a deep dive into critical functions, focusing on state changes and value transfers.
  3. Step 3: Automated Analysis: Run static analysis tools (Slither, Aderyn, Solhint) to catch common patterns and style violations.
  4. Step 4: Vulnerability Pattern Matching: Specifically check for known SCWE patterns (Reentrancy, Access Control, etc.).
  5. Step 5: Integration & Edge Cases: Analyze how contracts interact and test boundary conditions (e.g., zero values, max integers).

Severity Classification

SeverityCriteriaExamples
CriticalDirect loss of funds, permanent contract lock, or total compromise.Reentrancy, Unprotected withdraw, Logic error in transfer.
HighSignificant impact on system functionality or exploitable under realistic conditions.Access control bypass, Unchecked external calls, Oracle manipulation.
MediumLimited impact or requires specific, difficult-to-achieve conditions.Timestamp dependence, Front-running, Denial of Service (DoS).
LowBest practice violations, informational findings, or minor optimizations.Missing events, Floating pragma, Unused variables.

Key Inspection Areas

Access Control & Authorization

  • Verify onlyOwner or role-based access on all sensitive state-changing functions.
  • Ensure initializers are protected and can only be called once.
  • Check for tx.origin usage instead of msg.sender.

External Call Safety

  • Follow the Check-Effects-Interactions (CEI) pattern strictly.
  • Use call() instead of transfer() or send() for ETH transfers.
  • Handle return values of all external calls.

State Management & Reentrancy

  • Use ReentrancyGuard for functions making external calls.
  • Check for cross-contract reentrancy where state is shared.
  • Ensure state variables are updated before external interactions.

Arithmetic & Type Safety

  • For Solidity <0.8.0, ensure SafeMath is used.
  • Check for precision loss in divisions (multiply before dividing).
  • Verify safe casting between types (e.g., uint256 to uint8).

Token Handling (ERC20/721)

  • Use SafeERC20 for transfer and transferFrom.
  • Account for "fee-on-transfer" tokens if applicable.
  • Verify approve race condition handling.

Upgrade Mechanisms

  • Check for storage gaps in logic contracts to prevent collisions.
  • Ensure logic contracts do not use selfdestruct or delegatecall.
  • Verify the proxy admin has restricted access.

Event Emissions

  • Emit events for all significant state changes (ownership, parameters, transfers).
  • Use indexed parameters for efficient off-chain filtering.

NatSpec Documentation

  • Ensure @notice, @param, and @return are accurate.
  • Use @dev to document complex logic or security assumptions.

Style Guide Compliance

  • Code follows the official Solidity style guide conventions.
  • Naming conventions: PascalCase (contracts), camelCase (functions), UPPER_CASE (constants).
  • Function ordering: by visibility (external → public → internal → private), then by mutability (state-changing → view → pure) within each group.
  • Function modifier order: visibility, mutability, virtual, override, custom.
  • See the Solidity Style Guide Reference for the full checklist.

Reporting Format

Findings should be documented using the following template:

[SEVERITY] Finding Title

ID: SCWE-XXX *(replace with actual SCWE ID, e.g., SCWE-046 — see search_vulnerabilities)* Location: ContractName.sol:L42 Description: Detailed explanation of the vulnerability and how it can be triggered. Impact: What happens if this is exploited (e.g., "User funds can be stolen"). Remediation: Specific code changes or architectural adjustments to fix the issue.

Enhanced with MCP

When using the solidity-agent-toolkit, leverage these tools in a structured review workflow:

Step 1 — Static Analysis:

  • run_slither — Comprehensive static analysis with SCWE-mapped findings
  • run_aderyn — Fast Rust-based vulnerability scanner
  • run_solhint — Linting and style enforcement

Step 2 — Pattern Detection:

  • match_vulnerability_patterns — Regex-based detection of 32+ common vulnerability patterns

Step 3 — Vulnerability Lookup:

  • search_vulnerabilities — Search the OWASP SCWE database by keyword
  • get_remediation — Get specific fix guidance with code examples for any SCWE ID
  • check_vulnerability — Check if code matches a known SCWE pattern

Step 4 — Style & Quality:

  • check_style — Automated Solidity style guide compliance (12 rules)
  • format_code — Auto-format Solidity code
  • validate_natspec — Verify NatSpec documentation completeness

Step 5 — Full Audit:

  • Use the security_audit prompt for a structured, guided audit process
  • Use the code_review prompt for comprehensive code quality assessment

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.05%
按下载量换算53

Claude

27.81%
按下载量换算44

Cursor

20.26%
按下载量换算32

Gemini CLI

10.1%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills