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

easycode-skill简易代码技巧

Agent Skill

easycode-skill 用于处理数据库查询、表结构、迁移和数据维护任务,适合在 OpenClaw 中需要分析 schema、编写 SQL 或排查数据问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,855

周安装

419

GitHub Stars

公开资料未说明

下载量

3,453
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install easycode-skill

简介

easycode-skill 用于处理数据库查询、表结构、迁移和数据维护任务。

  • 适合在 OpenClaw 中分析 schema、编写 SQL 或排查数据问题时使用。
  • 通过解析数据库配置和生成 Java 代码来辅助开发流程。
  • 安装命令为 openclaw skills install easycode-skill,需确认权限和维护状态。
  • 涉及文件读写或命令执行时建议提前评估风险边界。

SKILL.md

name
easycode-skill
description
Use when users ask to generate Java code from database tables with EasyCode-style templates, including parsing db config, remembering last-used generation settings, resolving output paths from base package, and producing a file generation plan/execution.

EasyCode Skill

Purpose

This skill turns natural-language requests into deterministic EasyCode-style generation inputs and execution steps.

Use this skill when users ask for:

  • Generating Java code from one or more DB tables
  • MyBatisPlus or custom template-group generation
  • Reusing previous DB/package/author/template settings
  • Auto-mapping base_package to project output paths

Inputs and Contract

  1. Normalize the request to generate_java_code schema in references/function-schema.json.
  2. Require explicit table names.
  3. Fill missing fields from local state when available.
  4. If critical DB fields are still missing, ask only for missing items.
  5. When available, pass generation_config.table_columns for full field-level rendering parity.
  6. If table_columns is absent, script attempts JDBC metadata fetch from db_connection.

Workflow

  1. Parse user intent.
  2. Load recent state from .easycode-skill/state.json by running:

- python3 scripts/easycode_skill.py state --show

  1. Merge request + state + defaults:

- default template_group is Custom-V3. - default output root is src/main/java.

  1. Validate template group against references/template-groups.md.
  2. Preview output plan:

- python3 scripts/easycode_skill.py plan --spec '<json>'

  1. Execute generation:

- python3 scripts/easycode_skill.py execute --spec '<json>' - add --overwrite only when user confirms replacement - add --run-project-format to run formatter after generation

  1. Persist successful config:

- python3 scripts/easycode_skill.py state --save --spec '<json>'

  1. Helper commands:

- python3 scripts/easycode_skill.py check-driver --db-type mysql - python3 scripts/easycode_skill.py spec-template --db-type mysql --tables user,order - python3 scripts/easycode_skill.py interactive (首次 1~9 步引导,后续仅输入表名)

Generation Rules

  • Path mapping:

- Convert base_package (for example com.app.admin) to src/main/java/com/app/admin. - Append template-level relative package (for example entity, mapper, service, controller).

  • Template groups:

- MyBatisPlus -> configs/EasyCodeConfig-mybatispuls.json (fallback project root file) - Custom-V2 -> configs/EasyCodeConfig-V2.json (fallback project root file) - Custom-V3 -> configs/EasyCodeConfig-V3.json (fallback project root file)

  • JDBC drivers:

- Preferred lookup is drivers/drivers-paths.json. - Skill-local jars under drivers/<db>/ are supported. - If still missing, pass db_connection.driver_jar.

  • Safety:

- Always show a pre-write file list. - If file exists, mark as overwrite_candidate and ask for confirmation before replacing.

Current Renderer Status

  • The script uses a Java Velocity bridge to render template code with EasyCode global macros (init/define/autoImport/mybatisSupport).
  • execute writes rendered output (not scaffold), and plan can include rendered content with --include-content.
  • If table_columns is missing, script auto-fetches metadata through JDBC.
  • When no JDBC driver is found locally, pass db_connection.driver_jar (and optional db_connection.driver_class) or provide table_columns.
  • Default JDBC type preferences:

- Number -> Long - Time/Date/Timestamp -> Date - Override via generation_config.type_mapping when needed. - Optional interactive prompt: add --interactive-type-mapping to plan/execute when type_mapping is not specified.

  • Optional project formatter:

- set generation_config.project_format_command to custom command(s), or - use --run-project-format and let script auto-detect gradlew/mvnw format tasks.

Memory Policy

Persist these keys after successful run:

  • db_type, url, user
  • author, base_package, template_group
  • optional project_root, output_root
  • interactive mode also persists pass, driver_jar, driver_class, type_mapping, project_format_command for next-run defaults.

Do not store plaintext password in state. If password must be cached, store encrypted value from host secret manager.

Execution Guidance

  • Prefer deterministic script calls for plan/state actions.
  • For actual rendering, use the project’s EasyCode engine implementation when available.
  • If engine invocation is unavailable, still provide a complete plan and clearly report blocked execution step.

Response Style

When reporting execution:

  • Show resolved template group
  • Show resolved base output directory
  • Show generated/updated file count
  • Show blocked items (if any) and exact next action

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.05%
按下载量换算3,317

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills