โ† All skills
Tencent SkillHub ยท Developer Tools

Solidity LSP

Solidity language server providing smart contract development support including compilation, linting, security analysis, and code intelligence for .sol files. Use when working with Ethereum smart contracts, Substrate pallets, or any Solidity code that needs compilation, security checks, gas optimization, or code navigation. Essential for ClawChain pallet development.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Solidity language server providing smart contract development support including compilation, linting, security analysis, and code intelligence for .sol files. Use when working with Ethereum smart contracts, Substrate pallets, or any Solidity code that needs compilation, security checks, gas optimization, or code navigation. Essential for ClawChain pallet development.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/frameworks.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Solidity LSP

Solidity language server integration providing comprehensive smart contract development support through solc (Solidity compiler) and solhint (linter).

Capabilities

Compilation: Compile Solidity smart contracts with solc Linting: Static analysis with solhint for best practices and security Security: Detect common vulnerabilities (reentrancy, overflow, etc.) Gas optimization: Identify expensive operations Code intelligence: Syntax highlighting, error detection Supported extensions: .sol

Installation

Install Solidity compiler and linter: # Solidity compiler npm install -g solc # Solidity linter npm install -g solhint Verify installation: solcjs --version solhint --version

Compile Solidity Contract

solcjs --bin --abi contract.sol Compile with optimization: solcjs --optimize --bin --abi contract.sol

Lint Contract

Run solhint on a file: solhint contracts/MyContract.sol Run on entire project: solhint 'contracts/**/*.sol'

Security Analysis

solhint includes security rules by default. For advanced security analysis, consider: # Install slither (requires Python) pip3 install slither-analyzer # Run security analysis slither contracts/

solhint Configuration

Create .solhint.json in project root: { "extends": "solhint:recommended", "rules": { "compiler-version": ["error", "^0.8.0"], "func-visibility": ["warn", {"ignoreConstructors": true}], "max-line-length": ["warn", 120], "not-rely-on-time": "warn", "avoid-low-level-calls": "warn", "no-inline-assembly": "warn" } }

Hardhat/Foundry Integration

For full development environments, see references/frameworks.md.

Integration Pattern

When developing smart contracts: Write: Edit Solidity code Lint: Run solhint to catch issues early Compile: Use solcjs to verify compilation Analyze: Run security tools before deployment Test: Write comprehensive unit tests

Common Issues

Compiler version mismatch: Specify pragma version in contract Gas optimization: Use view/pure where possible Security: Never use tx.origin for authentication Best practices: Follow Checks-Effects-Interactions pattern

More Information

Solidity Documentation Solhint GitHub Solidity Security Best Practices See references/frameworks.md for Hardhat/Foundry setup

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • references/frameworks.md Docs