โ† 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

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

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

Package facts

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

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

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