apex-host-git-commit

apex-host-git-commit is a skill for Claude Code from jonathan-vella/apex-accelerator. It costs 52 tokens per session (337 once invoked), scanned A, original, MIT.

A local Agent Host procedure for staging selected changes, creating a Git commit, pushing it, and optionally offering to open a pull request.

In plain words
What is it for?
Use it when you are ready to record scoped code changes in Git and send them to a remote repository.
Why use it?
It keeps file selection, hooks, branch restrictions, and the separate pull-request decision explicit before changes are shared.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: mentions subagents.

Good fit Use it when you are ready to record scoped code changes in Git and send them to a remote repository.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jonathan-vella/apex-accelerator/apex-host-git-commit
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 jonathan-vella/apex-accelerator --skill apex-host-git-commit
Clone the repo
git clone --depth 1 https://github.com/jonathan-vella/apex-accelerator

Made for: Claude Code.

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 apex-host-git-commit

README.md
[![agentmods](https://agentmods.dev/badge/skills/jonathan-vella/apex-accelerator/apex-host-git-commit/github.svg)](https://agentmods.dev/skills/jonathan-vella/apex-accelerator/apex-host-git-commit)
Your own site
<a href="https://agentmods.dev/skills/jonathan-vella/apex-accelerator/apex-host-git-commit"><img src="https://agentmods.dev/badge/skills/jonathan-vella/apex-accelerator/apex-host-git-commit/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 apex-host-git-commit

Your own site · 80×15
<a href="https://agentmods.dev/skills/jonathan-vella/apex-accelerator/apex-host-git-commit"><img src="https://agentmods.dev/badge/skills/jonathan-vella/apex-accelerator/apex-host-git-commit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 337 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.00052 $0.00337
Opus 5.5 $0.00021 $0.00135
Sonnet 5 $0.00010 $0.00067
Haiku 4.5 $0.00005 $0.00034

Measured today against content hash 909d8533da8f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-23, from the pricing page.

Security

Grade A, and why

apex-host-git-commit 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 today.

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.

.github/skills/apex-host-git-commit/SKILL.md · 31 lines

What it actually says

Host Git Commit

Prerequisites

Require the selected built-in owner agent and model MAI-Code-1.1-Flash. This is the native Local operation's owner, not 01-Orchestrator or a worker. Allowed operation tools are vscode/askQuestions, execute/runInTerminal, read, and todo, intersected with the active owner's permissions. A skill does not bind agent/model/tools. STOP and request manual selection if any cannot be verified; do not widen tools or inherit a different model.

Procedure

Read apex-github-operations, then execute the shared commit procedure. Preserve exclusions, staged-index checks, normal hooks, no-main/no-force rules, failure stops, and the separate PR decision. Use git and gh only, not MCP. Do not dispatch this operation as a subagent or switch credentials implicitly.

The distinct Host name leaves Local /apex-git-commit unchanged. Native Host support remains manual and unverified. Do not enable experimental nesting or context forks to make the operation available.

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. today First seen · 31 lines · 52 tokens per session scan A 909d8533da8f

Subscribe to this mod's changes

apex-host-git-commit is a skill published in the GitHub repository jonathan-vella/apex-accelerator (50 stars, last pushed yesterday), licensed MIT. It adds 52 tokens to every session and 337 once invoked, about $0.0002 per session on Opus 5.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-23.

Related

Other skills, from other repositories

setup-husky-dotnet

Use when configuring Git hooks in .NET projects before team commits occur, to enforce commit message standards and code formatting automatically.

SebastienDegodez/copilot-instructions · 30 tokens

git-commit

Create well-structured git commits using the Conventional Commits specification. Use when asked to "commit changes", "create a git commit", "stage and commit", "write a commit message", or "/commit". Analyzes diffs to auto-detect type and scope, generates semantic commit messages, and supports intelligent file staging.

fabioc-aloha/Alex_Skill_Mall · 70 tokens

commit

Splits working-tree changes into logical, self-consistent commits (ordering so nothing dangles, stepping files that straddle commits through intermediate states), writes conventional-commit messages (feat/fix/docs/refactor/chore) with motivation in the body, stages explicit paths only, uses git mv for renames, never…

wardawgmalvicious/agent-config · 117 tokens

git-workflow-and-versioning

Structures git workflow practices for .NET/C# projects — atomic commits, trunk-based branches, pre-commit hygiene with dotnet test + dotnet format, worktrees for parallel agent work. Use when making any code change to a .NET solution, when committing, branching, resolving conflicts, or organizing work across multiple…

peterblazejewicz/claude-plugins · 76 tokens

repo-story-time

Generate a comprehensive repository summary and narrative story from commit history.

MarieLynneBlock/arcanum-artifex · 15 tokens

git-workflow

Covers the full git workflow for a software project: branch naming conventions, commit message authoring (Conventional Commits standard), PR description templates, and merge strategy advice. It produces ready-to-use git artefacts, not generic advice.

MarieLynneBlock/arcanum-artifex · 52 tokens