원클릭으로
commit
Create a git commit following project conventions. Use when the user asks to commit changes or create a commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a git commit following project conventions. Use when the user asks to commit changes or create a commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Search OLX.pt listings, track prices, and detect deals. Use for finding products, monitoring prices, and getting alerts on good deals in Portugal and other OLX regions.
Create a new filter for the tracker system. Use when adding custom filtering logic or when the user asks to create a filter.
Create a new notification backend (e.g., Telegram, Email, Slack). Use when adding custom notification channels.
Build the olx-tracker project. Use when compiling the project or when the user asks to build.
Check code quality and formatting. Use when checking code style, running pre-commit checks, or when the user asks to lint or format code.
Run olx-tracker CLI commands. Use when executing tracker operations, managing searches, or testing the application.
SOC 직업 분류 기준
| name | commit |
| description | Create a git commit following project conventions. Use when the user asks to commit changes or create a commit. |
| disable-model-invocation | true |
| allowed-tools | Bash(git *) |
Follow the project's git commit conventions to create a well-formed commit.
git status
git diff --stat
git diff
git log --oneline -5 # See recent commit style
Analyze changes and draft a commit message:
feat:, fix:, test:, docs:, refactor:, chore:Stage and commit:
# Stage specific files (preferred over git add -A)
git add <file1> <file2> <file3>
# Create commit with heredoc for proper formatting
git commit -m "$(cat <<'EOF'
<type>: <summary>
<optional detailed body>
EOF
)"
# Verify commit was created
git status
<type>: <short summary in imperative mood>
<optional longer description explaining WHY, not WHAT>
feat: New featurefix: Bug fixtest: Add or update testsdocs: Documentation changesrefactor: Code refactoringchore: Maintenance tasksperf: Performance improvementstest: add comprehensive HTTP mocking tests for API client
- Add 19 new wiremock-based tests for src/api/client.rs
- Improve coverage from 34.1% to 88.9% (+54.8pp)
- Test all search parameters, error handling, and pagination
- All tests properly mocked with NO real API calls
feat: add HTTP server with API key authentication
Add axum-based HTTP API server exposing all CLI functionality.
Includes background daemon support and request timeout config.
--no-verify or skip hooksgit add -A or git add . (add specific files)Use it as the commit summary and follow the same format:
git commit -m "$(cat <<'EOF'
$ARGUMENTS
EOF
)"