# Send Ecommerce 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": "ecommerce",
    "name": "Ecommerce",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/ecommerce",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/ecommerce",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ecommerce",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ecommerce",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "code-traps.md",
      "growth.md",
      "operations.md",
      "platforms.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ecommerce",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T00:32:31.697Z",
      "expiresAt": "2026-05-07T00:32:31.697Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ecommerce",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ecommerce",
        "contentDisposition": "attachment; filename=\"ecommerce-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ecommerce"
      },
      "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/ecommerce"
    },
    "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/ecommerce",
    "downloadUrl": "https://openagent3.xyz/downloads/ecommerce",
    "agentUrl": "https://openagent3.xyz/skills/ecommerce/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ecommerce/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ecommerce/agent.md"
  }
}
```
## Documentation

### Quick Reference

TopicFileCode traps that break productioncode-traps.mdPlatform comparison (costs, features)platforms.mdOperations (stock, shipping, returns)operations.mdGrowth (CRO, upsells, LTV, benchmarks)growth.md

### Critical Code Traps

These break production and cost real money. See code-traps.md for full patterns.

Payment idempotency — Store payment_intent_id, check before processing. Webhooks retry.
Inventory race conditions — UPDATE ... WHERE stock > 0 with rowsAffected check, not read-then-write.
Frontend price trust — Backend recalculates everything. Never trust client totals.
Webhook signatures — Verify stripe-signature or equivalent. Reject unsigned requests.
Stock validation timing — Verify at payment moment, not just add-to-cart.

### When Building Stores

Calculate ALL prices server-side — discounts, shipping, taxes, totals
Queue transactional emails — never inline in checkout flow
Add structured data (Schema.org Product) and canonical URLs from day one
Implement webhook signature verification before going live

### When Operating Stores

Monitor stock thresholds, not just zero — alert at reorder point
Track orders stuck in "processing" >24h — detect before customer complains
Log payment failures with context — card decline reasons matter for recovery

### When Optimizing

Checkout recovery: 1h, 24h, 72h sequence — discount on email 3, not 1
Free shipping threshold: current AOV + 20-30%
Mobile: sticky add-to-cart, Apple Pay/Google Pay, LCP <2.5s

### Platform Decision Tree

Budget <€500/mo, <100 SKUs: Shopify Basic or WooCommerce self-hosted
Multi-marketplace: Dedicated sync tool (not manual updates)
>1000 SKUs or ERP: WooCommerce/custom with PIM integration

For Spain-specific costs (IVA, OSS, carriers), see platforms.md.

### Scope

This skill helps with:

Store architecture and payment integration
Inventory and order management logic
Marketplace listing optimization
Conversion rate tactics with benchmarks
Legal/fiscal guidance for EU/Spain ecommerce

This skill does NOT:

Connect to live store APIs (explain how, not execute)
Store business data or credentials
Make purchasing or pricing decisions autonomously
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- 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-04-30T00:32:31.697Z
- Expires at: 2026-05-07T00:32:31.697Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ecommerce)
- [Send to Agent page](https://openagent3.xyz/skills/ecommerce/agent)
- [JSON manifest](https://openagent3.xyz/skills/ecommerce/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ecommerce/agent.md)
- [Download page](https://openagent3.xyz/downloads/ecommerce)