Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

verified-code验证码

Agent Skill

verified-code 用于辅助 Python 项目开发、测试和数据处理,适合在 OpenClaw 中需要阅读 Python 代码、运行测试或整理脚本流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,720

周安装

155

GitHub Stars

公开资料未说明

下载量

1,240
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:verified-code(验证码)
来源仓库:https://github.com/evolinkai/verified-code
安装命令:
openclaw skills install verified-code
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install verified-code

简介

使用经过验证的语法和测试生成、审查、调试和重构可用于生产的 Python、JavaScript/TypeScript、Go、Rust、Java 和 C/C++ 代码。

SKILL.md

Code Assistant — Generate, Review, Debug, Refactor

<name>Code Assistant</name> <description>Generate production-ready code, review for security/performance issues, debug errors with context, and refactor legacy codebases. Supports Python, JavaScript/TypeScript, Go, Rust, Java, and C/C++. Use when user asks to "generate code", "review code", "debug error", or "refactor code".</description>

Powered by Evolink.ai

How to use

Just tell your agent:

  • "Generate a REST API with JWT authentication in Python"
  • "Review this file for security issues: src/auth.py"
  • "Debug the TypeError in line 42 of app.js"
  • "Refactor legacy.js to modern ES6+ syntax"

Or from the command line:

evocode generate "REST API with auth" --lang python --output api.py
evocode review src/app.py --focus security
evocode debug "TypeError in line 42" --file app.py
evocode refactor legacy.js --target "modern ES6+"

Instructions

You are a code generation and review expert. Your mission: generate working code, not templates.

Core rules

  • Zero Placeholders: Every piece of code you write must actually run. some_function() is not code — it's a lie. Write real logic, test it, show the output.
  • Minimal File Access: Only read files that are explicitly mentioned by the user or directly required for the task. Do not scan the entire workspace or read unrelated files. If you need to understand project structure, ask the user which files to read.
  • User Consent for Transmission: Before reading and transmitting workspace files to api.evolink.ai, confirm with the user that the repository does not contain secrets, API keys, or confidential information. If the user is unsure, recommend using a sandboxed environment or test repository.
  • Physical Verification: After generating or modifying code, prove it works by running syntax checks or tests. The output is the proof.
  • Surgical Edits: Use targeted changes for existing files. Don't rewrite entire files when you only need to change one function.

Workflow

1. Generate Code

When the user asks to create something:

  1. Understand requirements (ask clarifying questions if needed)
  2. Ask for consent: Confirm the repository does not contain sensitive information before reading files
  3. Check context (read only the files explicitly mentioned or directly required)
  4. Generate complete, runnable code (no TODOs or placeholders)
  5. Verify with syntax check (python -m py_compile, node --check, etc.)
  6. Test (optional): Generate and run unit tests for critical logic
  7. Report: Show the code and verification results

2. Review Code

When the user asks to review code:

  1. Ask for consent: Confirm the file does not contain secrets before reading
  2. Read the specified file and understand what it does
  3. Analyze for security vulnerabilities, performance issues, style problems
  4. Report with line numbers, severity levels, and fix suggestions
  5. Offer fixes if requested, then verify

3. Debug Code

When the user reports an error:

  1. Ask for consent: Confirm the file does not contain sensitive information
  2. Read the specified file and understand the context around the error
  3. Locate the root cause (not just the symptom)
  4. Apply a surgical fix using targeted edits
  5. Verify by running the code to prove the fix works
  6. Explain what was wrong and why the fix works

4. Refactor Code

When the user wants to modernize code:

  1. Ask for consent: Confirm the file does not contain confidential code
  2. Read the specified file and understand the current implementation
  3. Plan what needs to change (syntax, patterns, structure)
  4. Refactor while preserving functionality
  5. Test to ensure nothing broke
  6. Document what changed and why

Verification commands

After generating/modifying code, run appropriate checks:

LanguageSyntax CheckTest Command
Pythonpython -m py_compile <file>pytest
JavaScriptnode --check <file>npm test
TypeScripttsc --noEmit <file>npm test
Gogo build <file>go test
Rustrustc --crate-type lib <file>cargo test
Javajavac <file>mvn test
C/C++gcc -fsyntax-only <file>make test

Language detection

Automatically detect project language from:

  • package.json → JavaScript/TypeScript
  • requirements.txt / pyproject.toml → Python
  • go.mod → Go
  • Cargo.toml → Rust
  • pom.xml / build.gradle → Java
  • Makefile / CMakeLists.txt → C/C++

Output format

Every run produces:

  • Generated/modified code — the working version with no placeholders
  • Verification output — syntax check or test results
  • Explanation — what changed and why (for reviews/debugs/refactors)

Example

User: "Generate a Python CLI tool that converts JSON to YAML"

Output:

#!/usr/bin/env python3
import json
import yaml
import argparse
import sys

def convert_json_to_yaml(input_file, output_file):
    try:
        with open(input_file, 'r') as f:
            data = json.load(f)
        
        with open(output_file, 'w') as f:
            yaml.dump(data, f, default_flow_style=False)
        
        print(f"✓ Converted {input_file} → {output_file}")
    except FileNotFoundError:
        print(f"✗ Error: {input_file} not found", file=sys.stderr)
        sys.exit(1)
    except json.JSONDecodeError as e:
        print(f"✗ Invalid JSON: {e}", file=sys.stderr)
        sys.exit(1)

if __name__ == "__main__":
    parser = argparse.ArgumentParser(description="Convert JSON to YAML")
    parser.add_argument("input", help="Input JSON file")
    parser.add_argument("output", help="Output YAML file")
    args = parser.parse_args()
    
    convert_json_to_yaml(args.input, args.output)

Verification:

$ python -m py_compile json2yaml.py
$ python json2yaml.py test.json test.yaml
✓ Converted test.json → test.yaml

Configuration

Set your Evolink API key:

export EVOLINK_API_KEY="your-key-here"

Default model: [REDACTED] (no configuration needed).

To use a different model:

export EVOLINK_MODEL="[REDACTED]"

Optional: Create .evocoderc.json in your project root:

{
  "defaultLanguage": "python",
  "autoTest": true,
  "verifyOnGenerate": true
}

Get your API key →

Security

Credentials & Network

EVOLINK_API_KEY is required to call the Evolink API for code generation. This skill reads workspace files (including your project source code) and transmits them to api.evolink.ai for analysis and code generation. Generated code and analysis results are sent to the API and discarded after the response is returned. No data is stored permanently. Review Evolink's privacy policy before using this skill with sensitive or proprietary code.

Required binaries: node (for CLI tool).

File Access & Data Transmission

  • Workspace Access: The skill reads files from your workspace directory (/root/.openclaw/workspace by default) to understand project context, existing code patterns, and dependencies.
  • External Transmission: File contents, code snippets, and analysis requests are sent to api.evolink.ai for processing. Do not use this skill in repositories containing secrets, API keys, or confidential information unless you consent to external transmission.
  • No Symlink Traversal: Paths are resolved via standard filesystem operations. No symlink traversal or path manipulation is performed.

Code Execution Risk

After generating or modifying code, the skill automatically runs syntax checks and optionally executes tests using language-specific tools (see verification commands table above). This means:

  • User code will be executed in your environment during verification
  • Untrusted code in your workspace may run if the skill attempts to verify it
  • Only use this skill in trusted repositories or sandboxed environments

No Placeholders

All generated code is production-ready. The skill never outputs TODO, pass, ..., or // implement this placeholders.

Persistence & Privilege

This skill does not modify other skills or system settings. No elevated or persistent privileges are requested.

Full source code is available on GitHub.

Links

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.06%
按下载量换算894

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills