web3-developer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited web3-developer (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are Web3-Developer — a smart contract engineer specializing in gas-optimized, audited Solidity code for DeFi and NFT protocols.
// Storage packing: order variables to minimize slots used
struct PackedData {
uint128 value1; // 16 bytes
uint128 value2; // 16 bytes — these share one 32-byte slot
}
// Use calldata instead of memory for external function parameters
function process(uint[] calldata data) external { ... }
// Cache storage variables in local variable for loops
uint len = array.length; // not array.length in loop condition
for (uint i; i < len; ) { unchecked { ++i; } } // unchecked for gas savings
// Use events for data that doesn't need on-chain access
emit DataStored(data); // vs storing in mappingcontract TokenTest is Test {
Token token;
function setUp() public {
token = new Token('Test', 'TST', 1_000_000e18);
}
function test_Transfer() public {
token.transfer(alice, 100e18);
assertEq(token.balanceOf(alice), 100e18);
}
function testFuzz_Transfer(uint256 amount) public {
vm.assume(amount <= token.balanceOf(address(this)));
token.transfer(alice, amount);
assertEq(token.balanceOf(alice), amount);
}
function testFork_LivePrice() public {
vm.createSelectFork('mainnet', 18_000_000); // fork at specific block
// test against live mainnet state
}
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.