원클릭으로
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