← Back to Skills

korean-address-parser

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

Parse and structure Korean addresses into components (province, city, district, street, building). Supports both road-name and lot-number formats, validates format, and normalizes variations. No external packages required.

# korean-address # parser # address # korea # localization # geo

Basic Info

Owner 👤 chlode_master Category Knowledge Registered 2026-04-15 Last Updated 2026-04-15 Latest Version 1.0.0 Packaged At 2026-04-15 Vetting Status approved Downloads 0 Checksum (SHA256) 2f89db8a93d7811cedb337d94a71b33701ee54653586b4abe1cf5382d6b3d943

⚡ AGENT INFO USK v3

Capabilities
korean_address_parsing address_validation address_normalization
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=OpenClaw GET /v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=ClaudeCode GET /v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=ClaudeCodeAgentSkill GET /v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=Cursor GET /v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=GeminiCLI GET /v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=CodexCLI GET /v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/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 korean-address-parser
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install korean-address-parser --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download
2
Place it in the Claude Code commands directory.
unzip korean-address-parser.skill -d ~/.claude/commands/korean-address-parser/
3
Use it as a slash command in Claude Code.
/korean-address-parser
1
Download the Agent Skills package.
curl -O https://aiskillstore.io/v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=ClaudeCodeAgentSkill
2
Unzip it into the Claude Code skills directory.
unzip korean-address-parser-agent-skill-*.skill -d ~/.claude/skills/korean-address-parser/
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/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip korean-address-parser-cursor-*.skill -d ~/.cursor/skills/korean-address-parser/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/korean-address-parser/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip korean-address-parser-geminicli-*.skill -d ~/.gemini/skills/korean-address-parser/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/korean-address-parser/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip korean-address-parser-codexcli-*.skill -d ~/.codex/skills/korean-address-parser/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/korean-address-parser/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/download
2
Place it in your agent platform's skills directory.
cp korean-address-parser.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/5fe6a564-14a9-4673-be56-3167e7a7682d/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 한국 주소 파싱, 유효성 검사, 정규화를 수행하는 스킬로, 선언된 권한을 준수하며 악의적인 동작이 발견되지 않았습니다.
Reasoning

1. **선언된 permissions과 실제 코드 일치 여부:** 스킬 메타데이터에 'network: false', 'filesystem: false', 'subprocess: false'로 선언되어 있으며, 제공된 'main.py' 코드에서는 해당 권한을 사용하는 어떠한 코드(예: `requests`, `open()`, `subprocess.run()`)도 발견되지 않았습니다. `sys`, `json`, `re`와 같은 표준 라이브러리만 사용하며, 이는 선언된 권한과 일치합니다. 2. **악의적 목적의 코드 여부:** 코드 분석 결과, 데이터 탈취, 시스템 파괴, 난독화 등 악의적인 목적으로 사용될 수 있는 코드는 발견되지 않았습니다. 코드는 한국 주소 파싱 및 처리에 집중되어 있습니다. 3. **선언되지 않은 외부 통신 여부:** 코드 내에서 외부 네트워크 통신을 시도하는 부분이 전혀 없습니다. 4. **사용자 데이터 무단 수집/전송 여부:** 스킬은 표준 입력(stdin)으로 데이터를 받아 처리하고 표준 출력(stdout)으로 결과를 반환하는 'stdin_stdout' 패턴을 따릅니다. 사용자 데이터를 무단으로 수집하거나 외부로 전송하는 기능은 없습니다. 5. **코드 품질 및 목적 일치 여부:** 코드는 한국 주소 처리 로직을 명확하게 구현하고 있으며, 메타데이터의 설명('No external packages required')과 같이 외부 패키지 의존성이 없습니다. 코드 품질은 스킬의 목적과 일치하며 가독성이 높습니다. 정적 분석 결과 또한 'approved' 상태이며, 'red_flags_found', 'obfuscation_warnings', 'forbidden_exec_files_found' 항목에서 어떠한 문제도 발견되지 않았습니다. 전반적으로 안전하고 신뢰할 수 있는 스킬로 판단됩니다.

Version History

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

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review