ワンクリックで
git-workflow
Git workflow patterns — branching, committing, rebasing, conflict resolution. Use when working with git operations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Git workflow patterns — branching, committing, rebasing, conflict resolution. Use when working with git operations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Rewrite user's original prompt by integrating their critique of the agent's failed response.
Deconstruct LLM "neuroslop" — machine clichés, puffery, weasel-wording, Markdown abuse, rhythmic monotony. Use when user asks to humanize, dehumanize-AI, очистить от нейрослопа, депорезать, redact AI-generated copy, edit a draft from ChatGPT/Claude/Gemini, or refine corporate/PR/wiki text that "sounds AI".
Discover and merge useful features from sibling forks into the user's fork. Invoke only on explicit user request via /fork-merge with a fork URL.
Relentlessly interview user to stress-test a plan/design.
Generate conversation handoff document for the next agent session.
Generate a comprehensive CLAUDE.md for the current repository — first runs Anthropic's /init for a baseline, then restructures with an extended standardized template (sections, security flows, anti-patterns, data models, CI/CD, common issues). Use when a repo has no CLAUDE.md or you want to enrich an existing one with extended structure.
| name | git-workflow |
| description | Git workflow patterns — branching, committing, rebasing, conflict resolution. Use when working with git operations. |
| stage | raw |
feat/short-description — new featurefix/short-description — bug fixrefactor/short-description — refactoringchore/short-description — maintenance, config, depstype: short description (imperative, English, max 72 chars, no period)
Types: feat, fix, refactor, chore, docs, test
git diff --staged — review all staged changesgit fetch origingit rebase origin/<target-branch>git add <resolved-files>git rebase --continuegit reset HEAD <file>git checkout -- <file>git commit --amendgit reset --soft HEAD~1git reset --hard HEAD~1dev (or project's default dev branch)git push -u origin <branch-name>gh pr create