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/merge)<a href="https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/merge"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/merge/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/merge"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/merge.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.00012 | $0.00979 |
| Opus 5 | $0.00006 | $0.00490 |
| Sonnet 5 | $0.00002 | $0.00196 |
| Haiku 4.5 | $0.00001 | $0.00098 |
Grade A, and why
merge 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 8d 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 — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Worktree Merge
You are executing the /hydra:merge command. Merge a worktree branch back into the current branch.
Arguments
$ARGUMENTSis parsed as:- First word: Worktree name
- Second word (optional): Strategy (merge/rebase)
Examples:
/hydra:merge feature-a- Merge with default strategy/hydra:merge feature-a rebase- Rebase instead of merge
Process
1. Parse Arguments and Validate
WORKTREE_NAME=$(echo "$ARGUMENTS" | awk '{print $1}')
STRATEGY=$(echo "$ARGUMENTS" | awk '{print $2}')
STRATEGY=${STRATEGY:-merge} # Default: merge
# Validate strategy
if [[ "$STRATEGY" != "merge" && "$STRATEGY" != "rebase" ]]; then
echo "Unknown strategy: $STRATEGY (allowed: merge, rebase)"
exit 1
fi
2. Check if Worktree Exists
git worktree list | grep -qE "$WORKTREE_NAME|hydra/$WORKTREE_NAME" || {
echo "Worktree '$WORKTREE_NAME' not found"
exit 1
}
3. Determine Branch Names
WORKTREE_BRANCH=$(git worktree list --porcelain | grep -A2 "$WORKTREE_NAME" | grep "branch " | sed 's/branch refs\/heads\///')
CURRENT_BRANCH=$(git branch --show-current)
echo "Merge: $WORKTREE_BRANCH -> $CURRENT_BRANCH"
4. Check for Uncommitted Changes
In current directory (blocks):
if [[ -n $(git status --porcelain) ]]; then
echo "ERROR: Uncommitted changes in current directory"
echo "Commit or stash your changes first."
git status --short
exit 1
fi
In worktree (warning):
WORKTREE_PATH=$(git worktree list | grep "$WORKTREE_NAME" | awk '{print $1}')
if [[ -n $(git -C "$WORKTREE_PATH" status --porcelain) ]]; then
echo "WARNING: Uncommitted changes in worktree '$WORKTREE_NAME'"
git -C "$WORKTREE_PATH" status --short
# Ask whether to continue
fi
5. Show What Will Be Merged
echo "The following commits will be merged:"
git log --oneline "$CURRENT_BRANCH".."$WORKTREE_BRANCH"
echo ""
echo "Affected files:"
git diff --stat "$CURRENT_BRANCH"..."$WORKTREE_BRANCH"
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.
- 8d ago First seen · 163 lines · 12 tokens per session scan A 2711659d07b4
merge is a command published in the GitHub repository Marcel-Bich/marcel-bich-claude-marketplace (13 stars, last pushed 2d ago), licensed MIT. It adds 12 tokens to every session and 979 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
commit
Creates git commits using conventional commit format with appropriate emojis, following project standards and creating descriptive messages that explain the purpose of changes.
create-pr
Streamlines pull request creation by handling the entire workflow: creating a new branch, committing changes, formatting modified files with Biome, and submitting the PR.
changelog
Generate a changelog entry from git commits since the last tag using conventional commit format.
deploy
Deploy application with pre/post-deploy checks.
pull-repos
Pull all repos (parent + marketplace clones + configured project repos).
auto-claude
Invoke Auto-Claude autonomous coding framework for complex feature implementation.