AgentSkillsCN

yolo

将 Git 仓库中的所有内容添加、提交并推送至远程仓库。

SKILL.md
--- frontmatter
name: yolo
description: Add, commit, and push everything in the git repository.

Add, commit, and push everything in the git repository.

  1. Use git add -A to add all files.
  2. Use git commit -m <message>. The message should use git conventional commits and should be short and sweet. Don't add any co-authoring or make the commit messages super long - messages should be short and sweet.
  3. Use git push to push the changes. If this fails, you are either not in a git repository, in a detached state, the branch is not connected to the upstream, or something else. Investigate the situation, if it is not possible to push do not force it. Explain the issue to the user and do not take action unless told.