安全扫描
OpenClaw
安全
medium confidenceThe skill is a local documentation/decision-guide for sorting strategies and its requirements match its stated purpose, but you should inspect the included script before running it since the shipped shell script is executed by the commands.
评估建议
This skill appears coherent and intended as a local reference: the commands run a bundled shell script that prints sorting guidance. Before installing or invoking it, open and read scripts/script.sh entirely to confirm it only prints documentation and does not perform unexpected actions (network calls, deleting files, or invoking other programs). If you plan to run it on a production machine, consider running it in a sandbox or container, and ensure the SORTER_DIR location is acceptable. If you ...详细分析 ▾
✓ 用途与能力
Name/description (sorting algorithms, system reference) align with the provided assets: an instruction file (SKILL.md) and a bundled shell script that prints guidance and command help. No unrelated credentials, binaries, or external services are requested.
ℹ 指令范围
SKILL.md instructs the agent to run the bundled scripts/script.sh with subcommands (intro, comparison, distribution, etc.). The visible portions of scripts/script.sh only output documentation text. Running the included script is expected for this skill, but any shipped executable code should be inspected because it will run locally when invoked.
✓ 安装机制
No install spec is present (instruction-only plus a bundled script). Nothing is downloaded from external URLs or written to disk by an installer. This is low-risk from an install-mechanism perspective.
✓ 凭证需求
The skill declares no required environment variables or credentials. SKILL.md documents an optional SORTER_DIR (default ~/.sorter/) which is reasonable for storing local data; no unrelated secrets are requested.
✓ 持久化与权限
always is false, and there are no indications the skill attempts to modify other skills or system-wide agent settings. The only potential persistence is use of a local data dir (~/.sorter/) which is declared in the docs.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/3/21
publish v1.0.0
● 无害
安装命令
点击复制官方npx clawhub@latest install sorter
镜像加速npx clawhub@latest install sorter --registry https://cn.longxiaskill.com镜像同步中
技能文档
Quick-reference skill for sorting algorithms, complexity analysis, and industrial sortation systems.
When to Use
- Choosing the right sorting algorithm for a dataset
- Understanding time/space complexity of sorting methods
- Designing physical sortation systems for warehouses
- Optimizing sort performance for large-scale data processing
- Comparing stable vs unstable sorts for specific use cases
Commands
intro
scripts/script.sh intro
Overview of sorting — classification, stability, and when to use what.
comparison
scripts/script.sh comparison
Comparison-based sorts — quicksort, mergesort, heapsort, timsort.
distribution
scripts/script.sh distribution
Distribution sorts — counting sort, radix sort, bucket sort.
simple
scripts/script.sh simple
Simple sorts — insertion, selection, bubble, and when they actually win.
parallel
scripts/script.sh parallel
Parallel and external sorting — merge sort for disk, MapReduce, GPU sorts.
choosing
scripts/script.sh choosing
Decision guide — which sort for which situation, with benchmarks.
physical
scripts/script.sh physical
Physical sortation systems — warehouse sorters, postal sorting, and throughput.
tricks
scripts/script.sh tricks
Sorting tricks — partial sorts, nth element, stability hacks, presorted data.
help
scripts/script.sh help
version
scripts/script.sh version
Configuration
| Variable | Description |
|---|---|
SORTER_DIR | Data directory (default: ~/.sorter/) |
Powered by BytesAgain | bytesagain.com | hello@bytesagain.com