用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/EXboys/evotown --skill database-query命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Report Evotown dispatch job completion after the agent finishes real work.
Queue a cross-agent or cross-team handoff through the Evotown control plane.
基于 SOC 职业分类
正在显示 SKILL.md
| name | database-query |
| description | 通过 Evotown Database MCP Proxy 对已注册的业务数据库执行只读 SQL 查询。当用户需要查 CRM、订单、报表等结构化数据时使用;禁止直连数据库或写入 SQL。 |
| license | MIT |
| compatibility | Python 3.x,需网络访问 EVOTOWN_DB_MCP_URL(默认 http://localhost:9100) |
| metadata | {"author":"evotown","version":"1.0"} |
通过 Evotown Database MCP Proxy 查询企业已注册数据库。Skill 不持有连接串;权限由 Evotown ACL + Proxy 校验。
connection_idEVOTOWN_DB_MCP_URL,默认 http://localhost:9100)| action | 说明 |
|---|---|
list_connections | 列出当前员工可访问的数据库 |
list_tables | 列出某库的表 |
query | 执行只读 SELECT(Proxy 自动加 LIMIT,拒绝 INSERT/UPDATE/DELETE) |
{
"action": "list_connections",
"api_key": "evk_..."
}
{
"action": "list_tables",
"connection_id": "crm-demo",
"api_key": "evk_..."
}
{
"action": "query",
"connection_id": "crm-demo",
"sql": "SELECT id, name, amount FROM orders WHERE status = 'paid'",
"api_key": "evk_..."
}
也可设置环境变量 EVOTOWN_EMPLOYEE_API_KEY,省略 api_key 字段。
entry_point: scripts/main.py
language: python
network:
enabled: true
outbound:
- "*:9100"
- "*:8765"
input_schema:
type: object
properties:
action:
type: string
enum: [list_connections, list_tables, query]
default: query
connection_id:
type: string
description: Evotown 注册的 connection_id
sql:
type: string
description: 只读 SELECT / WITH / EXPLAIN 语句
api_key:
type: string
description: 员工 evk_ API Key(可改用环境变量 EVOTOWN_EMPLOYEE_API_KEY)
required: []