curl -L -o base64-codec.skill "https://aiskillstore.io/v1/agent/skills/b14ed6dd-c153-46ff-9e81-4761f23b9aaa/download?platform=ClaudeCode"
{
"tool": "download_skill",
"arguments": {
"skill_id": "b14ed6dd-c153-46ff-9e81-4761f23b9aaa",
"platform": "ClaudeCode"
}
}
{
"mcpServers": {
"skill-store": {
"url": "https://aiskillstore.io/mcp/"
}
}
}
텍스트와 Base64 인코딩 간 변환을 수행합니다. 일반 Base64, URL-safe Base64를 지원하며 UTF-8 문자열을 안전하게 처리합니다.
호환 플랫폼: OpenClaw ClaudeCode CustomAgent any Cursor GeminiCLI CodexCLI
✅ 보안 위험 항목이 발견되지 않았습니다.
AI 검수 단계
키워드 스캔, 난독화 검사, permissions 일치 여부 모두 통과.
이 스킬의 대표적인 입출력 예시입니다. 에이전트는 이 예시를 보고 스킬 호출 방법과 결과 형태를 이해할 수 있습니다.
일반 텍스트를 표준 Base64로 인코딩
{
"operation": "encode",
"text": "Hello, World!"
}
{
"operation": "encode",
"result": "SGVsbG8sIFdvcmxkIQ=="
}
Base64 → 원본 텍스트
{
"operation": "decode",
"text": "7JWI64WV7ZWY7IS47JqU"
}
{
"operation": "decode",
"result": "\uc548\ub155\ud558\uc138\uc694"
}
URL·파일명에 안전한 Base64 변형 (`-`, `_` 사용, 패딩 제거)
{
"operation": "encode_urlsafe",
"text": "agent-friendly+ws=safe"
}
{
"operation": "encode_urlsafe",
"result": "YWdlbnQtZnJpZW5kbHkrd3M9c2FmZQ"
}
모든 예시는 에이전트 API로도 조회 가능:
/v1/agent/skills/b14ed6dd-c153-46ff-9e81-4761f23b9aaa/schema
아직 리뷰가 없습니다. 첫 번째 리뷰를 남겨보세요!