background-task
Manage background tasks.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Manage background tasks.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Help the user set up cronjobs that can run periodically.
Create a new character for role playing.
Generate high-fidelity speech audio using text to speech with voice cloning and subtitles.
Transcribe audio speech to text or generate subtitle (.srt) files. Use this to process voice messages.
All in one image skill with image generation and editing.
All in one video editing skill with video generation, audio dubbing, subtitles etc.
| name | background-task |
| description | Manage background tasks. |
For long running processes(e.g. >30min), you can run a command in the background:
is_background parameter to true.nohup <command> & > <log_file> to run it detached. Otherwise the process will just be killed when you reply to the user.Before replying to the user, you must write memory about the task in memory/background_tasks.jsonl:
Each task is a json object containing the following keys:
nohup, but the PID of the actual command. You need to use ps or pgrep to get the PID of the actual command. nohup will be killed once you finish your reply.