用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill solc命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | solc |
| description | Auth/lab ref: Solidity compiler for generating ABI, bytecode, metadata, and standard-json outputs. |
| compatibility | Linux, Windows, macOS. |
| metadata | {"author":"AeonDave","version":"1.0"} |
Direct Solidity compilation when you want the compiler, not the framework's interpretation of it.
Use solc when you need to:
slither, mythril, or custom tooling with known compilation inputs# Emit ABI and bytecode into a build directory
solc --abi --bin Contract.sol -o build
# Enable optimization explicitly
solc --abi --bin --optimize --optimize-runs 200 Contract.sol -o build
solc --combined-json abi,bin,metadata Contract.sol > combined.json
solc --standard-json < input.json > output.json
solc when you need explicit control.No bundled scripts/, references/, or assets/.
Use the official Solidity compiler docs for standard JSON schema, optimizer controls, and remapping behavior.