用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/phoroth/AGENTIC --skill smart-git-automation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Development skill from AGENTIC (https://github.com/phoroth/AGENTIC)
Development skill from AGENTIC (https://github.com/phoroth/AGENTIC)
Generate clean, human-sounding, SEO-optimized WordPress blog posts with optional Yoast metadata, JSON-LD schema markup, and image SEO planning. Supports modular batch output.
基于 SOC 职业分类
正在显示 SKILL.md
| name | smart-git-automation |
| version | 1.0.0 |
| description | Smart change detection, auto branch naming, and streamlined commit/PR workflow |
| risk | critical |
| source | community |
| source_type | community |
| source_repo | mskadu/opencode-agent-skills |
| license | MIT |
| license_source | https://github.com/mskadu/opencode-agent-skills/blob/main/LICENSE |
| date_added | 2026-06-05 |
Use this when you want a faster, smarter git workflow that groups changes logically and reduces manual confirmation overhead.
Run in parallel:
git status - check what's changedgit diff --stat - see file modification summarygit diff --name-only - list changed files onlygit diff --staged --stat - see what's already stagedAnalyze changes to group them logically:
Present grouped changes in a clear format, e.g.:
📁 Group 1: UI Components
- src/components/Button.tsx (modified)
- src/components/Button.test.tsx (modified)
📁 Group 2: API Layer
- src/api/client.ts (new)
- src/api/types.ts (modified)
Generate branch name from dominant change pattern:
<type>/<short-description>feature, fix, refactor, docs, test, chorefeature/add-user-auth (from auth-related files)fix/login-validation (from validation changes)refactor/api-cleanup (from API refactoring)Show the proposed branch name and ask for one-word confirmation (or type alternative).
git checkout -b "$branch_name"git add -- path/to/file ...git diff -z --name-only) and pass them as pathspec arguments.<type>: <short description> (max 72 chars)git push -u origin <branch-name>git remote -vmskadu/repo-name)gh pr create with: