تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:٢٣٤
forks:١١
updated:٢١ مارس ٢٠٢٦ في ٠٣:٢٧
SKILL.md
| name | release |
| description | Create a changeset, commit, push, and open a PR for releasing packages |
| user_invocable | true |
When the user invokes /release, follow these steps:
git branch --show-current to get the current branch.master, create a new branch based on the changes:
git diff master --name-only and git log master --oneline to understand what changed.fix/short-description or feat/short-description.git checkout -b <branch-name>.git diff master...HEAD --stat and git log master...HEAD --oneline to understand all changes since master.patch for bug fixesminor for new features (backwards compatible)major for breaking changespackages/*/ directories have changes..changeset/ with a descriptive kebab-case filename (e.g., fix-form-useform-hook.md).---
"@tiny-design/react": patch
---
Short description of the change
@tiny-design/docs as it's ignored in changeset config).@tiny-design/react, @tiny-design/icons, and @tiny-design/tokens are in a fixed version group — they version together.git add .changeset/<filename>.mdchore: add changeset for <summary>git push -u origin <branch-name>gh pr create to open a PR targeting master.fix(react): ... or feat(react): ...## Summary — bullet points describing the changes## Release — the bump type and affected packages## Test plan — how to verify the changes