一键导入
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 页面并帮你完成安装。
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.
基于 SOC 职业分类
| 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