Xianyu Search Skill (xianyu-hub)
Core Principle
In a browser tab where the user is already logged in to Xianyu, call Xianyu's internal API through minis-browser-use execute_js.
The user must first log in to Xianyu in the built-in browser.
Startup Process (run before each use)
All scripts automatically call ensure_tab.sh to complete the following steps, so there is no need to manually pass --tab-id.
ensure_tab.sh Automatic Processing Logic
- Scan all tabs - Parse the
list_tabstext and look for a tab containinggoofish.com - Check login state - Execute JS to determine whether the current page is logged in
- Logged in -> Directly output
tab_id, and the script continues - Not logged in -> Automatically execute:
navigateto the Xianyu home pageminis-opento open the built-in browser for the user to log in- Poll the login state every 5 seconds, for up to 120 seconds; after login succeeds, automatically continue
To manually specify a tab, pass
--tab-id <id>; the script will still verify the login state.
Script Overview
All scripts are located in /var/minis/skills/xianyu-hub/scripts/ and are run with sh.
1. Search Items - search.sh
sh scripts/search.sh -k <keyword> [options]
# Options:
# -k <term> Keyword (required)
# -n <number> Number per page (default 20, maximum 30)
# -p <page> Page number (default 1)
# -s <sort> default | price_asc | price_desc | time | reduce
# --min-price <yuan> Minimum price
# --max-price <yuan> Maximum price
# --city <city> City filter
# --personal-only Personal idle items only
# -j Output JSON
# Examples
sh scripts/search.sh -k "MacBook Air" -s price_asc --min-price 2000 -n 10
sh scripts/search.sh -k "iPhone15" --city Shanghai -s time
2. Item Details - detail.sh
sh scripts/detail.sh <itemID>
# Returns: title, price, description, views/wants/favorites count, seller information (positive feedback rate, response rate, number sold)
3. Favorites Management - favorites.sh
sh scripts/favorites.sh list [-n quantity] [-p page] # View favorites list
sh scripts/favorites.sh add <itemID> # Add item to favorites
sh scripts/favorites.sh remove <itemID> # Remove item from favorites
4. Order Lookup - orders.sh
sh scripts/orders.sh [-n quantity] [-p page] [-t type]
# Type: all | wait_pay | wait_send | wait_receive | refund
5. My Listed Items - my_items.sh
sh scripts/my_items.sh [-n quantity] [-p page]
🔎 Keyword Enhancement Module
When direct search results are empty or very few (< 3 results), automatically enable keyword enhancement; do not give up right away.
Core Mechanism
Some items on the platform are described with different terms, and sellers often use common industry abbreviations, alternative names, or shortened forms. This module uses the open API from SearchSharp.com to automatically retrieve a list of commonly used aliases for the item across all platforms (crowdsourced by the user community and sorted by popularity), then retries the search with each one to improve the hit rate.
6. Smart Keyword Search - smart_search.sh ⭐ Recommended
Preferred when results are insufficient. Automatically completes: direct search -> add aliases -> retry
sh scripts/smart_search.sh -k <keyword> [other search.sh parameters]
# Examples
sh scripts/smart_search.sh -k "GTA"
sh scripts/smart_search.sh -k "Netflix membership" --max-price 50
sh scripts/smart_search.sh -k "gpt plus"
Execution flow:
- Search Xianyu once with the original keyword
- If there are fewer than 3 results, call the SearchSharp API to look up common aliases for the term
- Sort by community popularity and retry the search with each alias one by one (up to 3)
- Output all results
7. Alias Lookup - alt_keywords.sh
Only queries keyword aliases and does not search Xianyu. Used to understand common names for a specific item
# Look up common aliases for a term
sh scripts/alt_keywords.sh -q <keyword>
# List popular item alias summaries (about 20 entries)
sh scripts/alt_keywords.sh --list
# Look up all aliases for an item (using an ID found in the --list results)
sh scripts/alt_keywords.sh --id <itemID>
# JSON output
sh scripts/alt_keywords.sh -q "gpt" -j
Usage Rules
| Situation | Action |
|---|---|
| 3 or more search results | Display directly; no enhancement required |
| Fewer than 3 search results | Automatically run smart_search.sh to add aliases and retry |
SearchSharp API
| Endpoint | Description |
|---|---|
GET /api/products |
Popular item list |
GET /api/products?q=<term> |
Look up items and aliases by keyword |
GET /api/products/<id> |
Complete alias list for a single item |
- No authentication required; call directly with
curl - The
keywordsarray is sorted by net community votes; the higher the popularity, the higher the ranking
Open Item
apple-open "fleamarket://item?id=<itemID>" # Open in the Xianyu app
Use this Markdown link in conversations: [Open in the Xianyu app](fleamarket://item?id=xxx)
URL Rules
| Purpose | Format |
|---|---|
| Web page | https://www.goofish.com/item?id=<id> |
| APP | fleamarket://item?id=<id> |
| Order | fleamarket://order_detail?id=<orderId> |
Notes
- The
price_ascsort may return low-quality low-price data from the server; use it together with--min-pricefiltering - City and price range filters are applied on the client side
--personal-onlyis determined by review count (>10 reviews is treated as a store), so it is not perfectly accurate- It is normal for searches to return empty results when sensitive terms are blocked by the platform
ensure_tab.shdepends on the text format returned bylist_tabs(Tab N: Title — URL); if the format changes, the parsing logic must be updated accordingly- When not logged in,
ensure_tab.shautomatically polls and waits; no manual login confirmation is required. The script blocks during the wait (up to 120 seconds)