بنقرة واحدة
commit
Generate a Conventional Commits message and commit staged changes. Use when the user asks to commit changes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate a Conventional Commits message and commit staged changes. Use when the user asks to commit changes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Interact with Jira and Confluence. Use the Atlassian MCP server tools when available, otherwise fall back to the jira CLI.
Goal-driven execution. Breaks a task into phases with verification, parallelizes via subagents, and iterates until the outcome is achieved. Triggers: 'go-do', 'goal-driven', 'achieve this', 'make it so'.
Do work in an isolated git worktree instead of switching branches. Use when creating a branch and opening a PR so the user's working directory is never disturbed. Triggers: 'create a branch', 'open a PR', 'make a change on a new branch'.
Record a demo of a web application or terminal session. Uses Playwright for browser recordings and VHS for terminal recordings. Offers to attach the resulting GIF/video as a PR comment.
Start an interactive questionnaire when there are more than 5 options or bullet points that need to be addressed. Uses the ask_user tool to walk through selections interactively instead of dumping a wall of text.
Code review mode. Read and analyze code, PRs, and issues. All GitHub write operations are prohibited.
| name | commit |
| description | Generate a Conventional Commits message and commit staged changes. Use when the user asks to commit changes. |
| disable-model-invocation | true |
| allowed-tools | Bash |
Generate a git commit message and commit the changes.
git diff --staged -- . ':(exclude)*lock*' ':(exclude)*.lock'
to see staged changes. If nothing is staged, run
git diff -- . ':(exclude)*lock*' ':(exclude)*.lock' instead.git commit -m "<message>".
If the commit fails due to a GPG signing error, retry with
git commit --no-gpg-sign -m "<message>".git push.