Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

foundryfoundry 文档

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

7

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sablier-labs/plugin-marketplace --skill foundry

简介

foundry 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装方式:通过 npx skills add 命令从 GitHub 仓库添加。
  • 使用前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • foundry 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Foundry Testing & Script Skill

Rules and patterns for Foundry tests. Find examples in the actual codebase.

Bundled References

ReferenceContentWhen to Read
./references/test-infrastructure.mdConstants, defaults, mocksWhen setting up tests
./references/cheat-codes.mdCommon cheatcode patternsWhen using vm cheatcodes
./references/invariant-patterns.mdHandlers, stores, invariantsWhen writing invariant tests
./references/formal-verification.mdHalmos, Certora, symbolic execWhen proving correctness
./references/deployment-scripts.mdScript patterns, verificationWhen writing deploy scripts
./references/deployment-checklist.mdPre-mainnet deployment stepsBefore deploying to production
./references/gas-benchmarking.mdSnapshot, profiling, CIWhen measuring gas performance
./references/sablier-conventions.mdSablier-specific patternsWhen working in Sablier repos

Test Types

TypeDirectoryNamingPurpose
Integrationtests/integration/concrete/*.t.solBTT-based concrete tests
Fuzztests/integration/fuzz/*.t.solProperty-based testing
Forktests/fork/*.t.solMainnet state testing
Invarianttests/invariant/Invariant*.t.solStateful protocol properties
Scriptsscripts/solidity/*.s.solDeployment/initialization

1. Integration Tests (Concrete)

Naming Convention

PatternUsage
test_RevertWhen_{Condition}Revert on input
test_RevertGiven_{State}Revert on state
test_When_{Condition}Success path

Rules

  1. Stack modifiers to document BTT path (modifiers are often empty - just document the path)
  2. Expect events BEFORE action - vm.expectEmit() then call function
  3. Assert state AFTER action - Check state changes after function executes
  4. Use revert helpers for common patterns (expectRevert_DelegateCall, expectRevert_Null)
  5. Named parameters in assertions - assertEq(actual, expected, "description")

Mock Rules

  1. Place all mocks in tests/mocks/
  2. One mock per scenario (not one mega-mock)
  3. Naming: *Good, *Reverting, *InvalidSelector, *Reentrant

2. Fuzz Tests

Naming Convention

testFuzz_{FunctionName}_{Scenario}

Rules

  1. Bound before assume - _bound() is more efficient than vm.assume()
  2. Bound in dependency order - Independent params first, then dependent
  3. Never hardcode params with validation constraints
  4. Document fuzzed scenarios in NatSpec

Bounding Pattern

// 1. Bound independent params first
cliffDuration = boundUint40(cliffDuration, 0, MAX - 1);

// 2. Bound dependent params based on constraints
totalDuration = boundUint40(totalDuration, cliffDuration + 1, MAX);

3. Fork Tests

Rules

  1. Create fork with vm.createSelectFork("ethereum")
  2. Use deal() to give tokens to test users
  3. Use assumeNoBlacklisted() for USDC/USDT
  4. Use forceApprove() for non-standard tokens (USDT)

Token Quirks

TokenIssueSolution
USDC/USDTBlacklistassumeNoBlacklisted()
USDTNon-standardforceApprove()
Fee-on-transferBalance diffCheck actual received amount

4. Invariant Tests

Architecture

tests/invariant/
├── handlers/     # State manipulation (call functions with bounded params)
├── stores/       # State tracking (record totals, IDs)
└── Invariant.t.sol

Rules

  1. Target handlers only - targetContract(address(handler))
  2. Exclude protocol contracts - excludeSender(address(vault))
  3. Use stores to track totals for invariant assertions
  4. Early return in handlers if preconditions not met

5. Solidity Scripts

Rules

  1. Inherit from BaseScript with broadcast modifier
  2. Use env vars: ETH_FROM, MNEMONIC
  3. Simulation first, then broadcast

Commands

# Simulation
forge script scripts/Deploy.s.sol --sig "run(...)" ARGS --rpc-url $RPC

# Broadcast
forge script scripts/Deploy.s.sol --sig "run(...)" ARGS --rpc-url $RPC --broadcast --verify

Running Tests

# By type
forge test --match-path "tests/integration/concrete/**"
forge test --match-path "tests/fork/**"
forge test --match-contract Invariant_Test

# Specific test
forge test --match-test test_WhenCallerRecipient -vvvv

# Fuzz with more runs
forge test --match-test testFuzz_ --fuzz-runs 1000

# Coverage
forge coverage --report lcov

Debugging

Verbosity Levels

FlagShows
-vLogs for failing tests
-vvLogs for all tests
-vvvStack traces for failures
-vvvvStack traces + setup traces
-vvvvvFull execution traces

Console Logging

import { console2 } from "forge-std/console2.sol";

console2.log("value:", someValue);
console2.log("address:", someAddress);
console2.logBytes32(someBytes32);

Debugging Commands

# Trace specific failing test
forge test --match-test test_MyTest -vvvv

# Gas report for a test
forge test --match-test test_MyTest --gas-report

# Debug in interactive debugger
forge debug --debug tests/MyTest.t.sol --sig "test_MyTest()"

# Inspect storage layout
forge inspect MyContract storage-layout

Debugging Tips

  1. Label addresses - vm.label(addr, "Recipient") for readable traces
  2. Check state with logs - Add console2.log before reverts
  3. Isolate failures - Run single test with --match-test
  4. Compare gas - Use --gas-report to spot unexpected costs
  5. Snapshot comparisons - Use vm.snapshot() / vm.revertTo() to isolate state changes

Best Practices Summary

  1. Use constants from Defaults/Constants - never hardcode
  2. Specialized mocks - one per scenario, all in tests/mocks/
  3. Modifiers in Modifiers.sol - centralize BTT path modifiers
  4. Label addresses with vm.label() for traces
  5. Events before actions - vm.expectEmit() then call
  6. Bound before assume - more efficient

External References


Example Invocations

Test this skill with these prompts:

  1. Integration test: "Write a concrete test for withdraw that expects Errors.Flow_Overdraw when amount exceeds balance"
  2. Fuzz test: "Create a fuzz test for deposit that bounds amount between 1 and type(uint128).max"
  3. Fork test: "Write a fork test for USDC deposits on mainnet with blacklist handling"
  4. Invariant test: "Create an invariant handler for the deposit and withdraw functions"
  5. Deploy script: "Write a deployment script for SablierFlow with verification"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.19%
按下载量换算39

Claude

31.34%
按下载量换算32

Cursor

16.84%
按下载量换算17

Gemini CLI

8.65%
按下载量换算9

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills