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 rules/markmhendrickson/foundation/git_remote_syncgit clone --depth 1 https://github.com/markmhendrickson/foundationWhat 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.00031 | $0.01569 |
| Opus 5 | $0.00015 | $0.00785 |
| Sonnet 5 | $0.00006 | $0.00314 |
| Haiku 4.5 | $0.00003 | $0.00157 |
Grade A, and why
git_remote_sync 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 240 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Git Remote Sync Rule
Purpose
Ensures agents always pull and merge remote changes before pushing, maintaining repository synchronization and preventing push rejections.
Trigger Patterns
When any of the following occur, agents MUST pull and merge before pushing:
- Push is rejected with "non-fast-forward" or "diverged branches" error
git statusshows "Your branch and 'origin/main' have diverged"git statusshows "Your branch is behind 'origin/main'"- Remote changes detected during commit workflow
- Push command is about to execute
- Any git operation that would modify remote state
Agent Actions
Step 1: Detect Remote Changes
Before pushing or when push fails:
-
Check if remote is ahead:
git fetch origin LOCAL=$(git rev-parse @) REMOTE=$(git rev-parse @{u} 2>/dev/null || echo "") if [ -z "$REMOTE" ]; then # No upstream set - proceed with push exit 0 fi BASE=$(git merge-base @ @{u}) if [ "$LOCAL" = "$REMOTE" ]; then # Already in sync exit 0 elif [ "$REMOTE" = "$BASE" ]; then # Local is ahead - safe to push exit 0 elif [ "$LOCAL" = "$BASE" ] || [ "$LOCAL" != "$REMOTE" ] && [ "$REMOTE" != "$BASE" ]; then # Remote is ahead or branches have diverged - MUST pull and merge PULL_NEEDED=true fi -
If push was rejected, check error message:
# If push fails with "non-fast-forward" or "diverged" # Immediately proceed to pull and merge workflow
Step 2: Pull and Merge
If remote changes detected:
-
Pull with merge strategy:
CURRENT_BRANCH=$(git branch --show-current) git pull origin "$CURRENT_BRANCH" --no-rebase --no-edit -
Handle merge conflicts:
- If conflicts occur, resolve them immediately
- Stage resolved files:
git add <resolved-files> - Complete merge:
git commit --no-edit(or with merge message if needed) - DO NOT abort merge unless user explicitly requests
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.
- yesterday First seen · 240 lines · 31 tokens per session scan A 553bcddbfb60
git_remote_sync is a cursor rule published in the GitHub repository markmhendrickson/foundation (2 stars, last pushed 1mo ago), licensed MIT. It adds 31 tokens to every session and 1,569 once invoked, about $0.0002 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.
Other cursor rules, from other repositories
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.
coolify-ai-docs
Master reference to all Coolify AI documentation in .ai/ directory.
python_lib
Tips and guidelines specific to the development of the Streamlit Python library, not applicable to scripts and e2e tests.
specs
This directory contains product and tech specs for Streamlit features.