From ritual
Use when entering a worktree to start work — reads handoff artifact and dispatches the matching orchestrator agent
npx claudepluginhub yanekyuk/arcana --plugin ritualThis skill is limited to using the following tools:
You are starting work in a worktree. Follow these steps exactly.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
You are starting work in a worktree. Follow these steps exactly.
Check that you're in a git worktree (not the main repo):
test -f .git && echo "WORKTREE" || echo "NOT_WORKTREE"
If NOT_WORKTREE (.git is a directory, not a file), tell the user: "This skill must run from a worktree, not the project root. Please cd into a worktree under .worktrees/ first."
Determine the worktree folder name from the current directory name:
basename "$PWD"
The handoff artifact lives at docs/handoffs/<folder-name>.md in the current worktree's working tree (it was committed on this branch by the triage script).
Read docs/handoffs/<folder-name>.md. If it doesn't exist, tell the user: "No handoff artifact found. Run /run-triage in the project root first."
Based on the type field in the handoff frontmatter, dispatch the matching orchestrator agent:
feat → use the Agent tool with the feat-orchestrator agentfix → use the Agent tool with the fix-orchestrator agentrefactor → use the Agent tool with the refactor-orchestrator agentdocs → use the Agent tool with the docs-orchestrator agentPass the full handoff content as context to the agent.
The orchestrator will run autonomously to PR. Do not interfere.