background-task
Manage background tasks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Manage background tasks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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.