一键导入
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 页面并帮你完成安装。
基于 SOC 职业分类
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.
| 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
)"