بنقرة واحدة
test
Run tests for a specific module or the whole project
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run tests for a specific module or the whole project
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Yellow Network Protocol app sessions for AI agents - a shared room where several agents pool funds, reallocate off-chain at machine speed, and settle one final split. Use for multiparty settlement among agents. Covers connecting, the funded-account prerequisite, creating a session with participants + weights + quorum, deposit, operate, withdraw, close, and the trust boundary. Grounded in the official @yellow-org/sdk lifecycle example.
Build SDK packages in the correct dependency order
Run linters and formatters for the appropriate language
Thorough code review of current changes or a specific PR
Run TypeScript type checking across SDK packages
استنادا إلى تصنيف SOC المهني
| name | test |
| description | Run tests for a specific module or the whole project |
| allowed-tools | Bash, Read, Grep, Glob |
Run tests for: $ARGUMENTS
Detect the target module and run the appropriate test command:
Route to the correct test runner:
cd sdk/ts && npm testcd sdk/ts-compat && npm testgo test ./sdk/go/... -v (from repo root)cd contracts && forge testgo test ./nitronode/... -v (from repo root)cd test/integration && npm testgo test ./... (Go packages only — does NOT cover sdk/ts, sdk/ts-compat, contracts, or test/integration). Ask the user to specify a target for non-Go tests.If a specific test file is given (e.g., sdk/ts/test/unit/utils.test.ts), run only that file:
cd sdk/ts && npx jest test/unit/utils.test.tsgo test ./sdk/go/<pkg> -run '^TestName$'cd contracts && forge test --match-path test/MyTest.t.solReport results: pass count, fail count, and any error details.