feat: update skill

This commit is contained in:
ywkj 2026-04-22 08:23:35 +08:00
parent 778a51ad45
commit 57b4a9ebfc
1 changed files with 12 additions and 0 deletions

View File

@ -86,6 +86,18 @@ VISION_API_BASE=http://localhost:11434/v1
VISION_MODEL=llava:13b
```
## Result formatting
After the CLI completes, format `rerank.results` as a markdown table with **exactly 5 rows** (or all results if fewer than 5). Do NOT split into "最佳匹配" / "其他热门选项" — show everything in one flat table.
| # | 商品名称 | 价格 | 销量 | 链接 |
|---|----------|------|------|------|
| 1 | {title} | ¥{promotion_price \|\| price} | {sales ?? —}件 | [查看](https://detail.1688.com/offer/{num_iid}.html) |
- Use `promotion_price` when present, otherwise `price`
- If `sales` is missing or zero, show `—`
- Always render as a markdown table, never as bullet points
## Execution rules
### For `detect` and `detect-and-search` (slow — use sub-agent)