# Send Kroger Api.Skill to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "kroger-api-skill",
    "name": "Kroger Api.Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jasonahorn/kroger-api-skill",
    "canonicalUrl": "https://clawhub.ai/jasonahorn/kroger-api-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/kroger-api-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kroger-api-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "grocery-list.txt",
      "scripts/client.py",
      "state.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "kroger-api-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T19:19:06.697Z",
      "expiresAt": "2026-05-11T19:19:06.697Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kroger-api-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kroger-api-skill",
        "contentDisposition": "attachment; filename=\"kroger-api-skill-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "kroger-api-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/kroger-api-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/kroger-api-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/kroger-api-skill",
    "agentUrl": "https://openagent3.xyz/skills/kroger-api-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kroger-api-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kroger-api-skill/agent.md"
  }
}
```
## Documentation

### Overview

Skill for searching Kroger/QFC products, managing cart, checking pickup availability, and creating pickup orders.
Uses official Kroger API. QFC chain ID: 213.

### Setup

Sign up at developer.kroger.com, create app.
Add redirect URI e.g. http://localhost
Scopes: product.compact locations.read fulfillment.readwrite orders.pickup.create
Edit state.json: add client_id, client_secret, chain_id: "213"
OAuth:

python3 scripts/client.py --state state.json oauth-url
Visit URL, login, authorize.
Copy code from redirect (e.g. http://localhost?code=ABC123)
python3 scripts/client.py --state state.json oauth-exchange ABC123

### Usage (via exec)

Run from workspace root:

### Search products

python3 kroger-api.skill/scripts/client.py search \\"milk\\" --chain-id 213 --limit 5

Output: JSON products with id (UPC), attributes.description, attributes.brand etc.

### Find locations

python3 kroger-api.skill/scripts/client.py locations 98101 --chain-id 213

Output: locations with id, attributes.address.addressLine1 etc.

### Cart (local)

python3 kroger-api.skill/scripts/client.py cart-add 0001111101001 2  # UPC qty
python3 kroger-api.skill/scripts/client.py cart-get
python3 kroger-api.skill/scripts/client.py cart-clear

### Check availability

python3 kroger-api.skill/scripts/client.py availability LOC123 --items '[{&quot;upc&quot;:&quot;UPC&quot;,&quot;quantity&quot;:1}]'

### Create order

python3 kroger-api.skill/scripts/client.py order-create LOC123 \\&quot;2026-02-14T10:00:00Z\\&quot; --items '[{&quot;upc&quot;:&quot;UPC&quot;,&quot;quantity&quot;:1}]'

### Grocery list integration

Create grocery-list.txt:

milk
bread
eggs

python3 kroger-api.skill/scripts/client.py grocery --zip 98101

Lists items & locations. Agent: for each item search, pick UPC (e.g. first result), add_to_cart, then availability, order.

### Agent Workflow Example

User: "Add milk and eggs to Kroger cart"
Search "milk", pick UPC1, cart-add
Search "eggs", pick UPC2, cart-add
User: "Find QFC near 98101" → locations
Set location-set LOC
cart-get → items
availability → pick slot
order-create with slot time.

### State

state.json: tokens, cart, location_id.

### Notes

Endpoints based on Kroger API docs. Verify at developer.kroger.com/reference
UPC from products.id
Pickup datetime: ISO 8601 UTC
Errors: check API response
Token auto-refreshes.

Package as kroger-api.skill/
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jasonahorn
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T19:19:06.697Z
- Expires at: 2026-05-11T19:19:06.697Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/kroger-api-skill)
- [Send to Agent page](https://openagent3.xyz/skills/kroger-api-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/kroger-api-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/kroger-api-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/kroger-api-skill)