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 문자열을 안전하게 처리합니다.
Compatible Platforms OpenClaw ClaudeCode CustomAgent any Cursor GeminiCLI CodexCLI
✅ No security risks found.
AI Review Stage
키워드 스캔, 난독화 검사, permissions 일치 여부 모두 통과.
Representative input/output examples for this skill. Agents can use these to understand how to invoke the skill and what output to expect.
일반 텍스트를 표준 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"
}
All examples are also available via the agent API:
/v1/agent/skills/b14ed6dd-c153-46ff-9e81-4761f23b9aaa/schema
No reviews yet. Be the first to leave one!