signal-push

signal-push is a skill for Claude Code from mattbaconz/signal. It costs 63 tokens per session (942 once invoked), scanned A, original, MIT.

A skill that stages changes, creates a conventional Git commit, and pushes it to a remote repository. Git is a version-control system, and a remote repository is the shared copy hosted elsewhere.

In plain words
What is it for?
Committing all current changes, pushing a branch, setting its upstream when needed, and handling requests such as “commit and push” or `/signal-push`.
Why use it?
Sending local changes to a remote normally requires several manual Git commands. This combines the local-to-remote steps into one requested operation.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the signal plugin — 8 skills shipped together

Good fit Committing all current changes, pushing a branch, setting its upstream when needed, and handling requests such as “commit and push” or /signal-push.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mattbaconz/signal/signal-push
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.

Any agent
npx skills add mattbaconz/signal --skill signal-push
Clone the repo
git clone --depth 1 https://github.com/mattbaconz/signal

Made for: Claude Code.

Or install signal, the plugin that ships this one along with the rest of its 8 skills.

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 signal-push

README.md
[![agentmods](https://agentmods.dev/badge/skills/mattbaconz/signal/signal-push/github.svg)](https://agentmods.dev/skills/mattbaconz/signal/signal-push)
Your own site
<a href="https://agentmods.dev/skills/mattbaconz/signal/signal-push"><img src="https://agentmods.dev/badge/skills/mattbaconz/signal/signal-push/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.

agentmods 80×15 button for signal-push

Your own site · 80×15
<a href="https://agentmods.dev/skills/mattbaconz/signal/signal-push"><img src="https://agentmods.dev/badge/skills/mattbaconz/signal/signal-push.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 942 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00063 $0.00942
Opus 5 $0.00032 $0.00471
Sonnet 5 $0.00013 $0.00188
Haiku 4.5 $0.00006 $0.00094

Measured 11d ago against content hash 5245455155b4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

signal-push 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 11d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/push.ps1, scripts/push.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

claude-signal/skills/signal-push/SKILL.md · 128 lines

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.

⚡ signal-push — Commit + Push

One command. Stages, commits, pushes. Done.


Invocation Triggers

Activate when user says any of:

  • /signal-push
  • "commit and push", "push everything", "push my changes"
  • "push this", "ship it", "send to remote"
  • /signal-commit --push

Slash command behavior

If the user's message is only /signal-push (optionally with flags like --dry, --draft, or --split), treat that as execute now.

  • Do not stop after acknowledging the skill.
  • Do not ask for confirmation unless the user explicitly requested review mode.
  • Immediately run the ordered steps below in the same turn.
  • Respect --dry and --draft exactly as defined in this file.

Behavior (Ordered Steps)

  1. Run signal-commit logic — full diff analysis, message generation, staging, committing. See signal-commit/SKILL.md for complete commit behavior.

  2. Push to remote

    git push
    

    If no upstream is set (new branch), auto-set it:

    git push --set-upstream origin {current-branch}
    

    No prompt. No confirmation. It pushes.

  3. Report

    ✓ feat(auth): add JWT refresh token rotation [3 files, +47/-12]
    ✓ pushed → origin/feat/jwt-refresh
    

Flags

All flags from signal-commit are inherited, plus:

Flag Behavior
--draft Show generated commit message, do not commit or push.
--dry Explain what would happen — touch nothing.
--split Force atomic commits per logical change, then push all.

--dry output:

Would stage: 3 files
Would commit: feat(auth): add JWT refresh token rotation
Would push → origin/feat/jwt-refresh

Output Format

Single commit + push:

✓ feat(auth): add JWT refresh token rotation [3 files, +47/-12]
✓ pushed → origin/feat/jwt-refresh

Split commits + push:

✓ fix(api): handle null response from upstream [2 files, +8/-3]
✓ chore(deps): update axios to 1.6.2 [1 file, +2/-2]
✓ pushed → origin/main

Read the full file on GitHub · 128 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 128 lines · 63 tokens per session scan A 5245455155b4

Subscribe to this mod's changes

signal-push is a skill published in the GitHub repository mattbaconz/signal (10 stars, last pushed 2mo ago), licensed MIT. It adds 63 tokens to every session and 942 once invoked, about $0.0003 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-08-31.

Related

Other skills, from other repositories

commit-staged

This skill should be used when user asks to "commit these changes", "write commit message", "stage and commit", "create a commit", "commit staged files", or explicitly invokes "commit-staged".

fcakyon/claude-codex-settings · 46 tokens

lov-checkpoint-list

A read-only history report built from Git records and project checkpoint logs. A checkpoint is a recorded project milestone or state, while Git is the version-control system that tracks changes and commits.

lovstudio/skills · 38 tokens

lov-git-commit-with-context

A Git commit helper that compares the current conversation's intended work with the repository's actual changes before creating a commit. Git is a system for tracking file changes, and a commit records a selected set of those changes.

lovstudio/skills · 47 tokens

chinese-commit-conventions

A Chinese-language convention for writing Git commit messages, based on Conventional Commits, a standard format that tools can use to classify changes and build changelogs.

Leodorareluctant259/superpowers-zh · 28 tokens

atomic-commits

Commit discipline for every repository — small atomic commits, Conventional Commits messages, only commit working states. Use whenever creating git commits, splitting work into commits, or writing commit messages, in any project.

AkshitIreddy/agent-skills · 45 tokens

git-workflow-and-versioning

Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, splitting uncommitted work in a messy working tree into clean atomic commits, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple…

addyosmani/agent-skills · 89 tokens