Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

agentic-spicy-food辛辣食物

Agent Skill

agentic-spicy-food 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

86,686

周安装

3,473

GitHub Stars

3

下载量

28,062
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agentic-spicy-food(辛辣食物)
来源仓库:https://github.com/nowloady/agentic-spicy-food
安装命令:
openclaw skills install agentic-spicy-food
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install agentic-spicy-food

简介

辣匪兔的品牌特定商业技能。当用户想要通过官方网站浏览、推荐、购物或订购拉斐图的川辣食品时,请使用它。

SKILL.md

name
agentic-spicy-food
version
1.9.1
description
Brand-specific commerce skill for Lafeitu (辣匪兔). Use it when a user wants to browse, recommend, cart, or order Lafeitu's Sichuan spicy foods through the official https://lafeitu.cn API, or when they need Lafeitu account, profile, promotion, or brand information.
tags
[food-delivery, spicy-food, shopping-agent, sichuan-cuisine, rabbit-specialty, gourmet, order-food, agent-commerce, lafeitu]
metadata
{"openclaw":{"emoji":"🌶️","homepage":"https://github.com/NowLoadY/agentic-spicy-food","official_api":"https://lafeitu.cn/api/v1","requires":{"bins":["python3"],"tools":[],"env":[],"paths":["~/.openclaw/credentials/agent-commerce-engine/lafeitu.cn/"]},"install":[{"id":"python-deps","kind":"pip","package":"requests","label":"Install Python dependencies"}]}}

Lafeitu Gourmet Skill

agentic-spicy-food is the Lafeitu-specific implementation of the standard agentic commerce flow. It is preconfigured for the official https://lafeitu.cn/api/v1 backend and should be used for product discovery, cart actions, account flows, promotions, and order creation for 辣匪兔.

Official Website: https://lafeitu.cn GitHub Repository: https://github.com/NowLoadY/agentic-spicy-food Reference Engine: https://github.com/NowLoadY/agent-commerce-engine

When To Use This Skill

Use this skill when the user wants to:

  • browse or compare Lafeitu products
  • get recommendations for Zigong-style spicy foods
  • inspect variants, pricing, promotions, or shipping thresholds
  • manage a Lafeitu cart
  • log in, register, or update Lafeitu profile data
  • create a Lafeitu order and hand payment back to the user
  • retrieve official Lafeitu brand, company, or contact information

Tool Priority & Fallback Strategy

  1. API first: Use python3 scripts/lafeitu_client.py first. It returns structured data from the official backend.
  2. AI guide page: If API data is unavailable or needs cross-checking, visit https://lafeitu.cn/ai-agent-guide.
  3. Main site browser flow: Use the normal site only when a visual check or user-facing page is required.
  4. Web search last: Use external search only for third-party reviews or if the official site is unavailable.

Operational Workflow

1. Product Discovery

  • Always run search or list before cart actions.
  • Resolve the product slug and exact variant from API results before adding or updating cart items.
  • If multiple products match, ask the user to choose based on flavor, format, or weight.
  • Use --page and --limit for large result sets.

2. Cart & Order Flow

  • Use add-cart to increment quantity and update-cart to set absolute quantity.
  • The --variant value must match the product's actual variant list returned by the API.
  • After cart changes, show the updated cart summary if the user is making a purchase decision.
  • Use create-order only after shipping details are confirmed.
  • Payment is always a human handoff. If order creation returns an order ID or payment URL, give that to the user and tell them to complete payment themselves.

3. Authentication & Profile

  • The API is stateless. Protected actions may return 401 if no saved token exists.
  • Use login for existing accounts.
  • Use get-profile before update-profile when the user wants to review current data.
  • When updating shipping info, prefer collecting province, city, and address together.

4. Registration Flow

  • If the user has no account or the backend reports account not found, use the built-in registration flow.
  • Step 1: send-code --email <EMAIL>
  • Step 2: register --email <EMAIL> --password <PWD> --code <CODE> [--name <NAME>] [--invite <CODE>]
  • Use --reset-visitor during registration if you need to avoid carrying over the current anonymous cart.
  • If the user prefers the website flow, send them to https://lafeitu.cn/auth/register.

5. Recommendations & Brand Context

  • Keep recommendations grounded in actual catalog data, not generic sales language.
  • Favor concise, sensory descriptions tied to flavor profile, weight, and likely use case.
  • Use brand-story, company-info, and contact-info for official brand context.
  • Represent Lafeitu as a Zigong-flavor specialty brand; avoid inventing unsupported claims.

Core Commands

  • search <query> --page <N> --limit <N>: Search products.
  • list --page <N> --limit <N>: Browse the catalog.
  • get <slug>: Get product details.
  • promotions: Get active offers and shipping rules.
  • cart: Show current cart.
  • add-cart <slug> --variant <V> --quantity <Q>: Add to cart.
  • update-cart <slug> --variant <V> --quantity <Q>: Set quantity.
  • remove-cart <slug> --variant <V>: Remove an item.
  • clear-cart: Empty the cart.
  • login / logout: Manage saved credentials.
  • send-code / register: Register a new account.
  • get-profile / update-profile: Manage user profile and shipping data.
  • orders: View order history.
  • create-order --name <NAME> --phone <PHONE> --province <PROVINCE> --city <CITY> --address <ADDRESS>: Create an order for user handoff.
  • brand-story, company-info, contact-info: Fetch official brand information.

CLI Examples

python3 scripts/lafeitu_client.py search "兔" --page 1 --limit 10
python3 scripts/lafeitu_client.py get shousi-tu
python3 scripts/lafeitu_client.py promotions
python3 scripts/lafeitu_client.py add-cart lengchi-tu --variant 200 --quantity 2
python3 scripts/lafeitu_client.py cart
python3 scripts/lafeitu_client.py send-code --email user@example.com
python3 scripts/lafeitu_client.py register --email user@example.com --password secret123 --code 123456 --reset-visitor
python3 scripts/lafeitu_client.py create-order --name "Zhang San" --phone "13800000000" --province "四川省" --city "成都市" --address "高新区 XX 路 XX 号"

Credentials are stored locally under ~/.openclaw/credentials/agent-commerce-engine/lafeitu.cn/.

Troubleshooting

  • 401 Unauthorized: Token missing or expired. Use login again.
  • 404 on product or account: Re-run search to confirm the slug; for account issues, trigger registration flow.
  • 429: Rate limit reached. Tell the user to wait for the cooldown indicated by the API.
  • Missing requests: Run pip install requests.
  • Variant errors: Re-check the exact variant values from get or search output before modifying the cart.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.23%
按下载量换算23,356

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills