add-filter

Implement custom OLX listing filters with the Filter trait in Rust.

6|2|Updated Jan 30, 2026
One-click install
npx skills add https://github.com/nikuscs/olx-tracker --skill add-filter
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-filter
Source: https://github.com/nikuscs/olx-tracker/tree/main/.claude/skills/add-filter
Command: npx skills add https://github.com/nikuscs/olx-tracker --skill add-filter

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Create a new filter for the olx-tracker filtering system.

Core Features & Use Cases

  • Implement the Filter trait to design custom include/exclude logic for listings.
  • Export your filter in the module system and incorporate it into the default FilterChain for automatic application.
  • Extend testing coverage by adding unit tests to verify filter behavior across scenarios.

Quick Start

Create a new filter file under src/filters, export it in src/filters/mod.rs, and wire it into FilterChain::with_defaults() to activate it.

Frequently Asked Questions about add-filter

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a custom filter for OLX tracker listings in Rust?

Creating custom filters for the OLX tracker involves implementing the Filter trait to define include or exclude logic, exporting the module, and wiring it into FilterChain::with_defaults() for automatic application to listings.

What is the Filter trait used for in the OLX tracker system?

The Filter trait in the OLX tracker system is used to design custom include and exclude logic for listings, allowing users to tailor which results are included and which trigger alerts.

How do I integrate a new filter into the default FilterChain?

You integrate a new filter into the default FilterChain by creating a filter file under src/filters, exporting it in src/filters/mod.rs, and adding it to FilterChain::with_defaults() to activate it.

Does adding a custom OLX filter require writing unit tests?

Adding a custom OLX filter requires writing unit tests to ensure stable behavior. The implementation should include test coverage verifying filter behavior across 2-3 typical use cases.

Can I use this filter logic to customize OLX alert triggers?

Yes, you can use this filter logic to customize OLX alert triggers. The custom filters allow you to tailor which listings are included in results and alerts by applying specific include and exclude conditions.