background-task
Manage background tasks.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Manage background tasks.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
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.
Baseado na classificação ocupacional SOC
| 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.