From israel-shopping
Use when the user wants to search AliExpress and **only see results with free shipping to Israel** — applying the validated server-side `filterCode:freeshipping` toggle on the listing page so paid-shipping listings are excluded before scraping. This is the IL-context shorthand for `search-aliexpress` with `filters.freeshipping=true`; it exists as a standalone skill so triggers like "free shipping only" route to the right preset without the caller having to know the param name. Trigger phrases — "free shipping only", "aliexpress free shipping", "no shipping fee aliexpress", "search aliexpress with free delivery to israel", "ship free to il".
How this skill is triggered — by the user, by Claude, or both
Slash command
/israel-shopping:free-shipping-onlyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search AliExpress with the `Free shipping` filter chip pre-applied. Thin preset over `search-aliexpress`.
Search AliExpress with the Free shipping filter chip pre-applied. Thin preset over search-aliexpress.
query (required)search-aliexpress filters can still be passed through: choice, rating4plus, premium, ship_from. They compose with freeshipping=true.max_results (optional, default 20).search-aliexpressfilters.freeshipping = true regardless of caller input.Listing-page chip:
[aria-label="filterCode:freeshipping"]
Click the wrapper <span>, not the inner <input>:
const chip = document.querySelector('[aria-label="filterCode:freeshipping"]');
if (chip.getAttribute('aria-checked') !== 'true') chip.click();
After the click, wait for results to re-render, then assert:
document.querySelector('[aria-label="filterCode:freeshipping"]').getAttribute('aria-checked') === 'true';
If aria-checked is still false, the chip wasn't applied (e.g. zero-result query, captcha, DOM not yet hydrated). Wait once more, retry once, then bail with a clear error.
The freeshipping chip is AliExpress's own server-side flag — it filters to listings where the seller has marked the item as free-shipping to the current ship-to region (here, IL, anchored by region=IL in the aep_usuc_f cookie). It does not:
Mention these caveats once at the top of the result block so the user doesn't conflate "free shipping" with "no other costs".
Same as search-aliexpress, with a header line confirming the filter is active:
Free-shipping filter: ON (verified via aria-checked)
Region: IL (from aep_usuc_f.region)
…rest of standard results block…
Note: "free shipping" = seller-paid carrier to IL. Customs/VAT may still apply
above the IL de minimis (~$75 USD for VAT, $500 USD for duty — verify).
This skill stacks with the others:
exclude-combo-deals → free-shipping, no combo bundles.ship_from=IL → free shipping and dispatched from inside Israel (very fast delivery, but small selection).il-reviews-show (per click-through) → free-shipping listings, filtered to IL reviews on each one.c_tp=ILS, b_locale=iw_IL, region=IL.aria-checked="true" after click.0, which is meaningful — tells the user nothing on AE ships free for this query right now).npx claudepluginhub danielrosehill/claude-code-plugins --plugin israel-shoppingGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.