From ravn-ai-toolkit
Runs tasks or nested skill invocations in a background sub-agent via /parallel slash command, allowing continued work on other tasks without blocking.
npx claudepluginhub ravnhq/ai-toolkitThis skill is limited to using the following tools:
Run the given task in a background sub-agent so you can continue working on other things.
Executes parallel subagents with Task tool and run_in_background for independent tasks like multi-file changes, dynamic spawning, or concurrent operations.
Executes independent subtasks in parallel via multiple task() calls in one message. Use for multi-component features with no shared files or dependencies to cut implementation time.
Dispatches parallel subagents for 2+ independent tasks without file or state conflicts or dependencies. Triggers on 'run these in parallel', plans with separate domains, includes prompt templates and verification.
Share bugs, ideas, or general feedback.
Run the given task in a background sub-agent so you can continue working on other things.
The user's input is:
$ARGUMENTS
Determine whether it is a skill invocation or a plain text task.
If the input starts with / (e.g., /promptify, /review-pr, /pr-comments-address TICKET-123), it is a skill invocation:
/) and any remaining text as the skill arguments./cc fix auth bug, tell the agent: "Use the Skill tool with skill 'cc' and args 'fix auth bug'."If the input does NOT start with /, pass it directly as the Agent tool prompt.
Use the Agent tool with run_in_background: true. Do NOT block on the agent's result. Continue responding to the user immediately after launching it. When the agent completes, report the result.
User: "/parallel /promptify audit all skills against our findings doc."
Expected behavior: Launch a background agent that invokes the promptify skill with args "audit all skills against our findings doc."
User: "Fix the bug in the checkout flow."
Expected behavior: Do not use parallel; execute the task directly in the foreground.
run_in_background: true is set and the prompt is a non-empty string./ prefix does not match any available skill./help.