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/kivo360/omoios/git-push-allgit clone --depth 1 https://github.com/kivo360/OmoiOSWrote 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/kivo360/omoios/git-push-all)<a href="https://agentmods.dev/commands/kivo360/omoios/git-push-all"><img src="https://agentmods.dev/badge/commands/kivo360/omoios/git-push-all.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.00429 |
| Opus 5 | $0.00000 | $0.00215 |
| Sonnet 5 | $0.00000 | $0.00086 |
| Haiku 4.5 | $0.00000 | $0.00043 |
Grade A, and why
git-push-all 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
Git Push All
Description
Stages all changes, commits them, and pushes to the remote repository.
Command
#!/bin/bash
# Stage all changes
git add .
# Check if there are any changes to commit
if git diff --staged --quiet; then
echo "No changes to commit."
exit 0
fi
# Show status
echo "Staged changes:"
git status --short
# Get commit message from user or use AI-generated message
# If using Cursor's AI, generate a commit message based on staged changes
# Otherwise, prompt for a message
if [ -z "$COMMIT_MESSAGE" ]; then
echo ""
echo "Enter commit message (or press Enter for AI-generated message):"
read -r COMMIT_MESSAGE
if [ -z "$COMMIT_MESSAGE" ]; then
# Use git's default editor or a simple default message
COMMIT_MESSAGE="Update: $(git diff --staged --name-only | head -3 | tr '\n' ', ' | sed 's/,$//')"
if [ ${#COMMIT_MESSAGE} -gt 100 ]; then
COMMIT_MESSAGE="${COMMIT_MESSAGE:0:97}..."
fi
fi
fi
# Commit changes
git commit -m "$COMMIT_MESSAGE"
# Get current branch
BRANCH=$(git branch --show-current)
# Push to remote
echo "Pushing to origin/$BRANCH..."
git push origin "$BRANCH"
echo "✅ Successfully pushed to origin/$BRANCH"
Usage
Execute this command via Cursor's command palette or chat interface.
Example:
@git-push-all
Or with a custom commit message:
COMMIT_MESSAGE="Fix: Enhanced heartbeat protocol implementation" @git-push-all
Safety Features
- Checks for staged changes before committing
- Shows what will be committed
- Prompts for commit message if not provided
- Uses current branch for push (prevents accidental pushes to wrong 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.
- 4d ago First seen · 74 lines · 0 tokens per session scan A 68474fee8aa8
git-push-all is a command published in the GitHub repository kivo360/OmoiOS (75 stars, last pushed 2mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 429 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
OPSX: Explore
Enter explore mode - think through ideas, investigate problems, clarify requirements.
OPSX: Apply
Implement tasks from an OpenSpec change (Experimental).
OPSX: Archive
Archive a completed change in the experimental workflow.
OPSX: Propose
Propose a new change - create it and generate all artifacts in one step.
commit
Commit changes with logical grouping.
issue-amend
Re-snapshot the active issue's scope from the spec, clear verified and reviewed receipts, and record the change as a permanent amendment.