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.
npx agentmods add commands/kayba-ai/agentic-context-engine/remove-branchgit clone --depth 1 https://github.com/kayba-ai/agentic-context-engineWrote 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/kayba-ai/agentic-context-engine/remove-branch)<a href="https://agentmods.dev/commands/kayba-ai/agentic-context-engine/remove-branch"><img src="https://agentmods.dev/badge/commands/kayba-ai/agentic-context-engine/remove-branch.svg" alt="Measured on agentmods" 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 | $0.00000 | $0.00406 |
| Opus 5 | $0.00000 | $0.00203 |
| Sonnet 5 | $0.00000 | $0.00081 |
| Haiku 4.5 | $0.00000 | $0.00041 |
Grade A, and why
remove-branch 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 4d 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.
What it actually says
Remove a branch and its associated worktree.
Arguments: $ARGUMENTS should be the branch name (full or partial match)
--force: Skip confirmations and force delete unmerged branches
Examples:
/remove-branch feature/john/add-caching→ remove branch and worktree/remove-branch add-caching→ partial match, will prompt to confirm/remove-branch feature/john/add-caching --force→ skip all confirmations
Steps:
- Parse branch name and flags from arguments
- Resolve branch name (support partial matching if unique)
- Safety checks:
- Abort if trying to remove main/master
- Abort if trying to remove current branch (must switch first)
- Warn if branch has unmerged commits (show
git log main..<branch> --oneline)
- Check if branch has an associated worktree:
git worktree list - If worktree exists:
- Remove worktree first:
git worktree remove <path>(or--forceif needed) - Prune worktree list:
git worktree prune
- Remove worktree first:
- Delete the branch:
git branch -d <branch>(or-Dwith--force) - Confirm success
On success, output:
✓ Removed worktree: <worktree-path>
✓ Removed branch: <branch-name>
Error handling:
- Multiple partial matches: list matches and ask user to be more specific
- Unmerged commits without --force: show commits and ask for confirmation
- Protected branches (main/master): refuse with explanation
- Current branch: instruct user to switch branches first
Protected branches: main, master
Confirmation prompts (unless --force):
- "Branch has N unmerged commits. Remove anyway? (show commits first)"
- For partial match: "Did you mean ?"
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.
- 4d ago First seen · 42 lines · 0 tokens per session scan A aa225448e994
remove-branch is a command published in the GitHub repository kayba-ai/agentic-context-engine (2,564 stars, last pushed 6d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 406 tokens. 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-08-30.
Other commands, from other repositories
dream-apply
Walk a dream proposal artifact, review each item, apply accepted ones, commit.
end
End a session — log what happened and propose durable memory updates.
dream
Run a curator pass over the memory dir. Produces a proposal artifact for /dream-apply. Default curator: rot.
start
Start a session — load context + memory and brief yourself on current state.
update
Mid-session checkpoint — save progress without ending the session.
begin
Begin a coding session — scan code, show overview, turn on smart mode.