---
summary: "A public integrity report for the Agent Marketplace detailing daily checks on catalog, Stripe configurations, and readiness status with specific action items."
detail: "This document serves as a public mirror of the latest integrity suite run for the Agent Marketplace, dated 2026-02-26. It provides a high-level summary of four key checks: catalog integrity (passed), Stripe Payment Link configuration (failed due to redirect issues), Stripe LIVE readiness (failed due to blocking issues), and endpoint health. The report highlights specific SKUs with configuration errors, particularly regarding redirect URLs and session handling in Stripe Payment Links. It concludes with a clear P0 action item for human intervention to fix the 'analytics-tracking-pack' Stripe settings and verification steps."
category: system-config
tags: [integrity-report, agent-marketplace, stripe-config, daily-check, status]
purpose: "To provide stakeholders and developers with a quick overview of the current system health, specifically focusing on payment processing readiness and catalog consistency."
related: [state/agent-marketplace-daily-integrity-2026-02-26.md, state/agent-marketplace-catalog-integrity-2026-02-26.json, state/agent-marketplace-catalog-integrity-2026-02-26.md, state/agent-marketplace-stripe-link-config-check-2026-02-26.json, state/agent-marketplace-stripe-link-config-check-2026-02-26.md, state/agent-marketplace-stripe-live-readiness-2026-02-26.json, state/agent-marketplace-stripe-live-readiness-2026-02-26.md, state/agent-marketplace-http-health-2026-02-26.json, state/agent-marketplace-http-health-2026-02-26.md, state/agent-marketplace-stripe-human-fix-analytics-tracking-pack-2026-02-26.md, scripts/agent_marketplace_stripe_link_config_check.py, scripts/agent_marketplace_stripe_live_readiness_check.py]
created: 2026-02-25
modified: 2026-02-25
---
# Integrity Suite — Latest (Agent Marketplace)

This is a public mirror of the most recent integrity-suite run.

Source-of-truth (internal): `state/agent-marketplace-daily-integrity-2026-02-26.md`

---

# Agent Marketplace — Daily Integrity Suite (2026-02-26)

Run at: **2026-02-26T03:16Z**  
Base: https://www.tutuoai.com

## TL;DR
- **Catalog integrity:** ✅ PASS (22/22)
- **Stripe Payment Link config:** ❌ FAIL (19 OK / 3 issues)
- **Stripe LIVE readiness:** ❌ FAIL (1 blocking issue, 2 warnings)
- **Overall:** ❌ NOT GREEN yet (needs 1 Stripe Dashboard fix)

---

## 1) Catalog integrity (site + downloads + post-purchase + Stripe page reachability)
**Status:** ✅ PASS

Evidence:
- JSON: `state/agent-marketplace-catalog-integrity-2026-02-26.json`
- MD: `state/agent-marketplace-catalog-integrity-2026-02-26.md`

Key facts:
- Items checked: **22**
- Failures: **0**
- buy_url duplicates: **0**
- Local vs live catalog SHA256: **match** (`8fa90e…71a0a`)

What this means:
- If someone lands on any product page and clicks buy, the linked Stripe checkout page is reachable.
- The referenced download ZIP and post-purchase page endpoints are live for all catalog items.

---

## 2) Stripe Payment Link config checker (After completion redirect → /claim)
**Status:** ❌ FAIL

Evidence:
- JSON: `state/agent-marketplace-stripe-link-config-check-2026-02-26.json`
- MD: `state/agent-marketplace-stripe-link-config-check-2026-02-26.md`

Summary:
- SKUs checked: **22**
- OK: **19**
- Issues: **3**

Top issues:
1) `analytics-tracking-pack` — **hosted confirmation**, missing redirect URL
   - payment_link: `plink_1T4dwZ3klu6qJEvzN79qYUV7`
2) `3-ad-angles` — redirect URL mismatch (goes to post-purchase, not /claim)
   - payment_link: `plink_1T4dsN3klu6qJEvzVGy6VHMd`
3) `agent-orchestration` — redirect URL mismatch (goes to post-purchase, not /claim)
   - payment_link: `plink_1T4dq03klu6qJEvzA9DfsjPe`

Note:
- Redirecting to post-purchase pages *works for delivery*, but it breaks the deterministic “Stripe paid → /claim?sku=…&session_id=…” flow.

---

## 3) Stripe LIVE readiness (key + payment links + redirect determinism)
**Status:** ❌ FAIL

Evidence:
- JSON: `state/agent-marketplace-stripe-live-readiness-2026-02-26.json`
- MD: `state/agent-marketplace-stripe-live-readiness-2026-02-26.md`

Blocking issue:
- `analytics-tracking-pack` — `after_completion_not_redirect`

Warnings:
- `3-ad-angles` — redirects to post-purchase (no session_id)
- `agent-orchestration` — redirects to post-purchase (no session_id)

Permission notes (expected with restricted key):
- `/v1/account` and `/v1/webhook_endpoints` return 403 with current `rk_live` restricted key.

---

## 4) Quick endpoint health (context)
Evidence:
- JSON: `state/agent-marketplace-http-health-2026-02-26.json`
- MD: `state/agent-marketplace-http-health-2026-02-26.md`

Observation:
- Core endpoints OK (200): `/api/catalog.json`, `/llms.txt`, `/sitemap.xml`
- `/go/*` was 404 at the snapshot time.

---

## P0 next step (HUMAN_REQUIRED)
**Goal:** Make the system fully GREEN by fixing the *one* Stripe Dashboard toggle.

Do this in Stripe Dashboard:
- Payment Link for **analytics-tracking-pack**
  - Set **After completion = Redirect**
  - Set redirect URL:
    - `https://www.tutuoai.com/claim?sku=analytics-tracking-pack&session_id={CHECKOUT_SESSION_ID}`
  - (If present) set cancel URL:
    - `https://www.tutuoai.com/cancel`

Step-by-step evidence pack:
- `state/agent-marketplace-stripe-human-fix-analytics-tracking-pack-2026-02-26.md`

After that, verify:
```bash
cd /Users/fty/.openclaw/workspace
python3 scripts/agent_marketplace_stripe_link_config_check.py
python3 scripts/agent_marketplace_stripe_live_readiness_check.py || true
```
Expected: issues drop to **0** and readiness becomes **PASS**.
