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 ページを確認してインストールできます。
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.
SOC 職業分類に基づく
| 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)