rebase

rebase is a command for coding agents from heyAyushh/stacc. It costs 0 tokens per session (311 once invoked), scanned A, original, MIT.

A command for replaying the current branch's changes on top of another Git branch.

In plain words
What is it for?
Use it to rebase on local main, a remote main, a named remote branch, or another local branch.
Why use it?
It updates the branch's base and provides a process for investigating and resolving conflicts while preserving changes from both branches.

Command

Install

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.

agentmods
npx agentmods add commands/heyayushh/stacc/rebase
Clone the repo
git clone --depth 1 https://github.com/heyAyushh/stacc

Wrote 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.

agentmods badge for rebase

README.md
[![agentmods](https://agentmods.dev/badge/commands/heyayushh/stacc/rebase.svg)](https://agentmods.dev/commands/heyayushh/stacc/rebase)
Your own site
<a href="https://agentmods.dev/commands/heyayushh/stacc/rebase"><img src="https://agentmods.dev/badge/commands/heyayushh/stacc/rebase.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 311 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00311
Opus 5 $0.00000 $0.00156
Sonnet 5 $0.00000 $0.00062
Haiku 4.5 $0.00000 $0.00031

Measured 3d ago against content hash 0a7e16a9c76c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

rebase 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 3d 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.

configs/commands/rebase.md · 36 lines

What it actually says

Rebase the current branch.

Arguments: $ARGUMENTS

Behavior:

  • No arguments: rebase on local main
  • "origin": fetch origin, rebase on origin/main
  • "origin/branch": fetch origin, rebase on origin/branch
  • "branch": rebase on local branch

Steps:

  1. Parse arguments:
    • No args → target is "main", no fetch
    • Contains "/" (e.g., "origin/develop") → split into remote and branch, fetch remote, target is remote/branch
    • Just "origin" → fetch origin, target is "origin/main"
    • Anything else → target is that branch name, no fetch
  2. If fetching, run: git fetch <remote>
  3. Run: git rebase <target>
  4. If conflicts occur, handle them carefully (see below)
  5. Continue until rebase is complete

Handling conflicts:

  • BEFORE resolving any conflict, understand what changes were made to each conflicting file in the target branch
  • For each conflicting file, run git log -p -n 3 <target> -- <file> to see recent changes to that file in the target branch
  • The goal is to preserve BOTH the changes from the target branch AND our branch's changes
  • After resolving each conflict, stage the file and continue with git rebase --continue
  • If a conflict is too complex or unclear, ask for guidance before proceeding
Changes

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.

  1. 3d ago First seen · 36 lines · 0 tokens per session scan A 0a7e16a9c76c

Subscribe to this mod's changes

rebase is a command published in the GitHub repository heyAyushh/stacc (3 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 311 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-31.