用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/DeGrandis/kwfcli --skill kimberton-whole-foods命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | kimberton-whole-foods |
| description | Search for products, check prices, get weekly sales, and store information for Kimberton Whole Foods |
| version | 1.0.0 |
| user-invocable | true |
| slash-command | kimberton |
| metadata | {"openclaw":{"requires":{"bins":["python3","pip"]},"emoji":"🥬","category":"shopping","tags":["kimberton","organic","natural-foods","grocery","pennsylvania"],"network":true},"parameters":{"type":"object","properties":{"action":{"type":"string","enum":["search","details","sales","store-info","image"],"description":"'search' for products, 'details' for specific item, 'sales' for weekly flyer, 'store-info' for hours/location, 'image' for product image URL"},"query":{"type":"string","description":"Product search query (for 'search') or INV code (for 'details') or store location (for 'store-info')"},"image_id":{"type":"string","description":"Image identifier from product images array (for 'image' action, e.g., '1000-140364')"},"fields":{"type":"array","items":{"type":"string"},"description":"Optional array of field names to return from product details. If omitted, returns all fields. Available: id, name, brand, size, scanCode, actualPrice, suggestedPrice, outOfStock, sellOutOfStock, department, departmentId, location, shelfSequence, discontinued, maxQuantity, loyalty, local, hasModifiers, hasLinkedItems, hasRestriction, hasAgeRestriction, cashierApprovalRequired, weightProfile, images, itemGroups"},"store":{"type":"string","enum":["malvern","downingtown","douglassville","kimberton","collegeville","ottsville","wyomissing"],"description":"Store location (optional, user preference should be in USER.md)"}},"required":["action"]},"examples":[{"prompt":"Does Kimberton have peanut butter?","call":"kimberton-whole-foods","args":{"action":"search","query":"peanut butter"}},{"prompt":"What's on sale at Kimberton this week?","call":"kimberton-whole-foods","args":{"action":"sales"}},{"prompt":"What are the Downingtown store hours?","call":"kimberton-whole-foods","args":{"action":"store-info","query":"downingtown"}},{"prompt":"Get details for INV-1000-150551","call":"kimberton-whole-foods","args":{"action":"details","query":"INV-1000-150551"}},{"prompt":"Get only the images and location for INV-1000-150551","call":"kimberton-whole-foods","args":{"action":"details","query":"INV-1000-150551","fields":["images","location","shelfSequence"]}},{"prompt":"Check Kimberton Collegeville store info","call":"kimberton-whole-foods","args":{"action":"store-info","query":"collegeville"}},{"prompt":"Get image URL for product image 1000-140364","call":"kimberton-whole-foods","args":{"action":"image","image_id":"1000-140364"}}]} |
Search for products, check store hours, and get the weekly sales flyer for Kimberton Whole Foods stores across Pennsylvania.
User preference: Check USER.md for preferred store location before making calls.
Search for items in the store.
~/.openclaw/skills/kimberton_whole_foods/kwfcli search <query> [--store <location>] [--json]~/.openclaw/skills/kimberton_whole_foods/kwfcli search organic honey --store downingtownquery, store, totalResults, and products dict (INV codes as keys)Get detailed info for a specific item using its INV code (from search results).
~/.openclaw/skills/kimberton_whole_foods/kwfcli details <INV-CODE> [--store <location>] [--fields <field1> <field2> ...] [--json]~/.openclaw/skills/kimberton_whole_foods/kwfcli details INV-1000-150551 --store collegeville~/.openclaw/skills/kimberton_whole_foods/kwfcli details INV-1000-150551 --fields images location shelfSequenceproductId, store, and details object--fields to return only specific fields, reducing response size for LLMsGet the URL for the current weekly sales flyer image.
~/.openclaw/skills/kimberton_whole_foods/kwfcli salespage_url, image_url, image_alt_textGet hours, address, and phone number for a specific location.
~/.openclaw/skills/kimberton_whole_foods/kwfcli store <location> [--json]~/.openclaw/skills/kimberton_whole_foods/kwfcli store wyomissinglocation, url, hours, holiday_hours, address, phoneGet the direct image URL for a product image identifier (from images array in product details).
~/.openclaw/skills/kimberton_whole_foods/kwfcli image <image-identifier>~/.openclaw/skills/kimberton_whole_foods/kwfcli image 1000-140364https://kimbertonwholefoods.storebyweb.com/api/img/1000-140364Convert image IDs to URLs:
https://kimbertonwholefoods.storebyweb.com/api/img/{image_id}
Example: "image": "1000-141476" → https://kimbertonwholefoods.storebyweb.com/api/img/1000-141476
kwfcli search <query> (returns markdown table by default)kwfcli details INV-XXXX-XXXXXX (returns markdown table by default)kwfcli image <image-id>kwfcli store <location>kwfcli salesNote: All commands output markdown tables by default for easy LLM parsing. Use --json flag to get structured JSON output for programmatic use.
requestsbeautifulsoup4lxml(Install via pip install -r ~/.openclaw/skills/kimberton_whole_foods/requirements.txt)