okhp3-replit-github-sync

okhp3-replit-github-sync is a skill for Codex from OKHP3/skillz. It costs 113 tokens per session (1,799 once invoked), scanned A, original, MIT.

A procedure for bringing a Replit project and its GitHub repository back into agreement. GitHub is a hosted service for storing Git repositories, and Git tracks changes so they can be committed, merged, and shared.

In plain words
What is it for?
Use it to inspect repository status, preserve local work, pull and commit changes, reconcile branches, prepare a pull request, push to GitHub, and verify that both copies match.
Why use it?
It helps diagnose rejected pushes and conflicting local and remote changes without repeatedly retrying or overwriting work. It keeps the local checkout as the reference for the Replit working tree and avoids force-pushing or bypassing review.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to inspect repository status, preserve local work, pull and commit changes, reconcile branches, prepare a pull request, push to GitHub, and verify that both copies match.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/okhp3/skillz/okhp3-replit-github-sync
View source ↗ OKHP3/skillz
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 OKHP3/skillz --skill okhp3-replit-github-sync
Clone the repo
git clone --depth 1 https://github.com/OKHP3/skillz

Made for: Codex.

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 okhp3-replit-github-sync

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/okhp3/skillz/okhp3-replit-github-sync"><img src="https://agentmods.dev/badge/skills/okhp3/skillz/okhp3-replit-github-sync.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,799 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.00113 $0.01799
Opus 5 $0.00056 $0.00899
Sonnet 5 $0.00023 $0.00360
Haiku 4.5 $0.00011 $0.00180

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

Security

Grade A, and why

okhp3-replit-github-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 7d 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.

.agents/skills/okhp3-replit-github-sync/SKILL.md · 163 lines

How it starts

The opening of the file, as written. The whole thing — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.

okhp3-replit-github-sync

OverKill Hill P³ · overkillhill.com · github.com/OKHP3

Replit's Git UI can be a useful surface, but it is not the source of truth when the workspace and GitHub disagree. This skill establishes the actual Git state, preserves local work, and uses an explicit integration path instead of retrying a rejected push until it happens to work.

It requires a Git checkout with an origin remote. A connected GitHub capability is optional for hosted compare, pull-request, and merge actions; local Git remains authoritative for the Replit working tree.

Scope

In scope Out of scope
Diagnose one Replit checkout against origin Multi-clone maintenance or branch cleanup
Commit reviewed local work, pull, and normally push Force-push, history rewriting, or deleting refs
Prepare a branch PR and an approved squash merge Bypassing required review or status checks
Verify GitHub and local branch alignment after sync Solving merge conflicts without owner input

Operating contract

  1. Treat the Replit UI error as a symptom, not a diagnosis. Record the repository root, current branch, remotes, current status, and the default base ref before changing anything:

    git status --short --branch
    git remote -v
    git symbolic-ref --quiet --short refs/remotes/origin/HEAD || true
    git log --oneline --decorate -8
    

    Default to origin/main only when that is the verified default branch; do not silently substitute main for a repository with another default.

  2. Inspect local changes before staging. Check for merge/rebase state, conflict markers, credentials, .env files, or generated output that is not clearly meant to be committed. Run git diff --check and show the intended commit scope. If the user has not authorized a commit, produce the review and proposed commit message, then stop.

  3. Fetch without pruning, then measure the relationship explicitly:

Read the full file on GitHub · 163 lines

Files

What ships with it

5 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. 7d ago First seen · 163 lines · 113 tokens per session scan A 8ec7f1948825

Subscribe to this mod's changes

okhp3-replit-github-sync is a skill published in the GitHub repository OKHP3/skillz (3 stars, last pushed today), licensed MIT. It adds 113 tokens to every session and 1,799 once invoked, about $0.0006 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-09-05.

Related

Other skills, from other repositories

release-skills

A release workflow for preparing and publishing a new version of a software project. A release is a named version that may include updated version files, release notes, tags, or a GitHub Release.

JimLiu/baoyu-skills · 87 tokens

ship

Commit, push, and optionally create or update a PR for the current staged changes. Use when the user asks to "ship", "ship it", "ship changes", "commit push and PR", or "ship this".

tobihagemann/turbo · 47 tokens

branch-and-worktree-workflow

Isolates feature work in its own branch or worktree and integrates it cleanly when done. Use this when starting work that should not disturb the current workspace, when several efforts must proceed in parallel on one repository, or when implementation is finished and the change needs merging, rebasing, or splitting…

cbrock84/headcount · 70 tokens

stage

Stage implementation changes for commit with precise file selection. Use when the user asks to "stage changes", "stage files", "add files to staging", or "prepare changes for commit".

tobihagemann/turbo · 39 tokens

semantic-szz-analyzer

Identify bug-introducing commits using semantic analysis that extends traditional SZZ algorithm. Distinguishes semantic changes from refactorings or code movements using control-flow and data-flow similarity analysis. Use when analyzing bug-fix commits to trace back to bug-introducing changes, investigating software…

ArabelaTso/Skills-4-SE · 96 tokens

szz-bug-introducing-commit-identifier

Identifies bug-introducing commits using SZZ-style analysis based on bug-fixing commits, commit history, and code blame information. Use this skill when you need to trace bugs back to their origin, identify which commits introduced bugs, analyze bug-fix commits to find root causes, perform software repository mining…

ArabelaTso/Skills-4-SE · 121 tokens