← Back to Skills

sql-query

v1.0.0 approved Development updated today
USK v3 ✅ Verified ⚡ Auto-Convert
⬇ Download
Install Guide↓

Generate SQL from natural language, translate between 8 dialects, optimize queries for performance, debug errors, explain complex queries, and output ready-to-use analysis patterns (cohort, funnel, RFM, retention).

# sql # database # query # postgresql # mysql # bigquery # snowflake # optimization # dialect # data-analysis # nlp-to-sql

Basic Info

Owner 👤 chlode_master Category Development Registered 2026-04-23 Last Updated 2026-04-23 Latest Version 1.0.0 Packaged At 2026-04-23 Vetting Status approved Downloads 0 Checksum (SHA256) c4ea1962e130807e1333c0816c547f7b6f89cb6aabd9dc1a56012f8f92f60b13

⚡ AGENT INFO USK v3

Capabilities
nl-to-sql-generation sql-dialect-translation query-optimization sql-debugging query-explanation analysis-pattern-library
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=OpenClaw GET /v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=ClaudeCode GET /v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=ClaudeCodeAgentSkill GET /v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=Cursor GET /v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=GeminiCLI GET /v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=CodexCLI GET /v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=CustomAgent

Installation

Compatible Platforms OpenClaw ClaudeCode CustomAgent any

1
Install the skill using openclaw_skill_manager.py.
python openclaw_skill_manager.py --install sql-query
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install sql-query --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download
2
Place it in the Claude Code commands directory.
unzip sql-query.skill -d ~/.claude/commands/sql-query/
3
Use it as a slash command in Claude Code.
/sql-query
1
Download the Agent Skills package.
curl -O https://aiskillstore.io/v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=ClaudeCodeAgentSkill
2
Unzip it into the Claude Code skills directory.
unzip sql-query-agent-skill-*.skill -d ~/.claude/skills/sql-query/
3
Restart Claude Code — the skill is auto-loaded at session start. No slash command needed.
1
Download the Cursor-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip sql-query-cursor-*.skill -d ~/.cursor/skills/sql-query/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/sql-query/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip sql-query-geminicli-*.skill -d ~/.gemini/skills/sql-query/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/sql-query/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip sql-query-codexcli-*.skill -d ~/.codex/skills/sql-query/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/sql-query/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/10622271-dc96-49c5-8692-629ed81c6fb9/download
2
Place it in your agent platform's skills directory.
cp sql-query.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/10622271-dc96-49c5-8692-629ed81c6fb9/install-guide?platform=CustomAgent

Requirements

Security Vetting Report

Vetting Result APPROVED

✅ No security risks found.

AI Review Stage

Reviewer gemini Risk Level 🟢 Low Review Summary SQL 쿼리 생성 및 변환 스킬로, 선언된 권한을 준수하며 악의적인 코드나 외부 통신 흔적이 없습니다.
Reasoning

스킬 메타데이터와 코드 파일을 분석한 결과, 다음과 같은 판단을 내렸습니다. 1. **선언된 권한 일치 여부**: 메타데이터에서 `network: false`, `filesystem: false`, `subprocess: false`로 선언되어 있으며, 제공된 `main.py` 코드 스니펫은 `sys`, `io`, `json`, `re`와 같은 표준 라이브러리만 사용하고 있습니다. 외부 패키지 요구사항도 없으므로, 선언된 권한과 실제 코드가 일치합니다. 정적 분석 결과에서도 금지된 실행 파일이나 레드 플래그가 발견되지 않았습니다. 2. **악의적 목적 코드 여부**: 코드 스니펫은 SQL 방언 매핑 로직에 집중되어 있으며, 데이터 탈취, 시스템 파괴, 난독화 등 악의적인 목적의 코드는 발견되지 않았습니다. 정적 분석 결과도 이를 뒷받침합니다. 3. **선언되지 않은 외부 통신 여부**: `network: false`로 명시되어 있으며, 코드에서 `requests`, `urllib`, `socket` 등 외부 통신을 수행할 수 있는 모듈이나 함수 사용 흔적이 없습니다. 따라서 선언되지 않은 외부 통신은 없는 것으로 판단됩니다. 4. **사용자 데이터 무단 수집/전송 여부**: 네트워크 접근 권한이 없으므로 사용자 데이터를 외부로 전송할 수 없습니다. 스킬의 기능은 입력된 SQL 관련 정보를 처리하여 결과를 반환하는 것이며, 데이터를 무단으로 수집하거나 저장하는 로직은 발견되지 않았습니다. 5. **코드 품질 및 목적 일치 여부**: `DIALECT_MAP`을 활용한 SQL 방언 처리 방식은 스킬의 목적인 SQL 생성, 번역, 최적화 등에 적합하며, 코드 구조도 명확합니다. `stdin_stdout` 인터페이스는 CLI 타입 스킬에 적합합니다. 종합적으로 볼 때, 이 스킬은 보안 위험이 낮으며, 선언된 기능과 권한을 충실히 따르고 있어 안전하다고 판단됩니다.

Version History

Version USK v3 Vetting Status Packaged At Downloads Changelog
v1.0.0 approved 2026-04-23 ⬇ 0 Initial release

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review