원클릭으로
commit-message-helper
Helps write conventional commit messages following Hara Vital standards. Triggers on "commit", "ready to commit", "push".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Helps write conventional commit messages following Hara Vital standards. Triggers on "commit", "ready to commit", "push".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build accessible React components with WCAG 2.1 Level AA compliance for Hara Vital. Use when creating interactive elements, forms, modals, bottom sheets, or any user-facing components. Triggers on "accessibility", "a11y", "ARIA", "keyboard", "focus", "screen reader", "WCAG".
Hara Vital Supabase patterns — service-role client, RLS policies, attribution tokens, event tracking, and PQL billing flow. Triggers on "supabase", "database", "query", "API route", "service role", "RLS", "attribution", "token", "event", "PQL", "billing".
Hara Vital design system knowledge — tokens, liquid-glass patterns, animation easings, and UI conventions. Triggers on "style", "design", "component", "card", "button", "animation", "glass", "token", "color", "shadow", "UI".
Map Hara Vital's Codex commands, including start-session/end-session, audits, bug hunts, feature starts, PR prep, and test scaffolding, so they trigger automatically from chat requests.
Structured workflow for complex tasks requiring deliberate planning, step-by-step execution with pros/cons analysis, and built-in testing. Use when tasks involve multiple interdependent steps, code modifications, file operations, or any work where incremental validation prevents cascading errors. Particularly valuable for debugging, refactoring, system integration, or building complex features. Includes explicit triggers for consistent application across conversations and Codex CLI.
Enforce checking existing code before creating new implementations (USE → IMPROVE → ADD). Triggers on "create component", "add feature", "build", "new component", "new hook".
| name | commit-message-helper |
| description | Helps write conventional commit messages following Hara Vital standards. Triggers on "commit", "ready to commit", "push". |
<type>(<scope>): <description>
[optional body]
[optional footer]
| Type | When to use |
|---|---|
feat | New feature or user-facing change |
fix | Bug fix |
docs | Documentation only |
refactor | Code restructuring (no behavior change) |
style | Formatting, whitespace (no code change) |
test | Adding or updating tests |
chore | Build, tooling, dependencies |
perf | Performance improvement |
revert | Revert previous commit |
Use the area of the codebase affected:
| Scope | Files |
|---|---|
ui | app/components/, app/globals.css |
recommendations | app/r/[tracking_code]/ |
registration | app/profesionales/ |
profile | app/p/[slug]/ |
admin | app/admin/ |
api | app/api/ |
lib | lib/ |
tests | __tests__/ |
feat(recommendations): add swipe hint animation on first visit
fix(registration): validate WhatsApp number requires + prefix
refactor(ui): extract CardSkeleton into separate component
docs: update TODO.md with email feature requirements
chore: add test artifacts to .gitignore
perf(recommendations): lazy load BottomSheet component
feat(registration): add email confirmation on professional signup
Send confirmation email via Resend after successful DB insert.
Email includes review timeline and contact info.
Failures are logged but don't block registration.
Closes #12