بنقرة واحدة
commit
Read this skill before making git commits
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Read this skill before making git commits
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Design and modify Terraform projects safely, with strong state, module, provider, and naming discipline. Use when creating or changing Terraform environments, modules, backends, providers, or plans, especially in AWS and multi-account setups.
Create diagrams. Improve Draw.io / diagrams.net architecture diagrams for readability and presentation quality. Use when editing .drawio files, reviewing exported PNGs, fixing spacing, making text readable in dark mode, simplifying arrow routing, or polishing executive/architecture visuals.
Browser automation using the agent-browser CLI (Chromium via Playwright). Use it to navigate pages, capture snapshots, and interact with elements.
استنادا إلى تصنيف SOC المهني
| name | commit |
| description | Read this skill before making git commits |
Create a git commit for the current changes using a concise Conventional Commits-style subject.
<type>(<scope>): <summary>
type REQUIRED. Use feat for new features, fix for bug fixes. Other common types: docs, refactor, chore, test, perf.scope OPTIONAL. Short noun in parentheses for the affected area (e.g., api, parser, ui).summary REQUIRED. Short, imperative, <= 72 chars, no trailing period.Signed-off-by).git status and git diff to understand the current changes (limit to argument-specified files if provided).git log -n 50 --pretty=format:%s to see commonly used scopes.git commit -m "<subject>" (and -m "<body>" if needed).