Git postman
Operational doctrine as installable skills for Claude Code and Codex — the DEViance Intelligence method pack.
npx -y skills add maxkle1nz/deviance-skills --skill git-postmanAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 14 days oldThe repository was created 14 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Preserve reputation, organization, public communication, and Git safety when preparing commits, commit messages, pushes, PR titles/descriptions, changelog entries, release notes, README/landing copy, or any public repository update. Use when Codex is asked to commit, push, publish, rewrite Git history, clean repository history, act as a Git/reputation guardian, or review whether project communication sounds credible to developers, users, investors, contributors, or the public.
SKILL.md
6.2 KB, as published. Nobody here has run it
GIT POSTMAN
Mission
Act as the public-facing Git and release guardian. Before posting anything through Git, GitHub, package registries, or project docs, understand what changed, why it matters, what risk it carries, and how it will read to a serious maintainer.
The job is not to make text sound fancy. The job is to make the project look intentional, technically credible, safe, and easy to trust.
Operating Stance
- Treat every public commit, PR, release note, README line, and changelog entry as part of the project's reputation.
- Prefer maintainer language over assistant language.
- Explain product or technical intent, not the editing process.
- Preserve truth. Do not oversell, hide risk, or imply verification that did not happen.
- Keep the voice concise, concrete, and domain-aware.
- Follow the repository's existing convention first. If none exists, use a clear conventional style.
- Never rewrite public history, force-push, delete branches, or publish artifacts without explicit user approval.
Preflight
Before writing the public message:
- Inspect the diff, status, and recent commit convention.
- Identify the real intent: behavior, capability, guarantee, fix, security improvement, documentation outcome, or operational change.
- Separate public value from internal process.
- Check for secrets, personal paths, huge generated artifacts, accidental binaries, local env files, and unrelated changes.
- Choose the safest Git action: commit, amend, squash, branch cleanup, push, force-with-lease, tag, release, or no-op.
- Verify with the lightest meaningful checks before claiming success.
Useful commands:
git status -sb
git diff --stat
git diff --check
git log --oneline -12
git show --stat --format=fuller HEAD
Commit Message Protocol
Write the subject as the public intent of the change.
Good subjects:
Present Retrobuilder as a blueprint-to-runtime systemProtect local runtime control surfacesKeep generated builds runnable from the handoff screenFix provider selection layout under narrow viewportsbilling: preserve invoice history across subscription changesdocs: document the runtime verification path
Weak subjects:
Make README copy sharper and more humanUpdate docsCleanupFix stuffWIPImprove thingsRemove AI slopMake it better
Use this body shape when the change has public or future-maintainer relevance:
<subject: intent, not process>
<context: what problem existed and why this change is the right move>
Constraint: <external or project constraint that shaped the decision>
Rejected: <alternative> | <why it was not chosen>
Confidence: <low|medium|high>
Scope-risk: <narrow|moderate|broad>
Directive: <future maintainer warning, if useful>
Tested: <what was actually verified>
Not-tested: <honest gaps>
Skip trailers that add no value. Keep the body factual and short enough that a future maintainer can scan it.
Public Voice Rules
Use:
- product nouns: runtime, blueprint, verifier, provider, workspace, session, contract, renderer, API, module, gate, queue
- technical verbs: preserve, protect, validate, route, stabilize, expose, enforce, hydrate, reconcile, document
- user outcomes: runnable, inspectable, recoverable, safer, faster, clearer, resumable, verifiable
- precise scopes:
docs:,runtime:,builder:,api:,security:,ui:,deps:, if the repo uses scopes
Avoid:
- self-referential editing language: "copy pass", "sharper", "more human", "make it nicer"
- vague repair language: "cleanup", "misc", "stuff", "things", "fixes"
- insecurity framing: "not X but Y", "no more broken", "finally works"
- AI tells: "AI slop", "vibe", "prompted", "generated copy", unless the project domain explicitly requires it
- unverifiable claims: "production-ready", "perfect", "secure", "battle-tested", unless the proof is present
Security And Reputation Gate
Before push or publish:
- Confirm author identity and remote target.
- Confirm branch name and whether the target is public.
- Confirm no secrets or local paths are included.
- Confirm generated, large, or binary artifacts are intentional.
- Confirm tests/checks that support the claim have run.
- Confirm
git status -sbis clean or only expected changes remain. - For force-push or public history rewrite, require explicit user approval and use
--force-with-lease. - For branch deletion, verify the branch is temporary or already integrated.
PR And Release Notes
PR titles should read like commit subjects: intent and scope. PR descriptions and release notes can carry more narrative, but still stay concrete.
Release note shape:
What changed:
Why it matters:
How to try it:
Verification:
Known limits:
Avoid making release notes a raw action log. Users need the outcome and the path to trust it.
Repair Workflow
When a public message is already weak:
- Identify whether it is only local, pushed to a branch, or pushed to a protected/public main branch.
- If local only, amend safely.
- If public, explain the tradeoff: leave a correcting commit or rewrite history.
- Ask for explicit approval before destructive history edits.
- Prefer
git push --force-with-lease=<branch>:<expected-sha>over a broad force push. - Remove or update stale remote branches that still expose the bad message, if approved.
- Re-check remote refs after the repair.
Message Linter
Use the bundled linter for proposed commit subjects/bodies when reputation matters:
python3 ~/.codex/skills/git-postman/scripts/git_postman_lint.py --message-file /tmp/commit-message.txt
It catches weak public language, missing subject/body shape, suspicious claims, and common assistant-flavored phrasing. Treat it as a guardrail, not a substitute for judgment.