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

instacartinstacart 搜索

Agent Skill

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

总安装

8,861

周安装

355

GitHub Stars

公开资料未说明

下载量

2,868
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install instacart

简介

使用 MCP、REST、安全身份验证和启动就绪集成规则构建 Instacart 食谱页面、购物清单和零售商查找。

SKILL.md

name
Instacart
slug
instacart
version
1.0.0
homepage
https://clawic.com/skills/instacart
description
Build Instacart recipe pages, shopping lists, and retailer lookups with MCP, REST, secure auth, and launch-ready integration rules.
changelog
Initial release with MCP, REST, Connect boundary, and API integration playbooks for Instacart.
metadata
{"clawdbot":{"emoji":"IC","requires":{"env":["INSTACART_API_KEY"],"bins":["jq"]},"primaryEnv":"INSTACART_API_KEY","os":["darwin","linux","win32"]}}

Setup

On first use, read setup.md for integration guidelines.

When to Use

User needs Instacart-specific execution rather than generic grocery advice. Activate for shoppable recipe pages, shopping list pages, nearby retailer lookup, MCP-based agent handoff, launch-readiness checks, or API troubleshooting around Instacart Developer Platform.

Architecture

Memory lives in ~/instacart/. See memory-template.md for setup.

~/instacart/
|-- memory.md                # Operating context, activation rules, approved surfaces
|-- url-cache.md             # Payload hashes and generated products_link URLs
|-- retailer-notes.md        # Preferred retailers, geo defaults, and known-good keys
|-- launch-notes.md          # Production approval state and messaging constraints
`-- incidents.md             # Failed requests, root causes, and fixes

Quick Reference

Use the smallest relevant file for the current task.

TopicFile
Setup and activation behaviorsetup.md
Memory schema and status valuesmemory-template.md
Auth, environments, and key modelauth-playbook.md
Core endpoint coverageendpoint-map.md
Request bodies, payload shaping, and curl examplesrequest-patterns.md
MCP server setup and tool limitsmcp-integration.md
Connect and fulfillment boundariesconnect-boundaries.md
Errors, retries, and low-signal matchestroubleshooting.md

Requirements

  • Required secret: INSTACART_API_KEY
  • Required tool for the documented smoke tests: jq
  • Optional tool for MCP Inspector workflows: npx
  • Optional: MCP Inspector for validating MCP connectivity

Never ask the user to paste API keys into chat. Use environment variables or their existing secret manager.

Data Storage

Local notes in ~/instacart/ should store:

  • approved environment and surface selection
  • geo defaults such as country_code and common postal codes
  • known-good payload shapes and normalized line-item conventions
  • generated link cache keyed by normalized content hash
  • production approval status and messaging restrictions

Core Rules

1. Choose the Right Surface Before Sending Traffic

Decide explicitly between:

  • Developer Platform MCP for agent-native create-recipe and create-shopping-list
  • Developer Platform REST for recipe pages, shopping list pages, and nearby retailers with full request control
  • Instacart Connect for branded ecommerce, fulfillment, post-checkout, sandbox callbacks, or retailer workflows

Do not mix these surfaces casually. Wrong routing creates auth failures, wrong expectations, and rework.

2. Lock Environment, Auth, and Scope First

Before any request, confirm:

  • development or production
  • the correct base URL for that environment
  • Authorization: Bearer <API key> for Developer Platform REST
  • whether the API key has the required permission level and endpoint access

Production keys should only be used after the integration has passed Instacart review and is active.

3. Normalize Inputs for Matching, Not Human Prose

Instacart matching is heuristic. For each ingredient or line item:

  • keep name generic and searchable
  • keep brand preferences in filters.brand_filters
  • keep health preferences in filters.health_filters
  • use either product_ids or upcs, never both
  • use supported units and positive quantities only

Do not hide size, brand, dietary intent, and geo assumptions inside one noisy string.

4. Validate Geo and Retailer Context Up Front

For nearby retailer lookup, use postal_code plus country_code.

  • current public docs show US and CA
  • retailer lookup returns organization-level retailer_key, not a specific store id
  • a valid postal code does not guarantee good ingredient coverage

Run retailer lookup before presenting a user-facing link when store relevance matters.

5. Add Client-Side Idempotency

Recipe and shopping-list creation return a fresh products_link_url, and the docs recommend caching until content changes.

  • canonicalize the request payload
  • hash the normalized payload plus environment
  • reuse the stored URL when nothing material changed
  • regenerate only when title, items, instructions, filters, or link settings changed

Do not spam page-creation endpoints for equivalent content.

6. Treat Measurements and Filters as Ranking Inputs

Ordering and correctness matter:

  • for countable items, prefer each
  • if multiple measurements are provided, order them intentionally
  • keep brand and health filters separate from the product name
  • keep brand spelling and health filters exact
  • stay conservative on filter count per item for better matches

Poor units and noisy names are a common cause of missing quantity or weak matches.

7. Respect Launch and Messaging Constraints

Before moving to production:

  • complete development testing
  • pass the pre-launch and approval workflow
  • assume a new production key is non-functional while pending approval
  • keep public messaging and logo usage aligned with Instacart guidelines

Never claim Instacart endorsement, invent brand usage rules, or ship production messaging without checking current guidance.

Common Traps

  • Using Connect when the task only needs a shoppable page -> heavier auth and wrong integration surface
  • Using MCP for retailer lookup -> current MCP toolset does not cover it
  • Mixing product_ids and upcs on the same item -> 400 validation error
  • Repeating the same UPC or product id across multiple items -> duplicate identifier errors
  • Stuffing brands into name instead of brand_filters -> weaker fallback matching
  • Sending unsupported or vague units -> product may match without a useful quantity
  • Treating retailer_key as a specific store record -> bad downstream assumptions
  • Recreating identical pages on every run -> unnecessary link churn and harder attribution
  • Requesting production traffic before approval -> key stays pending and does not function
  • Publishing UI or marketing copy without guideline review -> launch risk and brand rejection

External Endpoints

EndpointData SentPurpose
https://connect.dev.instacart.toolsAPI key header, retailer lookup params, page-creation payloadsDeveloper Platform development REST traffic
https://connect.instacart.comAPI key header, retailer lookup params, page-creation payloadsDeveloper Platform production REST traffic
https://mcp.dev.instacart.tools/mcpAPI key header and tool payloadsDevelopment MCP server for agent testing
https://mcp.instacart.com/mcpAPI key header and tool payloadsProduction MCP server
https://dashboard.instacart.comAccount and API key management trafficCreate keys and review approval state
https://enterprise-servicedesk.instacart.comSupport case metadataEscalate rejected or broken integrations

No other data should be sent externally unless the user explicitly adopts Instacart Connect or additional partner programs.

Security & Privacy

Data that leaves your machine:

  • request bodies for recipe pages and shopping list pages
  • retailer lookup parameters such as postal code and country
  • API key authentication headers
  • optional MCP tool payloads

Data that stays local:

  • caches and operating notes in ~/instacart/
  • request diffs, retry notes, and approved retailer defaults
  • raw secrets if the user stores them in an environment manager

This skill does NOT:

  • request API keys in chat
  • bypass Instacart approval gates
  • imply retailer fulfillment features are available through Developer Platform page APIs
  • send undeclared traffic outside the documented Instacart surfaces

Trust

By using this skill, data is sent to Instacart services and any explicitly configured Connect workflows. Only install and run it if you trust Instacart with the grocery and integration data you send.

Related Skills

Install with clawhub install <slug> if user confirms:

  • api - Build reliable REST request and error-handling patterns
  • auth - Structure credential hygiene and environment separation
  • grocery - Handle grocery-domain planning and item taxonomy
  • webhook - Model callback verification and event-driven workflows
  • workflow - Turn repeated integration steps into clear operating runbooks

Feedback

  • If useful: clawhub star instacart
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.8%
按下载量换算2,203

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills