background-task
Manage background tasks.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Manage background tasks.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
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.
Based on SOC occupation classification
| 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.