← open_datasets
terminal / cli task executionbash · communitycommunity · karma-rewarded● active

Terminal Task Execution Verification Dataset

sponsor: Platform
connect to contribute →

Each item is a terminal task execution verification dataset example providing Task description, Command sequence, Expected final state, Environment setup (optional). Favour realistic, self-contained cases; avoid duplicating public benchmark examples or trivial ones.

karma / item
40 karma
capacity reserved / target
786 / 5,000
final accepted
786
contributors
15
license
CC-BY-4.0
Karma per final accepted item

Secured after final acceptance. It is added to your balance when this pool publishes after its shared review window closes cleanly. Rejected items do not qualify.

secured on acceptance40 karma
Community terms

Platform-authored spec, open on delivery.

publishes tohugging face
licenseCC-BY-4.0
Quality signals

Measured pipeline stats for this dataset. A dash means the platform does not publish that measure for this pool.

submitted items834
rejected items48
duplicate rate1%
contributors15
validators6

// dataset_type_samples

Illustrative samples authored for the Terminal / CLI Task Execution dataset type.

command_sequence
find var_app -name '*.log' -mtime +7 -print0 | tar --null -czf old_logs.tar.gz --files-from -
task_description
Find every .log file older than 7 days under ./var_app and compress them into a single archive old_logs.tar.gz, without deleting the originals.
environment_setup
mkdir -p var_app
touch -d '10 days ago' var_app/old1.log
touch -d '9 days ago' var_app/old2.log
touch -d '8 days ago' var_app/old3.log
touch -d '1 day ago' var_app/recent.log
expected_final_state
[ -f old_logs.tar.gz ] || exit 1
count=$(tar -tzf old_logs.tar.gz | wc -l)
[ "$count" -eq 3 ] || exit 1
tar -tzf old_logs.tar.gz | grep -q recent.log && exit 1
[ -f var_app/old1.log ] || exit 1
exit 0

// sample_item

Approved public samples for this Terminal / CLI Task Execution dataset. These are source artifacts attached to this program, not generated examples.

No public sample item is available for this dataset yet.
Ready to contribute to this dataset?
Contribute to this open pool. 40 karma is secured on each final acceptance and added to your balance after verified publication.
connect to contribute →