一键导入
test
Run the test suite. Use when running tests, checking test results, or when the user asks to test code.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run the test suite. Use when running tests, checking test results, or when the user asks to test code.
用 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.
Create a git commit following project conventions. Use when the user asks to commit changes or create a commit.
Check code quality and formatting. Use when checking code style, running pre-commit checks, or when the user asks to lint or format code.
基于 SOC 职业分类
| name | test |
| description | Run the test suite. Use when running tests, checking test results, or when the user asks to test code. |
| argument-hint | ["test-name or --coverage"] |
| allowed-tools | Bash(cargo *) |
Execute the test suite for olx-tracker.
# Run all tests
cargo test
# Run specific test
cargo test $ARGUMENTS
# Run tests with output
cargo test -- --nocapture
# Run only lib tests (faster)
cargo test --lib
When $ARGUMENTS contains "--coverage" or "coverage", run coverage report:
# Check if tarpaulin is installed, install if needed
which cargo-tarpaulin || cargo install cargo-tarpaulin
# Run coverage
cargo tarpaulin --out Stdout --engine llvm
Current coverage: ~65% overall, with high coverage in core modules:
All 201 tests should pass (as of Jan 2026).
All tests are properly mocked - NO real OLX API calls are made during testing.