一键导入
file-reading
Efficiently read and analyze project files. Use when exploring codebases, understanding file structure, or extracting information from source files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Efficiently read and analyze project files. Use when exploring codebases, understanding file structure, or extracting information from source files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Read and summarize recent git commits in this repository. Use when asked what has been done recently, what changed this week, what experiments were run, or to produce a progress summary. Triggers on "what changed", "recent commits", "what was done", "progress summary", "summarize commits", "this week's work", or "what's new".
Comprehensive guide to writing Compact smart contracts for Midnight Network. Use this skill when writing, reviewing, debugging, or learning Compact code. Triggers on "write a contract", "Compact syntax", "Midnight smart contract", "ledger state", "circuit function", or "ZK proof".
Deploy and manage Midnight smart contracts to local or preview network. Use this skill when deploying contracts, starting local infrastructure, or connecting to testnet. Triggers on "deploy contract", "start local node", "setup standalone", "deploy to preview", or "midnight infrastructure".
Hard-won lessons from Midnight SDK and node experiments in this repository. Consult when hitting SDK errors, deployment failures, Compact compiler issues, wallet quirks, or node sync failures. Triggers on Midnight SDK errors, "tryApply", "signTransactionIntents", "levelPrivateStateProvider", "version mismatch", "compact-js", "disclose", "ecMulGenerator", "DUST balance", "UTXO", "ZswapChainState", "sidechain-mc-hash", "stability window", or "genesis block".
Starting point for writing any new Midnight script, tool, or application. Use when asked to create, scaffold, or write code that uses the Midnight SDK, wallet, contracts, or node. Triggers on "write a Midnight script", "create a Midnight app", "new Midnight tool", "build a Midnight", "scaffold Midnight", or "Midnight CLI".
TypeScript SDK integration guide for Midnight dApps. Use this skill when building frontends, connecting wallets, or calling contracts from TypeScript. Triggers on "SDK", "TypeScript", "wallet integration", "connect dApp", "call contract".
| name | file-reading |
| description | Efficiently read and analyze project files. Use when exploring codebases, understanding file structure, or extracting information from source files. |
| allowed-tools | Read Glob Grep |
offset/limit for large files| Task | Approach |
|---|---|
| Find markdown docs | Glob(**/*.md) then Read |
| Search code | Grep(pattern) then Read matching files |
| Find configs | Glob(**/*.json, **/*.yaml) |
| Explore structure | Glob(src/**/*) |
Always prefer dedicated tools (Read, Glob, Grep) over shell commands (cat, find, grep).