Base64 Tool

v1.0.0

Encode and decode base64 data. Support for standard and URL-safe variants.

0· 35·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for dinghaibin/dinghaibin-base64-tool.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Base64 Tool" (dinghaibin/dinghaibin-base64-tool) from ClawHub.
Skill page: https://clawhub.ai/dinghaibin/dinghaibin-base64-tool
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install dinghaibin-base64-tool

ClawHub CLI

Package manager switcher

npx clawhub@latest install dinghaibin-base64-tool
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the code and SKILL.md: the script implements encoding/decoding, URL-safe mode, file and stdin handling and wrapping. No unrelated capabilities or credentials are requested.
Instruction Scope
SKILL.md only documents CLI usage and examples. It does not instruct the agent to read unrelated files, environment variables, or to transmit data to external endpoints. All file reads/writes are explicit user-provided input/output paths.
Install Mechanism
No install spec is provided (instruction-only). A Python script is included but nothing is downloaded or installed automatically. No archive URLs or external package installs are present.
Credentials
The skill requires no environment variables or credentials and the code does not access any secrets or external service configuration.
Persistence & Privilege
always is false and the skill does not request persistent system privileges or modify other skills or system-wide settings. Autonomous invocation remains platform-default but is not combined with other risks here.
Assessment
This skill appears coherent and simple. Before installing or running, review the included script (scripts/b64.py) from the source you trust. Note that decoding can produce arbitrary binary files if you write output to disk—avoid writing decoded data from untrusted input to sensitive locations. Because there is no install step, using the script typically requires running it explicitly; it does not exfiltrate data or access secrets according to the provided files.

Like a lobster shell, security has layers — review code before you run it.

latestvk97etz2j64j8rf5pahe9vd9kd985nfz0
35downloads
0stars
1versions
Updated 11h ago
v1.0.0
MIT-0

Base64 Tool - Encoding

Encode binary data to base64 and decode base64 back to original.

Quick Start

echo 'Hello' | base64-tool --encode

Features

  • Encode to base64
  • Decode from base64
  • URL-safe variant
  • File and stdin input

Examples

echo 'Hello' | base64-tool --encode
echo 'SGVsbG8=' | base64-tool --decode

See Also

  • Related documentation: man base64 (if available)

Comments

Loading comments...