background-task
Manage background tasks.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Manage background tasks.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
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.