基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill gurkerl命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
| 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":["GURKERL_EMAIL","GURKERL_PASS"],"tags":["grocery","shopping","austria","mcp","rohlik","delivery"]}} |
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.
Set environment variables:
export GURKERL_EMAIL="your@email.com"
export GURKERL_PASS="your-password"
For persistent access, add to ~/.config/systemd/user/clawdbot-gateway.service.d/gurkerl.conf:
[Service]
Environment="GURKERL_EMAIL=your@email.com"
Environment="GURKERL_PASS=your-password"
# Search products (German keywords)
gurkerl search_products '{"keyword":"Milch"}'
gurkerl search_products '{"keyword":"Bio Eier","sort_type":"orderPriceAsc"}'
# 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"}'
| Tool | Description |
|---|---|
search_products | Search by keyword, filters, sort. Use German keywords. |
get_products_details_batch | Get details for multiple product IDs |
get_product_composition | Nutritional info, allergens, ingredients |
get_category_products | Browse products in a category |
get_main_categories | List store categories |
get_brands_navigation | List available brands |
| Tool | Description |
|---|---|
get_cart | View current cart |
add_items_to_cart | Add products: {"items":[{"productId":123,"quantity":1}]} |
update_cart_item | Change quantity: {"product_id":123,"quantity":3} |
remove_cart_item | Remove item: {"product_id":123} |
clear_cart | Empty entire cart |
| Tool | Description |
|---|---|
fetch_orders | Get order history. Params: limit, order_type (delivered/upcoming/both), date_from, date_to |
repeat_order | Reorder: {"order_id":12345678} |
cancel_order | Cancel upcoming order (two-step: first customer_confirmed:false, then true) |
get_alternative_timeslots | Get available delivery times |
change_order_timeslot | Change delivery slot |
| Tool | Description |
|---|---|
search_recipes_by_vector_similarity | Semantic recipe search |
get_recipe_detail | Full recipe with ingredients mapped to products |
generate_recipe_with_ingredients_search | AI-generated recipes with product matches |
get_recipes_navigation | Browse recipe categories |
| Tool | Description |
|---|---|
get_user_info | Account profile |
get_user_credits | Available credits/vouchers |
get_user_addresses | Saved delivery addresses |
get_all_user_favorites | All favorited products |
get_user_shopping_lists_preview | List all shopping lists |
get_user_shopping_list_detail | View list contents |
create_shopping_list | Create new list |
add_products_to_shopping_list | Add product to list |
| Tool | Description |
|---|---|
submit_claim | File warranty claim for missing/damaged items |
get_customer_support_contact_info | Phone, email, WhatsApp |
get_user_reusable_bags_info | Check bag deposit status |
adjust_user_reusable_bags | Correct bag count |
| Tool | Description |
|---|---|
calculate_average_user_order | Generate typical order from history |
get_faq_content | FAQ for: general, xtra_general, xtra_price, baby_club, christmas |
fetch_all_job_listings | Career opportunities |
news (new products), sales (on sale)orderPriceAsc, orderPriceDesc, recommended (default)"include_nutritions":true"include_allergens":true# Check what's on sale
gurkerl search_products '{"filters":[{"filterSlug":"sales","valueSlug":"sales"}]}'
# Add milk to cart
gurkerl search_products '{"keyword":"Milch"}' # Get product ID
gurkerl add_items_to_cart '{"items":[{"productId":MILK_ID,"quantity":2}]}'
# Review cart
gurkerl get_cart
gurkerl fetch_orders '{"limit":1}' # Get order ID
gurkerl repeat_order '{"order_id":ORDER_ID}'
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