Skillquality 0.46

text

Use this skill when the user wants to create, generate, save, export, download, convert, format, clean, or localize plain text, TXT, Markdown/MD, or HTML file deliverables. This skill produces text-family artifacts such as .txt, .text, .md, .markdown, or .html files and exposes t

Price
free
Protocol
skill
Verified
no

What it does

AtlasClaw Workspace Output

When producing a user-facing .txt, .md, .markdown, or .html file:

  1. Write only the final content under the current work_dir, preferably exports/<descriptive-name>.<ext> unless the user requested a safe relative filename.
  2. Use UTF-8 text. For HTML, produce a complete standalone document when the user asks for an HTML file.
  3. Expose the final file through the existing workspace download flow by passing its work_dir-relative path as download_paths.
  4. Prefer writing a new output file instead of editing source files in place unless the user explicitly asks for an in-place edit.
  5. Do not expose scripts, logs, caches, hidden files, intermediate files, or source documents as downloads.

AtlasClaw Runtime Commands

Prefer skill_read, skill_write, and skill_edit for simple file operations. If a transformation needs shell features such as pipes, redirects, globs, or compound commands, run it through bash -lc '<command>' with explicitly named work_dir-relative files, or use a python3 -c command that reads and writes explicit paths. Do not read or print .env, key, token, cookie, or password files unless the user explicitly requests it and the output is redacted.

Quick Reference

TaskLoad
Text cleanup, extraction, Markdown, or HTML shapingdata.md
Translation/localization for text outputlocalization.md

Universal Text Rules

Encoding

  • Always verify encoding first: file -bi document.txt
  • Normalize line endings: tr -d '\r'
  • Remove BOM if present: write a normalized copy instead of editing the source in place.

Whitespace

  • Collapse multiple spaces: sed 's/[[:space:]]\+/ /g'
  • Trim leading/trailing: sed 's/^[[:space:]]*//;s/[[:space:]]*$//'

Common Traps

  • Smart quotes (\u201c, \u201d, \u2018, \u2019) break parsers -> normalize to ASCII quotes.
  • Em/en dashes (\u2013, \u2014) break ASCII-only output -> normalize to -.
  • Zero-width chars invisible but break comparisons → strip them
  • String length ≠ byte length in UTF-8 ("café" = 4 chars, 5 bytes)

Format Detection

# Detect encoding
file -I document.txt

# Detect line endings
cat -A document.txt | head -1
# ^M at end = Windows (CRLF)
# No ^M = Unix (LF)

# Detect likely HTML
grep -qiE '<html|<!doctype html' document.html

Quick Transformations

TaskCommand
Lowercasetr '[:upper:]' '[:lower:]'
Remove punctuationtr -d '[:punct:]'
Count wordswc -w
Count unique linessort -u | wc -l
Find duplicatessort | uniq -d
Extract emailsgrep -oE '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}'
Extract URLs`grep -oE 'https?://[^[:space:]<>"{}

Before Processing Checklist

  • Encoding verified (UTF-8?)
  • Line endings normalized
  • Target format/style defined (TXT, Markdown, or HTML)
  • Edge cases considered (empty, Unicode, special chars)

Capabilities

skillsource-cloudchefskill-texttopic-agent-skillstopic-agentic-workflowtopic-ai-integrationtopic-openclaw

Install

Installnpx skills add CloudChef/atlasclaw-providers
Transportskills-sh
Protocolskill

Quality

0.46/ 1.00

deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 10 github stars · SKILL.md body (3,043 chars)

Provenance

Indexed fromgithub
Enriched2026-05-18 19:08:23Z · deterministic:skill-github:v1 · v1
First seen2026-05-09
Last seen2026-05-18

Agent access