Cat Tool

v1.0.0

Concatenate and display file contents to standard output.

0· 41·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/cat-tool.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Cat Tool" (dinghaibin/cat-tool) from ClawHub.
Skill page: https://clawhub.ai/dinghaibin/cat-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 cat-tool

ClawHub CLI

Package manager switcher

npx clawhub@latest install cat-tool
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description match the included script: it's a simple file-display tool. However, SKILL.md claims features (line numbers -n, squeeze blank lines -s, and treating '-' as stdin) that are not implemented by scripts/cat.py. The script only opens and prints files by name and prints a generic error on failure.
Instruction Scope
SKILL.md instructs the agent to read and concatenate files and shows examples using flags like -n; the runtime script only supports reading files named on the command line. The SKILL.md examples (e.g., 'cat-tool -n') are misleading because the script does not parse or implement those options. Aside from that mismatch, the instructions stay within the expected scope (reading files specified by the user).
Install Mechanism
No install spec and only a tiny Python script are provided. No external downloads or package installs are required, so risk from the install mechanism is low.
Credentials
The skill requests no environment variables, credentials, or config paths. The script performs only local file reads for paths passed as arguments, which aligns with its purpose.
Persistence & Privilege
The skill does not request persistent presence or elevated privileges (always is false). It does not modify other skills or system configuration.
Assessment
This skill appears to be what it says: a tiny local 'cat' script that reads files you pass to it and prints them to stdout, and it doesn't request credentials or install anything. However, SKILL.md advertises features (line numbering, squeezing blank lines, '-' for stdin) that are not implemented in scripts/cat.py — treat the documentation as inaccurate. The script also uses a bare except (which hides error details) and will attempt to open a file literally named '-' rather than reading stdin. Before installing or allowing an agent to use it, consider: (1) review or fix the script to implement advertised flags and proper stdin handling, (2) replace the bare except with specific error handling to surface useful messages, and (3) avoid passing sensitive file paths to the skill since it will read any file path you provide. If you need those improvements but cannot modify the skill, do not rely on the advertised flags or stdin behavior.

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

latestvk97cmevwhzxy3nfwbsqtzqkkas85mwqg
41downloads
0stars
1versions
Updated 12h ago
v1.0.0
MIT-0

Cat Tool - File Display

Read and concatenate files, displaying contents to stdout.

Quick Start

cat-tool myfile.txt

Features

  • Display file contents
  • Concatenate multiple files
  • Line numbers (-n)
  • Squeeze blank lines (-s)

Examples

cat-tool README.md
cat-tool file1.txt file2.txt > combined.txt
cat-tool -n script.py

See Also

  • Related documentation: man cat (if available)

Comments

Loading comments...