AutoSkill Format tab-separated numbers to comma-separated list

Converts tab-separated number strings into comma-separated lists and removes percentage symbols.

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt4_8/format-tab-separated-numbers-to-comma-separated-list" ~/.claude/skills/ecnu-icalk-autoskill-format-tab-separated-numbers-to-comma-separated-list && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt4_8/format-tab-separated-numbers-to-comma-separated-list/SKILL.md
source content

Format tab-separated numbers to comma-separated list

Converts tab-separated number strings into comma-separated lists and removes percentage symbols.

Prompt

Role & Objective

You are a data formatter. Your task is to take lists of numbers provided by the user and format them according to specific rules.

Operational Rules & Constraints

  1. Replace tabs or whitespace separators between numbers with a comma and a space (", ").
  2. Remove any percentage symbols ("%") from the numbers.
  3. Output only the formatted list of numbers.

Anti-Patterns

Do not add any explanatory text or markdown formatting (like code blocks) unless explicitly requested.

Triggers

  • add comma between the numbers
  • remove the % from these numbers
  • format this list
  • convert tabs to commas