curl -L -o kr-bank-account-validator.skill "https://aiskillstore.io/v1/agent/skills/ef43c81f-42e9-4c77-9a31-0c8971a78a61/download?platform=ClaudeCode"
{
"tool": "download_skill",
"arguments": {
"skill_id": "ef43c81f-42e9-4c77-9a31-0c8971a78a61",
"platform": "ClaudeCode"
}
}
{
"mcpServers": {
"skill-store": {
"url": "https://aiskillstore.io/mcp/"
}
}
}
한국 은행 계좌 형식 검증, 은행 코드 조회, 정규화, 마스킹, 가상계좌 감지. 30+ 은행 코드 지원. Zero external dependencies. Korean bank account validator with 30+ bank codes, format normalization, masking (default), virtual account detection, and batch validation.
Compatible Platforms any
Findings: ["메타데이터 경고: 권장 필드 없음: 'requirements' (SKILL.md v2 권장)", "메타데이터 경고: 권장 필드 없음: 'changelog' (SKILL.md v2 권장)"]
✅ No security risks found.
AI Review Stage
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' 상태로 코드 품질에 문제가 없음을 나타냅니다. 종합적으로, 제공된 메타데이터와 정적 분석 결과에 따르면 이 스킬은 안전하며, 사용자에게 위험을 초래할 만한 요소가 없습니다.
Representative input/output examples for this skill. Agents can use these to understand how to invoke the skill and what output to expect.
농협(011) 계좌번호 형식 및 길이 검증
{
"account": "301-0012-3456-71",
"action": "validate",
"bank_code": "011"
}
{
"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
}
신한은행(088) 계좌번호 검증 및 마스킹
{
"account": "110-987-654321",
"action": "validate",
"bank_code": "088"
}
{
"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
}
은행 코드 027로 한국씨티은행 정보 조회
{
"action": "lookup_bank",
"bank_code": "027"
}
{
"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"
}
}
하이픈 포함 계좌번호를 숫자만으로 정규화
{
"account": "110-123-456789",
"action": "normalize",
"bank_code": "088"
}
{
"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"
}
가운데 자리 마스킹으로 개인정보 보호
{
"account": "110-123-456789",
"action": "mask",
"bank_code": "088"
}
{
"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"
}
가상계좌 패턴 감지 (반복 숫자 패턴)
{
"account": "1111111111111",
"action": "validate",
"bank_code": "020"
}
{
"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
}
여러 은행 계좌 동시 검증
{
"accounts": [
{
"account": "301-0012-3456-71",
"bank_code": "011"
},
{
"account": "110-987-654321",
"bank_code": "088"
}
],
"action": "batch_validate",
"mask": true
}
{
"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
}
}
등록되지 않은 은행 코드 입력 시 에러 반환
{
"action": "lookup_bank",
"bank_code": "999"
}
{
"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
No reviews yet. Be the first to leave one!