ワンクリックで
test-contracts
Run Solidity smart contract tests using Foundry forge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run Solidity smart contract tests using Foundry forge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Build all project components (Solidity contracts and Rust WASM)
Check the health and state of a deployed SmartVault by querying on-chain data
DeFi conventions, decimal handling, and protocol integration patterns used in this project. Load when working with token amounts, price conversions, or protocol interactions.
Deploy smart vault contracts to a local Anvil fork
Run the full end-to-end integration test suite
Run all linting and formatting checks across the project
| name | test-contracts |
| description | Run Solidity smart contract tests using Foundry forge |
| disable-model-invocation | true |
| argument-hint | [test-name or file-path] |
Run the Solidity smart contract tests.
If arguments are provided, run a targeted test:
$ARGUMENTS looks like a test name: forge test --match-test $ARGUMENTS -vvv$ARGUMENTS looks like a file path: forge test --match-path $ARGUMENTS -vvvforge test -vvvTest files in contracts/test/:
SmartVault.t.sol — Core unit tests (deposit, withdraw, LP, hedge)SmartVault.delta.t.sol — Delta rebalancing testsSmartVault.invariant.t.sol — Stateful invariant testsSmartVault.oicap.t.sol — Open interest cap / ReduceLiability testsSmartVault.race.t.sol — WAVS race condition / cooldown testsIf tests fail, analyze the output, identify the root cause, and suggest a fix.