com um clique
git
智能化 Git 操作。覆盖提交、冲突处理与安全回滚;提交场景委派 git-committer agent。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
智能化 Git 操作。覆盖提交、冲突处理与安全回滚;提交场景委派 git-committer agent。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Personalized writing assistant with style transfer, error memory, grammar checking, and long-term writing preferences. Use when users ask for writing polishing, style mimicry, iterative correction, bilingual grammar checks, or persistent writing preferences by domain.
Academic paper AI content detection and rewriting assistant. Analyzes text for AI-generated characteristics, provides detailed rewrite suggestions. Supports .docx files, outputs reports and rewritten documents. Bilingual: Chinese & English.
解释代码、回答技术问题或概念问答时使用。直接给出答案,不启动开发流程。
评估系统架构、平台设计或高层结构时使用。输出风险检查清单。
Autonomously improve a generated paper via GPT-5.4 xhigh review → implement fixes → recompile, for 2 rounds. Use when user says "改论文", "improve paper", "论文润色循环", "auto improve", or wants to iteratively polish a generated paper.
Autonomous multi-round research review loop. Repeatedly reviews via Codex MCP, implements fixes, and re-reviews until positive assessment or max rounds reached. Use when user says "auto review loop", "review until it passes", or wants autonomous iterative improvement.
| name | git |
| description | 智能化 Git 操作。覆盖提交、冲突处理与安全回滚;提交场景委派 git-committer agent。 |
| argument-hint | [操作描述,如 commit / resolve conflict / rollback] |
!git branch --show-current 2>/dev/null && git log --oneline -5 2>/dev/null
!git status --short 2>/dev/null | head -20
commit/提交/message → 流程 A(智能提交)conflict/冲突/merge/rebase/cherry-pick → 流程 B(冲突处理)revert/restore/回滚/撤销 → 流程 C(安全回滚)git status --shortGIT_PAGER=cat git diff --staged --statgit add -p 或 git add <file>blockedgit-committer agent
git commitgit status --short.git/MERGE_HEAD、.git/rebase-merge、.git/rebase-apply、.git/CHERRY_PICK_HEADgit diff --name-only --diff-filter=Ublocked<<<<<<< / ======= / >>>>>>>)superagents 协调 implementer/reviewergit add <resolved-files>git merge --continue / git rebase --continue / git cherry-pick --continuegit revert 与 git restoregit reset --hard、git clean -fd 属破坏性操作,必须用户明确确认git branch backup/<timestamp>git commit## 意图识别
<commit|conflict|rollback|diagnose>
## 执行结果
<关键命令、输出摘要、影响文件>
## 下一步
<最小可执行步骤>
---
status: <success|partial|blocked>
| # | 标准 | 验证方式 |
|---|---|---|
| 1 | 路由命中正确 | 意图与流程 A/B/C/diagnose 一致 |
| 2 | 关键结论有证据 | 包含关键命令与输出摘要 |
| 3 | 危险操作已确认 | 破坏性命令前有明确用户确认 |
| 4 | 状态可解释 | success/partial/blocked 与结果一致 |