From dstoic
Runs tasks asynchronously in the background without blocking using Task or Bash tools with run_in_background=true. Useful for long-running agent tasks or shell commands.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dstoic:backgroundThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Execute the following task in the background:
Execute the following task in the background:
$ARGUMENTS
Use the appropriate background execution method:
run_in_background=truerun_in_background=trueReturn immediately after starting the background task. Inform the user:
npx claudepluginhub digital-stoic-org/agent-skills --plugin dstoicLaunches a background sub-agent to execute tasks (via /parallel), allowing concurrent work. Returns results on completion.
Python background job patterns including task queues, workers, and event-driven architecture. Use for async job processing and decoupling work from request/response cycles.
Coordinates parallel subagent execution using Task tool with run_in_background. Use when parallelizing independent tasks, spawning dynamic subagents, or running concurrent operations.