with one click
commit-push-pr
Commit, push, and open a PR
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Commit, push, and open a PR
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Export Markdown and Obsidian notes to polished PDF documents with Pandoc and Typst. Use when converting `.md` files to PDF, rendering Obsidian callouts or embeds, rendering Mermaid diagrams, applying reusable Typst styling, configuring document branding, running PDF export preflight checks, or creating/updating portable Markdown-to-PDF configuration.
Use when the user needs multi-source research with citation tracking, evidence persistence, and structured report generation. Triggers on "deep research", "comprehensive analysis", "research report", "compare X vs Y", "analyze trends", or "state of the art". Not for simple lookups, debugging, or questions answerable with 1-2 searches.
Build interactive low-fidelity wireframes and/or high-fidelity prototypes of websites as a deployed web application. Use when the user asks to create wireframes, prototypes, mockups, or design screens for a website or web app.
Progressive UX generation — Phase 1 generates 5 B&W wireframe options instantly (1 safe + 4 exploratory), then Phase 2 renders Clean + Polished color variants via 5 parallel Task agents (one per option). Supports wireframes-only or wireframes+visuals. Extracts optimization intent from arguments when present. Maintains persistent design context. Use when user says "wireframe", "prototype", "UX options", or "layout exploration".
Implement an approved architecture proposal while removing obsolete compatibility paths and preserving the intended final shape.
Autonomous execution of a plan, PRD, or context document. Decomposes the input into discrete tasks, dispatches each to a subagent (using TDD workflow for testable code changes, normal execution for config/docs), then runs an automated code review via Codex and iterates fixes until the review passes (up to 5 review cycles). Supports `--skip-review` (no Codex review) and `--only-review` (review + fix loop on the user's existing uncommitted changes, no implementation). Use this skill whenever the user says '/do', asks to 'implement the plan', 'execute the PRD', 'ship this spec', 'run the plan autonomously', wants a plan/PRD/issue translated into working code without hand-holding, or hands over a docs/plans/*.md file and asks you to build it. Also use when the user says something like 'take this and build it', 'do everything in this document', or 'make it happen' while referencing a planning document, or 'just review what I have' / 'run the review loop on my WIP' (use `--only-review`). Trigger even if the user do
| name | commit-push-pr |
| description | Commit, push, and open a PR |
Workflow complet : commits atomiques → push → PR.
git status
git diff --stat
git log origin/main..HEAD --oneline 2>/dev/null || echo "No commits ahead"
Identifie :
Pour chaque groupe logique de changements :
git add <files>feat: nouvelle fonctionnalitéfix: correction de bugrefactor: refactoring sans changement fonctionneldocs: documentationtest: ajout/modification de testschore: maintenance, configFormat du message :
<type>: <description courte>
<détails si nécessaire>
# Vérifie si la branche a un upstream
git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null || git push -u origin HEAD
git push
Vérifie si une PR existe :
gh pr view --json number 2>/dev/null
Si non, crée la PR :
gh pr create --fill
Si oui, affiche le lien de la PR existante.
--force push