Borrowing it
Nothing to install: this file belongs to martin-francois/symphony-trello. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/martin-francois/symphony-trello/main/.codex/skills/push-pr/SKILL.mdgit clone --depth 1 https://github.com/martin-francois/symphony-trelloWrote 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/skills/martin-francois/symphony-trello/push-pr)<a href="https://agentmods.dev/skills/martin-francois/symphony-trello/push-pr"><img src="https://agentmods.dev/badge/skills/martin-francois/symphony-trello/push-pr/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.
<a href="https://agentmods.dev/skills/martin-francois/symphony-trello/push-pr"><img src="https://agentmods.dev/badge/skills/martin-francois/symphony-trello/push-pr.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00034 | $0.02085 |
| Opus 5 | $0.00017 | $0.01043 |
| Sonnet 5 | $0.00007 | $0.00417 |
| Haiku 4.5 | $0.00003 | $0.00209 |
Grade A, and why
push-pr 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 12d 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.
How it starts
The opening of the file, as written. The whole thing — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Push PR
Goals
- Push the current branch without changing remotes behind the user's back.
- Create a ready-for-review, non-draft PR when none exists, or update the existing PR.
- Use a draft PR only when the Trello card explicitly asks for a draft PR.
- Keep PR title and body aligned with the full branch scope.
- Distinguish stale-branch problems from auth or permission problems.
Preconditions
ghis installed and authenticated for this repository.- Local verification required by
AGENTS.mdhas passed or the blocker is known.
Steps
-
Inspect the branch and diff:
branch="$(git branch --show-current)" git status --short --branch git log --oneline --decorate -5 -
Run the required local checks for the change.
-
Before pushing, verify that commits intended for the PR are authored as the authenticated GitHub login:
if ! github_name="$(gh api user --jq '.login // ""')" || [ -z "$github_name" ]; then echo "GitHub identity lookup failed: cannot verify PR commit author login" >&2 exit 1 fi if ! github_email="$(gh api user --jq '.email // ""')"; then echo "GitHub identity lookup failed: cannot verify PR commit author email metadata" >&2 exit 1 fi if [ -z "$github_email" ]; then if ! github_email="$(gh api user/emails --jq '[.[] | select(.email | endswith("@users.noreply.github.com")) | .email][0] // ""' 2>/dev/null)"; then echo "GitHub identity lookup failed: gh api user/emails needs the user:email scope; run gh auth refresh -s user:email for this account" >&2 exit 1 fi fi if [ -z "$github_email" ]; then echo "GitHub identity lookup failed: configure a public email or accessible GitHub noreply email for this account" >&2 exit 1 fi github_author="$github_name <$github_email>" default_branch="$(git remote show origin | sed -n 's/ HEAD branch: //p')" if [ -z "$default_branch" ]; then default_branch="$(git symbolic-ref --quiet --short refs/remotes/origin/HEAD 2>/dev/null | sed 's#^origin/##' || true)" fi if [ -z "$default_branch" ]; then echo "Git author verification failed: could not resolve origin default branch" >&2 exit 1 fi if ! git fetch origin "$default_branch"; then echo "Git author verification failed: could not fetch origin/$default_branch" >&2 exit 1 fi base_ref="origin/$default_branch" if ! git rev-parse --verify --quiet "$base_ref" >/dev/null; then echo "Git author verification failed: missing $base_ref" >&2 exit 1 fi if ! merge_base="$(git merge-base HEAD "$base_ref")"; then echo "Git author verification failed: could not find a merge base with $base_ref" >&2 exit 1 fi git log --format='%H %an <%ae>' "$merge_base"..HEAD symphony_trello_author_rewrite=false wrong_authors="$( git log --format='%H%x09%an <%ae>' "$merge_base"..HEAD | while IFS="$(printf '\t')" read -r commit author; do if [ "$author" != "$github_author" ]; then printf '%s %s\n' "$commit" "$author" fi done )" if [ -n "$wrong_authors" ]; then current_branch="$(git branch --show-current)" if [ -z "$current_branch" ] || [ "$current_branch" = "$default_branch" ]; then printf 'Git author verification failed: expected PR commits authored as %s\n%s\n' "$github_author" "$wrong_authors" >&2 echo "Refusing to rewrite author metadata on the default branch or an unnamed branch" >&2 exit 1 fi printf 'Git author verification will rewrite PR branch commits to %s\n%s\n' "$github_author" "$wrong_authors" >&2 export GIT_AUTHOR_NAME="$github_name" export GIT_AUTHOR_EMAIL="$github_email" export GIT_COMMITTER_NAME="$github_name" export GIT_COMMITTER_EMAIL="$github_email" if ! git rebase --exec 'git commit --amend --no-edit --reset-author' "$merge_base"; then echo "Git author verification failed: could not rewrite PR commit authors" >&2 exit 1 fi unset GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL wrong_authors="$( git log --format='%H%x09%an <%ae>' "$merge_base"..HEAD | while IFS="$(printf '\t')" read -r commit author; do if [ "$author" != "$github_author" ]; then printf '%s %s\n' "$commit" "$author" fi done )" if [ -n "$wrong_authors" ]; then printf 'Git author verification failed after rewrite: expected PR commits authored as %s\n%s\n' "$github_author" "$wrong_authors" >&2 exit 1 fi symphony_trello_author_rewrite=true fi
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.
- 12d ago First seen · 192 lines · 34 tokens per session scan A 243a3dc9304e
push-pr is a skill published in the GitHub repository martin-francois/symphony-trello (2 stars, last pushed today), licensed Apache-2.0. It adds 34 tokens to every session and 2,085 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 skills, from other repositories
git-integration
Git commit patterns, formats, and conventions for GSD methodology. Provides atomic commits per task, structured commit messages, planning file commits, branch management, and milestone tag operations.
moai-workflow-worktree
Git worktree management for parallel SPEC development with isolated workspaces, automatic branch registration, and seamless MoAI-ADK integration. Use when setting up parallel development environments.
moai-ref-git-workflow
Git workflow patterns, branch strategies, conventional commits, and PR templates reference for git operations. Agent-extending skill that amplifies manager-git expertise with production-grade git workflow patterns. NOT for: code implementation, testing, architecture design, documentation content.
audit-trail
Full traceability from PRD to code commit through the CCPM spec-driven pipeline.
strict-tdd
Strict RED->GREEN->REFACTOR test-driven development with enforcement. Never write production code before a failing test. Atomic commits per TDD cycle.
github-sync
Bidirectional synchronization of epics and tasks with GitHub issues, labels, and relationships.