UCP Checker
Back to status
abouche3le.com icon
UCP Score

UCP Score for abouche3le.com

UCP conformance score, top priorities, impact & effort matrix, and copy-paste fixes for every issue.

Verified
A96/100
Analyzed Sep 18, 2026 · 2 recommendations ·Shopify · v2026-08-25 latest
96
/ 100
UCP Conformance Score
A

abouche3le.com is conforming and ready for agent discovery and checkout.

Agent Discovery95
UCP Conformance93
Capability Coverage100
Biggest blockers
Publish keys at the manifest root
Working

Capability Coverage is solid (100/100).

Blocking

Publish keys at the manifest root — Agents have nothing to verify your responses against.

Start Here

Publish keys at the manifest root → Publish Organization schema (JSON-LD) on the homepage

Verified

abouche3le.com is agent-ready but has minor schema warnings.

Latency
184ms
Version
2026-08-25
Robots.txt
Allowed ✅

Top Priorities

1
Publish keys at the manifest root

Agents have nothing to verify your responses against.

High impact Medium effort
2
Publish Organization schema (JSON-LD) on the homepage

No Organization-typed JSON-LD detected on your homepage.

Medium impact Medium effort

Impact & Effort Matrix

Prioritised recommendations by expected impact and implementation effort

Quick Wins(0)

High impact, low effort

  • No items
Strategic Investments(1)

High impact, high effort

  • Publish keys at the manifest root
Incremental Gains(1)

Medium impact & effort

  • Publish Organization schema (JSON-LD) on the homepage
Consider Later(0)

Lower priority

  • No items

How you compare on Shopify

Response time benchmarked against 10,580 Shopifies we monitor.

fastShopify median 156msslow
Your store
184ms
Shopify percentile
Bottom quartile
Faster than 15% of Shopify stores
Cohort range
144–171ms
p25 to p75 (middle half)

Recommendations

All improvements ranked by priority, with evidence and actionable fixes.

1

Publish keys at the manifest root

High impact Medium effort

Agents have nothing to verify your responses against.

Why it matters

Signing keys let agents cryptographically verify checkout responses came from you, not a man-in-the-middle. Tokenized payment flows in v2026-04-08+ require them. Since 2026-07-12 the spec's canonical field is a root-level RFC 7517 "keys" array (the legacy "signing_keys" field was removed from the profile schema; we accept both during the migration). Stores using checkout-link redirects (e.g. WooCommerce) often skip this safely.

Show fix

Generate an Ed25519 keypair, publish the public key as a JWK in a root-level "keys" array (the canonical field since spec PR #566; "signing_keys" is legacy). Rotate annually; keep "kid" stable across rotations of the same key.

{
  "keys": [
    {
      "kty": "OKP",
      "crv": "Ed25519",
      "x": "<base64url-encoded-public-key>",
      "kid": "key-2026-04",
      "alg": "EdDSA"
    }
  ],
  "ucp": { ... }
}
UCP_MISSING_SIGNING_KEYS
2

Publish Organization schema (JSON-LD) on the homepage

Medium impact Medium effort

No Organization-typed JSON-LD detected on your homepage.

Why it matters

Organization schema gives agents a structured representation of your brand identity — name, logo, social profiles, contact info, founding date. Agents use this to verify you are who you claim to be and to link your manifest data to a recognizable entity.

Show fix

Drop into <head> or end of <body>. Use OnlineStore (more specific) when the entire site is an ecommerce store; Organization is the generic fallback.

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "OnlineStore",
  "name": "Yourstore",
  "url": "https://yourstore.com",
  "logo": "https://yourstore.com/logo.png",
  "sameAs": [
    "https://twitter.com/yourstore",
    "https://www.instagram.com/yourstore"
  ],
  "contactPoint": {
    "@type": "ContactPoint",
    "telephone": "+1-800-000-0000",
    "contactType": "Customer Service"
  }
}
</script>
UCP_MISSING_ORG_SCHEMA

Full Check Breakdown

Every signal we evaluate, grouped by category.

Functional probes ran Sep 11, 2026. Transport and URL resolution rows may be stale. Run a fresh check to re-probe.
Agent Discovery7/8 passed

Can AI agents find your store and its UCP manifest?

  • HTTPSCore

    Manifest served over a secure connection.

    Manifest URL uses https://

    Why it matters

    Agents reject non-HTTPS endpoints outright. Signed payloads over HTTP are meaningless because the channel itself is tamperable.

  • UCP manifest reachableCore

    Manifest fetched OK from /.well-known/ucp.

    HTTP 200

    Why it matters

    Agents start every session by fetching this URL. If it 404s or times out, the store is invisible to agent commerce.

  • AI bot accessCore

    robots.txt allows agent crawlers to fetch the manifest.

    robots.txt allows /.well-known/ucp

    Why it matters

    Agents respect robots.txt. Even a published manifest gets ignored if the file is disallowed for known agent user-agents.

  • llms.txtExperimental

    Hand-written brief at /llms.txt for AI agents.

    Found at /llms.txt

    Why it matters

    Emerging convention (analogous to robots.txt). Recommendation/discovery agents read it for brand context, return policy, and crawl preferences.

  • sitemap.xmlCore

    XML sitemap published at /sitemap.xml.

    Found at /sitemap.xml

    Why it matters

    Tells agents which pages are canonical and how often they change. Without it, agents fall back to following internal links.

  • Open Graph tagsCore

    OG meta tags on the homepage.

    og:title and og:type/url present

    Why it matters

    OG tags drive how your store unfurls in agent surfaces, Slack, iMessage, and ChatGPT shares.

  • Organization schema (JSON-LD)Core

    Schema.org Organization (or OnlineStore) JSON-LD on homepage.

    Missing or incomplete on homepage

    Why it matters

    Gives agents a structured representation of your brand identity — used to verify you are who your manifest claims you are.

  • Mobile viewport metaCore

    Viewport meta tag for mobile rendering.

    <meta name="viewport"> present

    Why it matters

    Mobile agent sessions render in browser sandboxes that respect this. Without it, screenshots taken by agents are unreadable.

UCP Conformance4/5 passed

Does your manifest meet the published spec?

  • Manifest passes schema validationCore

    Manifest structure conforms to the published UCP spec.

    No structural errors

    Why it matters

    Strict UCP agents reject manifests with structural errors. The error code in the diagnostic shows which field failed.

  • Spec version present and well-formedCore

    ucp.version follows YYYY-MM-DD format.

    Version: 2026-08-25

    Why it matters

    UCP versions are dates, not semver. Agents pick the closest matching schema based on this string.

  • Signing keys publishedCore

    Root-level keys array (canonical since 2026-07-12; legacy signing_keys also accepted) for response verification.

    No signing_keys at root (common for managed/redirect-checkout stores)

    Why it matters

    Required for tokenized payment flows in v2026-04-08+. Stores using checkout-link redirects (e.g. WooCommerce native) often skip this safely.

  • Validation warnings clearCore

    Manifest passes structural and field-level rules.

    No outstanding validation issues

    Why it matters

    Each warning is a strict-spec deviation — the recommendations section above lists them with copy-code fixes.

  • Spec & schema URLs resolve (23)Core

    Resolves the 23 spec/schema URLs declared across the manifest to confirm agents can fetch each one.

    All 23 URLs resolved.

    Why it matters

    Spec and schema URLs let agents validate request/response shapes before sending. Broken URLs degrade runtime validation to "best effort" and cause strict agents to refuse the capability entirely.

Capability Coverage5/5 passed

What operations can agents actually perform?

  • Capabilities declaredCore

    Number of agent-readable capabilities under ucp.capabilities.

    5 capabilities detected

    Why it matters

    Capabilities tell agents what operations to attempt. More coverage = more sessions complete end-to-end without falling back to scraping.

  • Checkout capabilityCore

    Store declares a checkout-namespaced capability.

    dev.ucp.shopping.checkout detected

    Why it matters

    Without a checkout capability, agents can browse but can't complete a purchase end-to-end.

  • Transports declaredInterop

    Service transports (REST/MCP/A2A/Embedded) declared on services.

    MCP, EMBEDDED

    Why it matters

    Transports tell agents how to actually call your endpoints. MCP and REST are the most widely supported today.

  • Payment handlersCore

    Tokenized payment handlers registered for in-conversation checkout.

    2 handlers registered

    Why it matters

    Tokenized payment lets agents complete purchases without redirecting the buyer to a hosted checkout. Empty by design is valid for WooCommerce-style native checkouts.

  • MCP transport reachableInterop

    Live reachability check against https://nmwpe0-bv.myshopify.com/api/ucp/mcp.

    tools/list returned a JSON-RPC response in 161ms

    Why it matters

    A declared transport that does not respond means agents will hit a dead end the moment they try to use the capability — even if the manifest itself looks perfect.

/llms.txt content

The plain-text brief this store publishes to AI agents. Captured on the most recent check.

4.1 KB93c39573a9074ca6
# Abouche3le

> Abouche3le is a premier Lebanon-based retailer specializing in home heating, outdoor cooking, climate control, and industrial hardware equipment. Products include wood, pellet, and diesel stoves, BBQ grills, pizza ovens, power generators, portable AC units, air coolers, water pumps, and water filtration systems.

## About

- [Homepage](https://abouche3le.com)
- [All Products](https://abouche3le.com/collections/all)
- [Sitemap](https://abouche3le.com/sitemap.xml)

## Main Collections

- [Wood Stoves](https://abouche3le.com/collections/wood-stoves): Cast-iron and glass-sided wood stoves, fireplace inserts, and heating stoves for indoor spaces.
- [Gas Heaters](https://abouche3le.com/collections/gas-heaters): Efficient gas heating solutions for indoor climate control and outdoor comfort.
- [Pellet Stoves & Wood Pellets](https://abouche3le.com/collections/pellet-stoves): Sustainable, eco-friendly pellet heating stoves and fuel.
- [Diesel Heaters](https://abouche3le.com/collections/diesel-heaters): Heavy-duty cast iron and steel diesel heaters designed for cold climates.
- [Air Diesel Heaters](https://abouche3le.com/collections/air-diesel-heater): Compact and powerful forced-air diesel heating units.
- [Grills & BBQ](https://abouche3le.com/collections/grills-bbq): Heavy-duty outdoor barbecues, portable foldable grills, and spit-roast accessories.
- [Pizza Ovens](https://abouche3le.com/collections/pizza-ovens): Portable and built-in outdoor pizza ovens engineered for high heat retention.
- [Saj Cooktops](https://abouche3le.com/collections/saj): Portable gas saj stoves and traditional flatbread cooktops.
- [Generators](https://abouche3le.com/collections/generators): Inverter generators and power solutions for home and business backup electricity.
- [Portable Air Conditioners](https://abouche3le.com/collections/portable-ac): Flexible, room-to-room AC cooling units.
- [Fans & Air Coolers](https://abouche3le.com/collections/fan): Industrial air coolers, evaporative units, and tower fans.
- [Water Pumps](https://abouche3le.com/collections/water-pump): Residential and commercial water pumps for consistent head pressure.
- [Water Filters](https://abouche3le.com/collections/water-filter): Advanced multi-stage drinking water filtration systems.
- [Pressure Washers](https://abouche3le.com/collections/pressure-washer-1): High-pressure power washers for outdoor cleaning.
- [Chainsaws](https://abouche3le.com/collections/chainsaw): Petrol and electric chainsaws for forestry and woodcutting.
- [Stove & Heating Accessories](https://abouche3le.com/collections/accessories): Chimney pipes, caps, fire starter gels, and maintenance tools.
- [Errecom AC Maintenance](https://abouche3le.com/collections/errecom): Professional HVAC cleaning chemicals, lubricants, and flush liquids.

## Popular Products

- [FIREBOX (Embedded / Standalone)](https://abouche3le.com/products/firebox-2-options-embeded-standalone) — Premium versatile embedded or standalone fireplace insert.
- [Volcano 60 – Triple Glass Wood Stove](https://abouche3le.com/products/volcano-60-triple-glass-wood-stove) — Modern high-efficiency wood stove with 3-sided panoramic flame visibility.
- [Lily Silver Diesel Stove](https://abouche3le.com/products/lily-silver-diesel-stove) — Elegant decorative diesel heater designed for medium to large living spaces.
- [Camping Wood Stove with Fan](https://abouche3le.com/products/camping-wood-stove-with-fan-3-glass-sides) — Portable 3-glass-sided wood stove optimized for camping and outdoor heat distribution.
- [Fire Starter Gel](https://abouche3le.com/products/fire-starter-gel) — Odorless, clean-burning gel for rapid stove and charcoal ignition.
- [Rust Converter](https://abouche3le.com/products/rust-converter) — Surface treatment formula neutralizing rust into a paintable protective layer.

## Store Policies & Contact

- [Contact Us](https://abouche3le.com/pages/contact)
- [Privacy Policy](https://abouche3le.com/policies/privacy-policy)
- [Refund Policy](https://abouche3le.com/policies/refund-policy)
- [Terms of Service](https://abouche3le.com/policies/terms-of-service)
- [Shipping Policy](https://abouche3le.com/policies/shipping-policy)
View source ↗

Capabilities Detected

UCP capabilities supported by this endpoint
Cart ✓ Bound 2026-08-25
Order Management ✓ Bound 2026-08-25
Checkout ✓ Bound 2026-08-25
Discount Extension ✓ Bound 2026-08-25
Fulfillment Extension ✓ Bound 2026-08-25
Identity Linking ✓ Bound 2026-08-25
Catalog Lookup ✓ Bound 2026-08-25
Catalog Search ✓ Bound 2026-08-25
Dev Shopify Catalog Extension ✓ Bound 2026-08-25

Technical Vitals

Technical details for this UCP endpoint
UCP Status Verified
Endpoint https://abouche3le.com/.well-known/ucp
HTTP Status 200
UCP Version 2026-08-25
Transports MCP, EMBEDDED
Last Observed
Last Full Index

Embed your UCP Score

Drop the live grade into your README, status page, or marketing site. The badge auto-updates as your score changes.

UCP Score for abouche3le.com badge for https://ucpchecker.com/score/abouche3le.comLive preview
Markdown
[![UCP Score for abouche3le.com](https://ucpchecker.com/score/abouche3le.com/badge.svg)](https://ucpchecker.com/score/abouche3le.com)
HTML
<a href="https://ucpchecker.com/score/abouche3le.com"><img src="https://ucpchecker.com/score/abouche3le.com/badge.svg" alt="UCP Score for abouche3le.com"></a>
New · Early access open
Is abouche3le.com yours? Claim it & monitor it daily

Prove ownership with one DNS record and the new monitoring dashboard watches it every day — score trends, break alerts, staging drift and a watchlist that benchmarks you against the field. Free while in beta.

Start monitoring →

This score reflects data from the most recent crawl. Run a fresh check to update, or read the methodology to see how each signal is scored.

Save this report

Track abouche3le.com's UCP score over time. We'll re-run the full check weekly and email you if the score drops, a capability regresses, or status flips.

Free. One email when something changes — no marketing. Privacy.