Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

gurkerlgurkerl 搜索

Agent Skill

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

总安装

63,844

周安装

2,608

GitHub Stars

3

下载量

20,655
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install gurkerl

简介

Gurkerl.at 通过 MCP 进行杂货购物 - 搜索产品、管理购物车、订单、食谱、收藏夹。

SKILL.md

name
gurkerl
description
Gurkerl.at grocery shopping via MCP - search products, manage cart, orders, recipes, favorites.
homepage
https://www.gurkerl.at/seite/mcp-server
metadata
clawdbot
emoji
🥒
requires
bins
["curl", "jq"]
env
tags

Gurkerl.at MCP Skill

Austrian grocery delivery service (part of Rohlik Group). Search products, manage your cart, view orders, browse recipes, and more.

Note: This skill uses Gurkerl's official MCP server. The same approach works for other Rohlik Group brands (Rohlik.cz, Knuspr.de, Kifli.hu) — just change the MCP URL in the script.

Setup

Set environment variables:

export GURKERL_EMAIL="your@email.com"
export GURKERL_PASS="your-password"

For persistent access, add to ~/.config/systemd/user/openclaw-gateway.service.d/gurkerl.conf:

[Service]
Environment="GURKERL_EMAIL=your@email.com"
Environment="GURKERL_PASS=your-password"

CLI Usage

# Search products (German keywords) — use batch_search_products with queries array
gurkerl batch_search_products '{"queries":[{"keyword":"Milch"}]}'
gurkerl batch_search_products '{"queries":[{"keyword":"Bio Eier","sort_type":"orderPriceAsc"}]}'

# Search multiple products at once (more efficient)
gurkerl batch_search_products '{"queries":[{"keyword":"Milch"},{"keyword":"Brot"},{"keyword":"Eier"}]}'

# Get cart
gurkerl get_cart

# Add to cart
gurkerl add_items_to_cart '{"items":[{"productId":1234567,"quantity":2}]}'

# View orders
gurkerl fetch_orders '{"limit":3}'
gurkerl fetch_orders '{"order_type":"upcoming"}'

# Search recipes
gurkerl search_recipes_by_vector_similarity '{"query":"vegetarisch schnell"}'

Available Tools

Products & Search

ToolDescription
batch_search_productsSearch by keyword(s). Takes {"queries":[{"keyword":"..."}]}. Each query can include sort_type, filters. Use German keywords.
get_products_details_batchGet details for multiple product IDs
get_products_composition_batchNutritional info, allergens, ingredients for multiple products

Cart

ToolDescription
get_cartView current cart
add_items_to_cartAdd products: {"items":[{"productId":123,"quantity":1}]}
update_cart_itemChange quantity: {"product_id":123,"quantity":3}
remove_cart_itemRemove item: {"product_id":123}
clear_cartEmpty entire cart

Checkout

ToolDescription
get_checkoutView checkout state
get_timeslots_checkoutAvailable delivery timeslots
change_timeslot_checkoutSelect a delivery timeslot
change_checkout_packagingChange packaging options
update_payment_method_checkoutChange payment method
submit_checkoutSubmit the order

Orders

ToolDescription
fetch_ordersGet order history. Params: limit, order_type (delivered/upcoming/both), date_from, date_to
repeat_orderReorder: {"order_id":12345678}
cancel_orderCancel upcoming order (two-step: first customer_confirmed:false, then true)
get_alternative_timeslotsGet available delivery times for existing order
change_order_timeslotChange delivery slot for existing order
remove_order_itemsRemove items from an upcoming order

Recipes

ToolDescription
search_recipes_by_vector_similaritySemantic recipe search
get_recipe_detailFull recipe with ingredients mapped to products
generate_recipe_with_ingredients_searchAI-generated recipes with product matches

User & Favorites

ToolDescription
get_user_infoAccount profile
get_user_creditsAvailable credits/vouchers
get_all_user_favoritesAll favorited products
get_user_shopping_lists_previewList all shopping lists
get_user_shopping_list_detailView list contents
create_shopping_listCreate new list
add_products_to_shopping_listAdd products to a list
remove_products_from_shopping_listRemove products from a list
delete_shopping_listDelete a shopping list

Customer Care

ToolDescription
submit_claimFile warranty claim for missing/damaged items
submit_credit_compensationRequest credit compensation
get_customer_support_contact_infoPhone, email, WhatsApp
get_user_reusable_bags_infoCheck bag deposit status
adjust_user_reusable_bagsCorrect bag count
credit_customer_returnablesCredit returnable deposits
get_customer_care_workflow_promptInternal workflow guidance

Analytics & Other

ToolDescription
calculate_average_user_orderGenerate typical order from history
analyze_spendingSpending analysis and insights
add_feedbackSubmit product/service feedback
add_karma_ratingRate delivery/service
get_faq_contentFAQ for: general, xtra_general, xtra_price, baby_club, christmas
get_url_contentFetch content from a URL
email_support_on_user_behalfSend support email
fetch_all_job_listingsCareer opportunities

Search Tips

  • Use German keywords for Austrian Gurkerl: "Milch", "Brot", "Eier", "Käse"
  • Batch multiple searches in one call for efficiency: {"queries":[{"keyword":"A"},{"keyword":"B"}]}
  • Each query object supports: keyword, sort_type, filters
  • Sort: orderPriceAsc, orderPriceDesc, recommended (default)
  • Filters available: news (new products), sales (on sale)
  • Include nutrition/allergens via get_products_composition_batch after getting product IDs

Example Workflows

Weekly Shopping

# Search multiple items at once
gurkerl batch_search_products '{"queries":[{"keyword":"Milch"},{"keyword":"Brot"},{"keyword":"Eier"}]}'

# Add to cart
gurkerl add_items_to_cart '{"items":[{"productId":MILK_ID,"quantity":2},{"productId":BREAD_ID,"quantity":1}]}'

# Review cart
gurkerl get_cart

Reorder Last Order

gurkerl fetch_orders '{"limit":1}'  # Get order ID
gurkerl repeat_order '{"order_id":ORDER_ID}'

Find Recipe & Add Ingredients

gurkerl search_recipes_by_vector_similarity '{"query":"schnelles Abendessen"}'
gurkerl get_recipe_detail '{"recipe_id":RECIPE_ID,"include_product_mapping":true}'
# Add matched products to cart

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.64%
按下载量换算16,450

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills