Test 2

Formats text according to specified style guidelines. A clean example skill with no security issues.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 229 · 0 current installs · 0 all-time installs
byTjaden Hess@tjade273
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (text formatter) align with the provided files and runtime instructions. The SKILL.md tells the agent to use scripts/formatter.py and the repository contains a utils.py with text-formatting functions; nothing requested is unrelated to formatting.
Instruction Scope
SKILL.md stays on-topic: it lists simple formatting rules and instructs using the included scripts. The instructions do not ask the agent to read arbitrary files, environment variables, or send data to external endpoints.
Install Mechanism
No install spec is provided (instruction-only skill). No downloads or package installations are required, which minimizes risk. The skill includes local Python scripts only.
Credentials
No environment variables, credentials, or config paths are required. The code does not access environment variables, network, or external services.
Persistence & Privilege
always is false and the skill does not request or modify persistent agent/system settings. It does not require permanent presence or elevated privileges.
Assessment
This skill appears coherent and low-risk: it only formats text and includes local Python code that performs simple string operations. Before running, you may want to (1) glance through the two Python files yourself to confirm you’re comfortable executing them, (2) run the formatter on non-sensitive sample text first to verify behavior and edge cases (e.g., abbreviations, newline handling), and (3) be aware that the formatter uses a naive sentence-splitting approach that may not handle all punctuation correctly. No credentials or network access are requested.

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

Current versionv1.0.0
Download zip
latestvk970a3074sejgvahdkzwdptrp581zvfv

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

Simple Text Formatter

This skill formats text according to style guidelines.

Features

  • Capitalize sentences
  • Fix spacing
  • Apply punctuation rules

Usage

When the user provides text to format, apply the following rules:

  1. Capitalize first letter of sentences
  2. Ensure single space after periods
  3. Remove trailing whitespace

In most cases, you should use the python tool in scripts/formatter.py rather than attempting the conversion yourself.

Example

Input: "hello world.this is a test." Output: "Hello world. This is a test."

Files

3 total
Select a file
Select a file to preview.

Comments

Loading comments…