← Back to Skills

kr-bank-account-validator

v1.0.0 approved Utilities updated today
USK v3 ✅ Verified ⚡ Auto-Convert
⬇ Download
Install Guide↓
🤖 Agent install commands (curl / MCP / Claude Desktop)
▸ curl one-liner
curl -L -o kr-bank-account-validator.skill   "https://aiskillstore.io/v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=ClaudeCode"
▸ MCP tool call (after registering Skill Store MCP)
{
  "tool": "download_skill",
  "arguments": {
    "skill_id": "ef43c81f-42e9-4c77-9a31-0c8971a78a61",
    "platform": "ClaudeCode"
  }
}
▸ Claude Desktop / Cursor MCP config (one-time)
{
  "mcpServers": {
    "skill-store": {
      "url": "https://aiskillstore.io/mcp/"
    }
  }
}
📖 Full agent API guide: /llms.txt  ·  MCP server card

한국 은행 계좌 형식 검증, 은행 코드 조회, 정규화, 마스킹, 가상계좌 감지. 30+ 은행 코드 지원. Zero external dependencies. Korean bank account validator with 30+ bank codes, format normalization, masking (default), virtual account detection, and batch validation.

# korean # bank-account # validation # masking # 계좌검증 # 은행코드 # 가상계좌 # seo-korea

Basic Info

Owner 👤 aiskillstore-team Category Utilities Registered 2026-05-07 Last Updated 2026-05-07 Latest Version 1.0.0 Packaged At 2026-05-07 Vetting Status approved Downloads 0 Checksum (SHA256) 8ce0e792041a8284e456e7a678a0f832cdebf5dcc690932a58a5631e65b56467

⚡ AGENT INFO USK v3

Capabilities
korean_bank_account_validation bank_code_lookup account_normalization account_masking virtual_account_detection
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=OpenClaw GET /v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=ClaudeCode GET /v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=ClaudeCodeAgentSkill GET /v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=Cursor GET /v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=GeminiCLI GET /v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=CodexCLI GET /v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=CustomAgent

Installation

Compatible Platforms any

1
Install the skill using openclaw_skill_manager.py.
python openclaw_skill_manager.py --install kr-bank-account-validator
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install kr-bank-account-validator --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download
2
Place it in the Claude Code commands directory.
unzip kr-bank-account-validator.skill -d ~/.claude/commands/kr-bank-account-validator/
3
Use it as a slash command in Claude Code.
/kr-bank-account-validator
1
Download the Agent Skills package.
curl -O https://aiskillstore.io/v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=ClaudeCodeAgentSkill
2
Unzip it into the Claude Code skills directory.
unzip kr-bank-account-validator-agent-skill-*.skill -d ~/.claude/skills/kr-bank-account-validator/
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/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip kr-bank-account-validator-cursor-*.skill -d ~/.cursor/skills/kr-bank-account-validator/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/kr-bank-account-validator/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip kr-bank-account-validator-geminicli-*.skill -d ~/.gemini/skills/kr-bank-account-validator/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/kr-bank-account-validator/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip kr-bank-account-validator-codexcli-*.skill -d ~/.codex/skills/kr-bank-account-validator/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/kr-bank-account-validator/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download
2
Place it in your agent platform's skills directory.
cp kr-bank-account-validator.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/install-guide?platform=CustomAgent

Security Vetting Report

Vetting Result APPROVED

Findings: ["메타데이터 경고: 권장 필드 없음: 'requirements' (SKILL.md v2 권장)", "메타데이터 경고: 권장 필드 없음: 'changelog' (SKILL.md v2 권장)"]

✅ No security risks found.

AI Review Stage

Reviewer gemini Risk Level 🟢 Low Review Summary 한국 은행 계좌 검증 및 마스킹 스킬로, 외부 의존성이 없고 민감한 권한을 요청하지 않아 안전합니다.
Reasoning

1. **선언된 permissions과 실제 코드 일치 여부:** 스킬 메타데이터에 `network: false`, `filesystem: false`, `subprocess: false`로 명시되어 있어 외부 통신, 파일 시스템 접근, 외부 프로세스 실행이 불가능합니다. 정적 분석 결과에서도 `red_flags_found` 및 `forbidden_exec_files_found`가 없어 선언된 권한과 실제 코드가 일치하는 것으로 판단됩니다. 2. **악의적 목적 코드 여부:** 스킬 설명에 'Zero external dependencies'가 명시되어 있으며, 정적 분석 결과 `red_flags_found` 및 `obfuscation_warnings`가 발견되지 않았습니다. 이는 악의적인 코드나 난독화된 코드가 없음을 시사합니다. 3. **선언되지 않은 외부 통신 여부:** `network: false` 권한 선언과 'Zero external dependencies' 설명으로 미루어 볼 때, 선언되지 않은 외부 통신은 없을 것으로 판단됩니다. 4. **사용자 데이터 무단 수집/전송 여부:** `network: false` 및 `filesystem: false` 권한으로 인해 사용자 데이터를 무단으로 수집하거나 외부로 전송하는 것은 불가능합니다. 또한, 민감한 계좌번호를 출력할 때 `mask: true`가 기본값이며, 원본 계좌번호(`raw_account`)는 `include_raw: true`를 명시적으로 설정해야만 반환되도록 설계되어 있어 개인정보 보호에 대한 고려가 잘 되어 있습니다. 5. **코드 품질:** 스킬의 목적(계좌 검증, 마스킹 등)이 명확하며, 상세한 입출력 스키마와 다양한 예시가 제공되어 기능적 명확성이 높습니다. 정적 분석 결과도 'approved' 상태로 코드 품질에 문제가 없음을 나타냅니다. 종합적으로, 제공된 메타데이터와 정적 분석 결과에 따르면 이 스킬은 안전하며, 사용자에게 위험을 초래할 만한 요소가 없습니다.

Version History

Version USK v3 Vetting Status Packaged At Downloads Changelog
v1.0.0 approved 2026-05-07 ⬇ 0

Examples 8

Representative input/output examples for this skill. Agents can use these to understand how to invoke the skill and what output to expect.

농협 계좌 검증
# validate# 농협# korean

농협(011) 계좌번호 형식 및 길이 검증

📥 Input
{
  "account": "301-0012-3456-71",
  "action": "validate",
  "bank_code": "011"
}
📤 Output
{
  "action": "validate",
  "bank_info": {
    "code": "011",
    "english_name": "NongHyup Bank",
    "max_length": 13,
    "min_length": 11,
    "name": "\ub18d\ud611\uc740\ud589",
    "type": "commercial"
  },
  "length_valid": true,
  "masked_account": "301-****-3456-71",
  "valid": true,
  "virtual_account": false
}
신한은행 계좌 검증
# validate# 신한# korean

신한은행(088) 계좌번호 검증 및 마스킹

📥 Input
{
  "account": "110-987-654321",
  "action": "validate",
  "bank_code": "088"
}
📤 Output
{
  "action": "validate",
  "bank_info": {
    "code": "088",
    "english_name": "Shinhan Bank",
    "max_length": 14,
    "min_length": 11,
    "name": "\uc2e0\ud55c\uc740\ud589",
    "type": "commercial"
  },
  "length_valid": true,
  "masked_account": "110-***-654321",
  "valid": true,
  "virtual_account": false
}
은행 코드 조회
# lookup# bank_code# korean

은행 코드 027로 한국씨티은행 정보 조회

📥 Input
{
  "action": "lookup_bank",
  "bank_code": "027"
}
📤 Output
{
  "action": "lookup_bank",
  "bank_info": {
    "code": "027",
    "english_name": "Citibank Korea",
    "max_length": 12,
    "min_length": 10,
    "name": "\ud55c\uad6d\uc528\ud2f0\uc740\ud589",
    "type": "commercial"
  }
}
계좌번호 정규화
# normalize# format# korean

하이픈 포함 계좌번호를 숫자만으로 정규화

📥 Input
{
  "account": "110-123-456789",
  "action": "normalize",
  "bank_code": "088"
}
📤 Output
{
  "action": "normalize",
  "bank_info": {
    "code": "088",
    "english_name": "Shinhan Bank",
    "max_length": 14,
    "min_length": 11,
    "name": "\uc2e0\ud55c\uc740\ud589",
    "type": "commercial"
  },
  "normalized": "110123456789"
}
계좌번호 마스킹
# mask# privacy# korean

가운데 자리 마스킹으로 개인정보 보호

📥 Input
{
  "account": "110-123-456789",
  "action": "mask",
  "bank_code": "088"
}
📤 Output
{
  "action": "mask",
  "bank_info": {
    "code": "088",
    "english_name": "Shinhan Bank",
    "max_length": 14,
    "min_length": 11,
    "name": "\uc2e0\ud55c\uc740\ud589",
    "type": "commercial"
  },
  "masked_account": "110-***-456789"
}
가상계좌 감지
# virtual# detection# korean

가상계좌 패턴 감지 (반복 숫자 패턴)

📥 Input
{
  "account": "1111111111111",
  "action": "validate",
  "bank_code": "020"
}
📤 Output
{
  "action": "validate",
  "bank_info": {
    "code": "020",
    "english_name": "Woori Bank",
    "max_length": 14,
    "min_length": 12,
    "name": "\uc6b0\ub9ac\uc740\ud589",
    "type": "commercial"
  },
  "length_valid": true,
  "masked_account": "111-****-11111",
  "valid": false,
  "virtual_account": true
}
일괄 계좌 검증
# batch# validation# korean

여러 은행 계좌 동시 검증

📥 Input
{
  "accounts": [
    {
      "account": "301-0012-3456-71",
      "bank_code": "011"
    },
    {
      "account": "110-987-654321",
      "bank_code": "088"
    }
  ],
  "action": "batch_validate",
  "mask": true
}
📤 Output
{
  "action": "batch_validate",
  "batch_results": [
    {
      "input_account": "301-0012-3456-71",
      "input_bank_code": "011",
      "length_valid": true,
      "masked_account": "301-****-3456-71",
      "valid": true,
      "virtual_account": false
    },
    {
      "input_account": "110-987-654321",
      "input_bank_code": "088",
      "length_valid": true,
      "masked_account": "110-***-654321",
      "valid": true,
      "virtual_account": false
    }
  ],
  "batch_summary": {
    "invalid_count": 0,
    "masked_count": 2,
    "total": 2,
    "valid_count": 2,
    "virtual_count": 0
  }
}
알 수 없는 은행 코드 오류
# error# bank_code# korean

등록되지 않은 은행 코드 입력 시 에러 반환

📥 Input
{
  "action": "lookup_bank",
  "bank_code": "999"
}
📤 Output
{
  "error": {
    "code": "UNKNOWN_BANK_CODE",
    "fix_hint": {
      "action": "correct_input",
      "field": "bank_code",
      "reference": "https://aiskillstore.io/skills/kr-bank-account-validator",
      "suggested_replacement": "011(\ub18d\ud611), 020(\uc6b0\ub9ac), 088(\uc2e0\ud55c), 004(KB\uad6d\ubbfc), 081(\ud558\ub098), 003(\uae30\uc5c5)"
    },
    "message": "\ub4f1\ub85d\ub418\uc9c0 \uc54a\uc740 \uc740\ud589 \ucf54\ub4dc\uc785\ub2c8\ub2e4: 999 / Unknown bank code: 999"
  }
}

All examples are also available via the agent API: /v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/schema

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review