← Back to Skills Marketplace
dinghaibin

Cut Tool

by BIN · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
51
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install cut-tool
Description
Extract specific fields or columns from text files using delimiter-based parsing. Use when you need to select columns from CSV, TSV, or delimited data.
README (SKILL.md)

Cut Tool - Field Extraction

Extract columns and fields from delimited text files by specifying delimiter and field position. Ideal for processing log files, CSV data, and structured text.

Quick Start

cut-tool -d ',' -f 1,3 data.csv

Features

  • Extract fields by position (-f 1,3,5)
  • Custom delimiter (-d for comma, tab, space)
  • Complement selection (everything except specified fields)
  • Output range of characters (-c 1-10)

Examples

# Extract first and third columns from CSV
cut-tool -d ',' -f 1,3 data.csv

# Extract characters 1-10 from each line
cut-tool -c 1-10 file.txt

# Use tab as delimiter
cut-tool -f 2-4 file.tsv
Usage Guidance
This package is inconsistent: the documentation promises a cut-like CLI with flags, but the included script only prints the first five characters of each stdin line and does not implement any flags or an install. Do not rely on this skill for field/column extraction. If you need a cut utility, use the system 'cut' (coreutils) or ask the author to: (1) add argument parsing and implement the documented features, (2) provide an install wrapper so 'cut-tool' is available on PATH, and (3) document exactly what input/output behavior to expect. From a security perspective there are no obvious secrets or network operations, but the mismatch suggests sloppy or incomplete packaging — treat it as untrusted until fixed.
Capability Analysis
Type: OpenClaw Skill Name: cut-tool Version: 1.0.0 The tool exhibits a significant discrepancy between its documentation and implementation. While SKILL.md describes a versatile field extraction tool supporting delimiters and character ranges, the actual implementation in scripts/cut.py is a hardcoded script that merely prints the first five characters of every line, ignoring all command-line arguments. While no explicitly malicious logic like data exfiltration or remote code execution was found, the misrepresentation of functionality is a red flag.
Capability Assessment
Purpose & Capability
The skill claims delimiter-based field extraction, -f/-d/-c flags, complement selection, and a 'cut-tool' CLI, but the sole script ignores arguments and simply prints the first five characters of each input line. There is no wrapper or installation that would provide the CLI named in documentation.
Instruction Scope
SKILL.md instructs running 'cut-tool' with various flags and operating on files, but the runtime artifact reads only stdin and implements only line[:5]. The instructions therefore overreach the actual behavior and could mislead users about what data will be processed or how.
Install Mechanism
There is no install spec (instruction-only plus a script file). This reduces attack surface, but also means the documented 'cut-tool' command is not provided; the script sits in scripts/cut.py and would need to be installed or invoked directly to run.
Credentials
The skill requests no environment variables, no credentials, and references no config paths — its resource requests are minimal and proportionate to a simple text-processing tool.
Persistence & Privilege
The skill does not request persistent or elevated privileges (always:false) and does not modify other skills or system-wide configuration.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install cut-tool
  3. After installation, invoke the skill by name or use /cut-tool
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug cut-tool
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Cut Tool?

Extract specific fields or columns from text files using delimiter-based parsing. Use when you need to select columns from CSV, TSV, or delimited data. It is an AI Agent Skill for Claude Code / OpenClaw, with 51 downloads so far.

How do I install Cut Tool?

Run "/install cut-tool" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Cut Tool free?

Yes, Cut Tool is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Cut Tool support?

Cut Tool is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Cut Tool?

It is built and maintained by BIN (@dinghaibin); the current version is v1.0.0.

💬 Comments