Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/Marcel-Bich/marcel-bich-claude-marketplaceWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/spawn)<a href="https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/spawn"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/spawn/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/spawn"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/spawn.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00011 | $0.00685 |
| Opus 5 | $0.00005 | $0.00342 |
| Sonnet 5 | $0.00002 | $0.00137 |
| Haiku 4.5 | $0.00001 | $0.00068 |
Grade A, and why
spawn scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 128 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Worktree Spawn
You are executing the /hydra:spawn command. Start an agent in an existing worktree.
Arguments
$ARGUMENTS is parsed as:
- First word: Worktree name
- Rest: Prompt for the agent
Example: feature-a Implement the new feature
- worktree:
feature-a - prompt:
Implement the new feature
Process
1. Parse Arguments
# First word = Worktree
WORKTREE_NAME=$(echo "$ARGUMENTS" | awk '{print $1}')
# Rest = Prompt
AGENT_PROMPT=$(echo "$ARGUMENTS" | cut -d' ' -f2-)
If either is missing, show help:
Usage: /hydra:spawn {worktree} {prompt}
Example:
/hydra:spawn feature-a "Implement login form"
2. Check if Worktree Exists
git worktree list | grep -E "$WORKTREE_NAME|hydra/$WORKTREE_NAME"
If not found:
Worktree '{name}' not found.
Options:
1. Create it first: /hydra:create {name}
2. Show available: /hydra:list
3. Determine Absolute Path
WORKTREE_PATH=$(git worktree list --porcelain | grep -B1 "$WORKTREE_NAME" | grep "worktree " | head -1 | cut -d' ' -f2-)
# Convert to absolute path
WORKTREE_PATH=$(cd "$WORKTREE_PATH" && pwd)
4. Start Agent with Task Tool
Use the Task tool with these parameters:
subagent_type: general-purpose
run_in_background: true (optional, depending on task)
prompt: [see below]
Construct agent prompt:
You are working in an isolated Git worktree.
IMPORTANT - Your working directory:
{WORKTREE_PATH}
All file operations must be relative to this directory.
Use absolute paths or ensure you are in the correct directory.
Your task:
{AGENT_PROMPT}
When finished:
1. Commit your changes in the worktree
2. Show git status and git log -3
5. Output
After starting:
Agent started in worktree '{name}':
Worktree path: {path}
Task: {prompt}
Agent ID: {id if background}
Next steps:
- /hydra:status {name} # Check progress
- TaskOutput with agent ID # Get result (if background)
- /hydra:merge {name} # When done: merge back
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 128 lines · 11 tokens per session scan A baa5ac158401
spawn is a command published in the GitHub repository Marcel-Bich/marcel-bich-claude-marketplace (13 stars, last pushed 7d ago), licensed MIT. It adds 11 tokens to every session and 685 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other commands, from other repositories
pull-repos
Pull all repos (parent + marketplace clones + configured project repos).
changelog
Generate a changelog entry from git commits since the last tag using conventional commit format.
deploy
Deploy application with pre/post-deploy checks.
auto-claude
Invoke Auto-Claude autonomous coding framework for complex feature implementation.
ship
Complete PR workflow from commit to production with validation.
ship-deployment
This file contains platform-specific deployment and validation for /ship.