在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用git-workflow
星标5
分支2
更新时间2026年7月18日 16:43
Git commit conventions and workflow
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Git commit conventions and workflow
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guide for breaking features into atomic, implementable tasks
TDD workflow and testing patterns
Author safe RalphX Agent Workflow scripts that orchestrate durable delegated agents through the high-level workflow API.
Guide for analyzing git diff and refining QA test plans
Guide for generating QA test steps with agent-browser commands
Narrow RalphX Agent Workspace bridge playbook for workflow events delivered into an existing Agent Workspace conversation.
| name | git-workflow |
| description | Git commit conventions and workflow |
| disable-model-invocation | true |
| user-invocable | false |
<type>: <description>
[optional body]
[optional footer]
feat: New featurefix: Bug fixrefactor: Code change that neither fixes a bug nor adds a featuretest: Adding or updating testsdocs: Documentation only changeschore: Changes to build process or auxiliary toolsstyle: Formatting, missing semi-colons, etc.feat: add user authentication
fix: resolve race condition in task loading
refactor: extract validation logic to separate module
test: add integration tests for API endpoints
docs: update README with setup instructions
chore: update dependencies
git diffgit add <files># View changes
git status
git diff
git diff --staged
# Stage changes
git add <file> # Specific file
git add -p # Interactive staging (avoid -A)
# Commit
git commit -m "type: description"
# View history
git log --oneline -10
git log --stat -3
git add -A blindly