con un clic
merge
Commit, rebase, and merge the current branch.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Commit, rebase, and merge the current branch.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Delegate to GPT-5 via the codex CLI for code review, deep exploration, or a second opinion. Uses the codex MCP server with named profiles (review, deep) and supports multi-turn conversations.
Scan local Claude Code session transcripts and maintain an auto-generated daily activity note in cg-notes. Designed to run under /loop (self-paced), but a single invocation does one full pass. The note feeds /daily as source material. Usage: /session-journal (or /loop /session-journal)
Interactive daily note builder. Prompts you through structured questions about your day — work, decisions, blockers, people — and saves the result to cg-notes. Usage: /daily [date]
Manage a personal LLM Wiki — ingest daily notes, query the knowledge base, or lint for health. Implements the LLM Wiki pattern (Karpathy, 2026). Usage: /wiki ingest [target] | /wiki query [question] | /wiki lint
Launch one or more tasks in new git worktrees using workmux.
Basado en la clasificación ocupacional SOC
| name | merge |
| description | Commit, rebase, and merge the current branch. |
| disable-model-invocation | true |
| allowed-tools | Read, Bash, Glob, Grep |
Arguments: $ARGUMENTS
Check the arguments for flags:
--keep, -k → pass --keep to workmux merge (keeps the worktree and tmux window after merging)--no-verify, -n → pass --no-verify to workmux mergeStrip all flags from arguments.
Commit, rebase, and merge the current branch.
This command finishes work on the current branch by:
workmux merge to merge and clean upIf there are staged changes, commit them. Use lowercase, imperative mood, no conventional commit prefixes. Skip if nothing is staged.
Get the base branch from git config:
git config --local --get "branch.$(git branch --show-current).workmux-base"
If no base branch is configured, default to "main".
Rebase onto the local base branch (do NOT fetch from origin first):
git rebase <base-branch>
IMPORTANT: Do NOT run git fetch. Do NOT rebase onto origin/<branch>. Only rebase onto the local branch name (e.g., git rebase main, not git rebase origin/main).
If conflicts occur:
git log -p -n 3 <base-branch> -- <file> to
see recent changes to that file in the base branchgit rebase --continueRun: workmux merge --rebase --notification [--keep] [--no-verify]
Include --keep only if the --keep flag was passed in arguments.
Include --no-verify only if the --no-verify flag was passed in arguments.
This will merge the branch into the base branch and clean up the worktree and
tmux window (unless --keep is used).