بنقرة واحدة
branch
Create a temporary working branch from main. Use when starting a new task or fix.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create a temporary working branch from main. Use when starting a new task or fix.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Bump the package version in pubspec.yaml and add a CHANGELOG entry. Defaults to patch bump.
Run code quality checks — format, test, and analyze. Use when asked to check, lint, format, or test the codebase.
Stage and commit changes with an auto-generated message. Use when asked to commit current changes.
Publish the package to pub.dev. Runs dry-run first, then publishes on confirmation.
Run the example app on physical devices. Requires .claude/.env with device IDs. Use when asked to run on devices.
Ship the current branch — push, squash-merge to main via PR, tag, and clean up. Use when ready to merge and release.
| name | branch |
| description | Create a temporary working branch from main. Use when starting a new task or fix. |
| argument-hint | ["description of upcoming work"] |
Create a temporary working branch for a new task.
git checkout main && git pull to ensure main is up to date.$ARGUMENTS describes the work, derive a short kebab-case branch name from it (e.g., "fix android build" → fix-android-build).$ARGUMENTS is empty, default to tmp-fixes.git checkout -b <branch-name>.