Add preset system
We want to be able to save preset that take argument in input.
We want the following command (the command is not valid, it is for the sake of the example):
poulpy repo-submission get-activity-jobs "piscine-2025" -f "body.jobs[?status == 'SUCCEEDED']" | repo-submission retry-jobs {.id}
To be usable like this:
poulpy retry-jobs --activity piscine-2025 --status SUCCEEDED
The preset would be created like this:
poulpy new-preset retry-jobs --arg activity --arg status --command "repo-submission get-activity-jobs '{activity}' -f \"body.jobs[?status == '{status}']\" | repo-submission retry-jobs {.id}"