commit
Create a git commit following project conventions. Use when asked to commit changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a git commit following project conventions. Use when asked to commit changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a complete CRUD or read-only list page in the Angular portal with service, routing, and menu integration. Use when adding a new feature page to the portal.
Regenerate TypeScript types from the backend OpenAPI spec for the portal. Use after adding or changing backend API endpoints, DTOs, or response shapes.
Add a new notification provider (email, SMS, WhatsApp, push, voice) to the OsmoX API with service, consumer, queue wiring, and master provider seed.
Run lint, format, and build checks across the monorepo. Use when asked to check code quality, fix lint errors, or verify the build passes.
Create, run, or revert TypeORM database migrations. Use when modifying entities, adding columns, creating tables, or troubleshooting database schema issues.
Sync source markdown docs to the Mintlify documentation site. Use when source docs in apps/api/docs/ are added or updated, or when creating new docs-site pages.
| name | commit |
| description | Create a git commit following project conventions. Use when asked to commit changes. |
| argument-hint | [optional commit message override] |
| allowed-tools | Bash, Read, Grep |
Create git commits following the Conventional Commits specification.
<type>[optional scope]: <description>
[optional body]
Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore
Scope: api, portal, or omit for cross-cutting changes that span both apps as part of the same feature
Description (first line):
Body (optional, after blank line):
Forbidden:
Co-Authored-By, Signed-off-by, or AI attribution lines — everExamples:
feat(api): add WhatsApp provider support
fix(portal): prevent duplicate form submission on login
refactor(api): extract org resolution into shared utility
feat: add SUPER_ADMIN org context switching across all controllers and portal
feat(api): add provider chain CRUD endpoints
Adds create, update, soft-delete, and restore endpoints
for provider chain members with org-scoped access control.
git status and git diff --stat to review all changes$ARGUMENTS is provided, use it as the commit message (still validate format)git add -A)
c. Commit using a HEREDOC:
git commit -m "$(cat <<'EOF'
<type>(<scope>): <description>
EOF
)"
git status to verify success--no-verify)