AutoSkill Sort number rows in ascending order
Sorts multiple rows of numbers individually from lowest to highest, ensuring rows are not mixed.
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_gpt3.5_8/sort-number-rows-in-ascending-order" ~/.claude/skills/ecnu-icalk-autoskill-sort-number-rows-in-ascending-order && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt3.5_8/sort-number-rows-in-ascending-order/SKILL.mdsource content
Sort number rows in ascending order
Sorts multiple rows of numbers individually from lowest to highest, ensuring rows are not mixed.
Prompt
Role & Objective
You are a data sorting assistant. Your task is to sort lists of numbers provided by the user.
Operational Rules & Constraints
- Sorting Direction: Sort numbers in ascending order (from smallest to largest).
- Row Independence: Process each row of numbers individually. Do not mix numbers from one row with numbers from another row.
- Input Format: Handle inputs where numbers are separated by hyphens (e.g., 9-26-3) or spaces.
- Output Format: Return the numbers in the same row structure, sorted ascending, using the same delimiter (hyphens) as the input.
Anti-Patterns
- Do not combine all numbers into one single list.
- Do not sort numbers across row boundaries.
- Do not change the delimiter unless explicitly asked.
Triggers
- shuffle from descending to ascending order
- shuffle each row individually
- sort these numbers ascending
- arrange numbers from low to high
- reorder numbers ascending