From u
Run a task in a background agent. Use when the user invokes /bg with a task description to spin off an autonomous sub-agent.
How this skill is triggered — by the user, by Claude, or both
Slash command
/u:bgThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Launch a background agent to handle a task autonomously.
Launch a background agent to handle a task autonomously.
If $ARGUMENTS is empty, tell the user: "Usage: /bg <task description>" and stop.
Otherwise, launch an Agent with:
$ARGUMENTStrue$ARGUMENTSThen tell the user the agent has been launched.
npx claudepluginhub tgvashworth/agent-plugins --plugin uRuns 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.
Launches a background sub-agent to execute tasks (via /parallel), allowing concurrent work. Returns results on completion.
Orchestrates subagents, task planning, and human-in-the-loop approval in Deep Agents. Covers SubAgentMiddleware, TodoListMiddleware, and HITL interrupts for delegated execution and workflow control.