← 返回 Skills 市场
samledger67-dotcom

Develop Secure Contracts

作者 samledger67-dotcom · GitHub ↗ · v98.0.1 · MIT-0
cross-platform ✓ 安全检测通过
218
总下载
0
收藏
1
当前安装
3
版本数
在 OpenClaw 中安装
/install develop-secure-contracts
功能描述
Develop secure smart contracts using OpenZeppelin Contracts libraries. Use when users need to integrate OpenZeppelin library components — including token sta...
使用说明 (SKILL.md)

Develop Secure Smart Contracts with OpenZeppelin

Core Workflow

Understand the Request Before Responding

For conceptual questions ("How does Ownable work?"), explain without generating code. For implementation requests, proceed with the workflow below.

CRITICAL: Always Read the Project First

Before generating code or suggesting changes:

  1. Search the user's project for existing contracts (Glob for **/*.sol, **/*.cairo, **/*.rs, etc.)
  2. Read the relevant contract files to understand what already exists
  3. Default to integration, not replacement — when users say "add pausability" or "make it upgradeable", they mean modify their existing code, not generate something new. Only replace if explicitly requested ("start fresh", "replace this").

If a file cannot be read, surface the failure explicitly — report the path attempted and the reason. Ask whether the path is correct. Never silently fall back to a generic response as if the file does not exist.

Fundamental Rule: Prefer Library Components Over Custom Code

Before writing ANY logic, search the OpenZeppelin library for an existing component:

  1. Exact match exists? Import and use it directly — inherit, implement its trait, compose with it. Done.
  2. Close match exists? Import and extend it — override only functions the library marks as overridable (virtual, hooks, configurable parameters).
  3. No match exists? Only then write custom logic. Confirm by browsing the library's directory structure first.

NEVER copy or embed library source code into the user's contract. Always import from the dependency so the project receives security updates. Never hand-write what the library already provides:

  • Never write a custom paused modifier when Pausable or ERC20Pausable exists
  • Never write require(msg.sender == owner) when Ownable exists
  • Never implement ERC165 logic when the library's base contracts already handle it

Methodology

The primary workflow is pattern discovery from library source code:

  1. Inspect what the user's project already imports
  2. Read the dependency source and docs in the project's installed packages
  3. Identify what functions, modifiers, hooks, and storage the dependency requires
  4. Apply those requirements to the user's contract

See Pattern Discovery and Integration below for the full step-by-step procedure.

MCP Generators as an Optional Shortcut

If MCP generator tools are available at runtime, use them to accelerate pattern discovery: generate a baseline, generate with a feature enabled, compare the diff, and apply the changes to the user's code. This replaces the manual source-reading step but follows the same principle — discover patterns, then integrate them.

See MCP Generators (Optional) for details on checking availability and using the generate-compare-apply shortcut.

If no MCP tool exists for what's needed, use the generic pattern discovery methodology from Pattern Discovery and Integration. The absence of an MCP tool does not mean the library lacks support — it only means there is no generator.

Pattern Discovery and Integration

Procedural guide for discovering and applying OpenZeppelin contract integration patterns by reading dependency source code. Works for any ecosystem and any library version.

Prerequisite: Always follow the library-first decision tree above (prefer library components over custom code, never copy/embed source).

Step 1: Identify Dependencies and Search the Library

  1. Search the project for contract files: Glob for **/*.sol, **/*.cairo, **/*.rs, or the relevant extension from the lookup table below.
  2. Read import/use statements in existing contracts to identify which OpenZeppelin components are already in use.
  3. Locate the installed dependency in the project's dependency tree:
    • Solidity: node_modules/@openzeppelin/contracts/ (Hardhat/npm) or lib/openzeppelin-contracts/ (Foundry/forge)
    • Cairo: resolve from Scarb.toml dependencies — source cached by Scarb
    • Stylus: resolve from Cargo.toml — source in target/ or the cargo registry cache (~/.cargo/registry/src/)
    • Stellar: resolve from Cargo.toml — same cargo cache locations as Stylus
  4. Browse the dependency's directory listing to discover available components. Use Glob patterns against the installed source (e.g., node_modules/@openzeppelin/contracts/**/*.sol). Do not assume knowledge of the library's contents — always verify by listing directories.
  5. If the dependency is not installed locally, clone or browse the canonical repository (see lookup table below).

Step 2: Read the Dependency Source and Documentation

  1. Read the source file of the component relevant to the user's request.
  2. Look for documentation within the source: NatSpec comments (///, /** */) in Solidity, doc comments (///) in Rust and Cairo, and README files in the component's directory.
  3. Determine the integration strategy using the decision tree from the Critical Principle:
    • If the component satisfies the need directly → import and use as-is.
    • If customization is needed → identify extension points the library provides (virtual functions, hook functions, configurable constructor parameters). Import and extend.
    • Only if no component covers the need → write custom logic.
  4. Identify the public API: functions/methods exposed, events emitted, errors defined.
  5. Identify integration requirements — this is the critical step:
    • Functions the integrator MUST implement (abstract functions, trait methods, hooks)
    • Modifiers, decorators, or guards that must be applied to the integrator's functions
    • Constructor or initializer parameters that must be passed
    • Storage variables or state that must be declared
    • Inheritance or trait implementations required (always via import, never via copy)
  6. Search for example contracts or tests in the same repository that demonstrate correct usage. Look in test/, tests/, examples/, or mocks/ directories.

Step 3: Extract the Minimal Integration Pattern

From Step 2, construct the minimal set of changes needed:

  • Imports / use statements to add
  • Inheritance / trait implementations to add (always via import from the dependency)
  • Storage to declare
  • Constructor / initializer changes (new parameters, initialization calls)
  • New functions to add (required overrides, hooks, public API)
  • Existing functions to modify (add modifiers, call hooks, emit events)

If the contract is upgradeable, any of the above may affect storage compatibility. Consult the relevant upgrade skill before applying.

Do not include anything beyond what the dependency requires. This is the minimal diff between "contract without the feature" and "contract with the feature."

Step 4: Apply Patterns to the User's Contract

  1. Read the user's existing contract file.
  2. Apply the changes from Step 3 using the Edit tool. Do not replace the entire file — integrate into existing code.
  3. Check for conflicts: duplicate access control systems, conflicting function overrides, incompatible inheritance. Resolve before finishing.
  4. Do not ask the user to make changes themselves — apply directly.

Repository and Documentation Lookup Table

Ecosystem Repository Documentation File Extension Dependency Location
Solidity openzeppelin-contracts docs.openzeppelin.com/contracts .sol node_modules/@openzeppelin/contracts/ or lib/openzeppelin-contracts/
Cairo cairo-contracts docs.openzeppelin.com/contracts-cairo .cairo Scarb cache (resolve from Scarb.toml)
Stylus rust-contracts-stylus docs.openzeppelin.com/contracts-stylus .rs Cargo cache (~/.cargo/registry/src/)
Stellar stellar-contracts (Architecture) docs.openzeppelin.com/stellar-contracts .rs Cargo cache (~/.cargo/registry/src/)

Directory Structure Conventions

Where to find components within each repository:

Category Solidity Cairo Stylus Stellar
Tokens contracts/token/{ERC20,ERC721,ERC1155}/ packages/token/ contracts/src/token/ packages/tokens/
Access control contracts/access/ packages/access/ contracts/src/access/ packages/access/
Governance contracts/governance/ packages/governance/ packages/governance/
Proxies / Upgrades contracts/proxy/ packages/upgrades/ contracts/src/proxy/ packages/contract-utils/
Utilities / Security contracts/utils/ packages/utils/, packages/security/ contracts/src/utils/ packages/contract-utils/
Accounts contracts/account/ packages/account/ packages/accounts/

Browse these paths first when searching for a component.

Known Version-Specific Considerations

Do not assume override points from prior knowledge — always verify by reading the installed source. Functions that were virtual in an older version may no longer be in the current one, making them non-overridable. The source NatSpec will indicate the correct override point (e.g., NOTE: This function is not virtual, {X} should be overridden instead).

A known example: the Solidity ERC-20 transfer hook changed between v4 and v5. Read the installed ERC20.sol to confirm which function is virtual before recommending an override.

MCP Generators (Optional)

MCP generators are template/scaffolding tools that produce OpenZeppelin contract boilerplate. They are not required — they accelerate pattern discovery when available.

Checking Availability

Discover MCP tools dynamically at runtime. Look for tools with names matching patterns like solidity-erc20, cairo-erc721, stellar-fungible, etc. Server names follow patterns like OpenZeppelinSolidityContracts, OpenZeppelinCairoContracts, or OpenZeppelinContracts.

MCP tool schemas are self-describing. To learn what a generator supports, inspect its parameter list — each boolean parameter (e.g., pausable, mintable, upgradeable) corresponds to a feature toggle. Do not rely on prior knowledge of what parameters exist; read the schema each time, since tools are updated independently of this skill.

Generate-Compare-Apply Shortcut

When an MCP generator exists for the contract type:

  1. Generate baseline — call with only required parameters, all features disabled
  2. Generate with feature — call again with one feature enabled
  3. Compare — diff baseline vs. variant to identify exactly what changed (imports, inheritance, state, constructor, functions, modifiers)
  4. Apply — edit the user's existing contract to add the discovered changes

For interacting features (e.g., access control + upgradeability), generate a combined variant as well.

When No MCP Tool Exists or a Feature Is Not Covered

The absence of an MCP tool does NOT mean the library lacks support. It only means there is no generator for that contract type. Always fall back to the generic pattern discovery methodology in Pattern Discovery and Integration.

Similarly, when an MCP tool exists but does not expose a parameter for a specific feature, do not stop there. Fall back to pattern discovery for that feature: read the installed library source to find the relevant component, extract the integration requirements, and apply them to the user's contract.

安全使用建议
This skill is coherent with its stated goal: it will read your project files and installed dependency sources (node_modules, cargo registry cache, Foundry/forge paths) and may clone canonical repositories or use local generator tools if available. Before enabling or running it, consider: 1) Only run it on projects you are comfortable the agent can read (it will enumerate and open code files and dependency caches). 2) Don’t use it on repos containing private keys, secrets, or proprietary third-party code unless you trust the environment. 3) If you need to restrict its scope, provide a specific project path and deny access to other directories; check agent/file-access policies. 4) Ask whether the agent will transmit code or diffs externally (the SKILL.md doesn’t instruct exfiltration, but outputs will include code snippets unless you request otherwise). If you want higher assurance, request the skill author to add explicit metadata listing filesystem paths the skill will read and to document any network operations (cloning) or required helper tools; that would increase confidence in the evaluation.
功能分析
Type: OpenClaw Skill Name: develop-secure-contracts Version: 98.0.1 The skill bundle 'develop-secure-contracts' provides legitimate instructions for an AI agent to assist in integrating OpenZeppelin smart contract libraries. It outlines a structured workflow for searching local project files, reading dependency source code (e.g., in node_modules or cargo caches), and applying code edits to integrate security features like access control and token standards. No indicators of malicious intent, data exfiltration, or harmful prompt injection were found; the high-privilege file access is consistent with its stated purpose as a development tool.
能力评估
Purpose & Capability
The name/description (OpenZeppelin integration and secure contract development) matches the runtime instructions: the SKILL.md repeatedly instructs the agent to inspect project source, dependency code, and library docs and to prefer library components over custom code. Reading imports, node_modules, forge/lib paths, and cargo caches is appropriate for this purpose.
Instruction Scope
Instructions require the agent to search and read the user's project files (e.g., **/*.sol, **/*.cairo, **/*.rs) and dependency sources (node_modules/@openzeppelin/contracts/, lib/openzeppelin-contracts/, ~/.cargo/registry/src/, target/). They also instruct cloning/browsing canonical repositories and optionally invoking external MCP generator tools if available. That scope is reasonable for library-first integration, but it means the agent will access project files and certain home-directory caches and may perform network operations to clone repos — the SKILL.md does not explicitly document limits or ask for consent for those reads/operations.
Install Mechanism
This is an instruction-only skill with no install spec and no code files. That is the lowest-risk installation model and is consistent with the described behavior.
Credentials
The skill requests no environment variables or credentials (good). However, the instructions reference specific filesystem locations (project dirs, node_modules, cargo cache under the user's home) even though 'required config paths' is empty. This is a transparency gap: the skill will read user files but doesn't declare those paths in metadata.
Persistence & Privilege
always:false and no install actions are requested. The skill does not ask to persist configuration or modify other skills. Autonomous invocation is allowed (platform default) but not combined with other elevated privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install develop-secure-contracts
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /develop-secure-contracts 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v98.0.1
Corrected display name
v98.0.0
probe
v1.0.0
Initial release — OpenZeppelin Contracts integration for Solidity, Cairo, Stylus, and Stellar
元数据
Slug develop-secure-contracts
版本 98.0.1
许可证 MIT-0
累计安装 2
当前安装数 1
历史版本数 3
常见问题

Develop Secure Contracts 是什么?

Develop secure smart contracts using OpenZeppelin Contracts libraries. Use when users need to integrate OpenZeppelin library components — including token sta... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 218 次。

如何安装 Develop Secure Contracts?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install develop-secure-contracts」即可一键安装,无需额外配置。

Develop Secure Contracts 是免费的吗?

是的,Develop Secure Contracts 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Develop Secure Contracts 支持哪些平台?

Develop Secure Contracts 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Develop Secure Contracts?

由 samledger67-dotcom(@samledger67-dotcom)开发并维护,当前版本 v98.0.1。

💬 留言讨论