# Woo Product Data Completeness Score

> Read-only: Score each product against a required fields checklist (images, description, weight, SKU, attributes) and export a completeness gap report.

- **Type:** Skill
- **Install:** `agentstack add skill-navarroido-woocommerce-skill-woo-product-data-completeness-score`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [navarroido](https://agentstack.voostack.com/s/navarroido)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [navarroido](https://github.com/navarroido)
- **Source:** https://github.com/navarroido/Woocommerce-skill/tree/claude/woocommerce-ai-skills-0ZaZD/skills/merchandising/woo-product-data-completeness-score

## Install

```sh
agentstack add skill-navarroido-woocommerce-skill-woo-product-data-completeness-score
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# woo-product-data-completeness-score

## Purpose

Audit every product in your WooCommerce catalog against a configurable completeness checklist and assign a score (0–100). Identifies products missing images, descriptions, weights, SKUs, or other required fields. Exports a prioritized gap report so merchandising teams can systematically improve catalog quality. Read-only — no products are modified.

## Prerequisites

- WooCommerce store with REST API enabled (WooCommerce → Settings → Advanced → REST API)
- Consumer Key and Consumer Secret with **Read** scope
- Store accessible over HTTPS
- Minimum WooCommerce version: 3.5.0

## Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `store_url` | string | yes | — | Base URL of the WooCommerce store |
| `consumer_key` | string | yes | — | WooCommerce REST API consumer key (`ck_...`) |
| `consumer_secret` | string | yes | — | WooCommerce REST API consumer secret (`cs_...`) |
| `dry_run` | bool | no | `false` | No effect — read-only skill |
| `format` | string | no | `human` | Output format: `human` or `json` |
| `min_images` | int | no | `1` | Minimum image count for a passing score |
| `min_description_chars` | int | no | `100` | Minimum character count for description field |
| `require_sku` | bool | no | `true` | Flag products missing SKU |
| `require_weight` | bool | no | `true` | Flag products missing weight |
| `require_dimensions` | bool | no | `false` | Flag products missing length/width/height |
| `score_threshold` | int | no | `80` | Score below which a product is flagged |
| `category_id` | int | no | — | Limit audit to this category |
| `status` | string | no | `publish` | Product status to audit |

## Authentication

WooCommerce uses OAuth 1.0a for HTTP and Basic Auth over HTTPS.

For HTTPS stores (recommended):

```
Authorization: Basic base64(consumer_key:consumer_secret)
```

For HTTP stores (development only): Use OAuth 1.0a — include oauth_consumer_key, oauth_nonce, oauth_signature, oauth_signature_method=HMAC-SHA1, oauth_timestamp, oauth_version=1.0

Never log or output consumer_key or consumer_secret values.

See docs/AUTHENTICATION.md for full setup instructions.

## Safety

Read-only skill — no mutations are executed. Safe to run at any time.

## Workflow Steps

**Step 1 — Fetch products**

```
GET /wp-json/wc/v3/products
  ?status=&per_page=100&page=1
  [&category=]
```

Extract per product: `id`, `name`, `sku`, `description`, `short_description`, `images`, `weight`, `dimensions`, `type`, `categories`, `tags`, `attributes`
Paginate until response length                       ║
║  TIME:                     ║
║  MODE:  READ-ONLY                        ║
╚══════════════════════════════════════════╝
```

PER-OPERATION (emit after each API call batch):

```
[N/TOTAL]   →  records | params: =
```

COMPLETION (human format):

```
╔══════════════════════════════════════════╗
║  COMPLETE: woo-product-data-completeness ║
║  RECORDS PROCESSED:                   ║
║  OUTPUT:                       ║
╚══════════════════════════════════════════╝
```

COMPLETION (json format):

```json
{
  "skill": "woo-product-data-completeness-score",
  "store": "",
  "completed_at": "",
  "records_processed": ,
  "output_file": "",
  "dry_run": false
}
```

## Output Format

CSV filename: `woo-product-data-completeness-score_.csv`
Columns: `product_id`, `sku`, `name`, `score`, `has_images`, `image_count`, `has_description`, `description_chars`, `has_short_desc`, `has_sku`, `has_weight`, `has_dimensions`, `category_count`, `missing_fields`

## Error Handling

| Error | Cause | Resolution |
|-------|-------|------------|
| `401 Unauthorized` | Invalid or missing credentials | Verify consumer_key and consumer_secret |
| `403 Forbidden` | Consumer Key lacks Read scope | Regenerate key with Read scope |
| `429 Too Many Requests` | Rate limit during pagination | Wait 2 seconds and retry; reduce per_page to 50 |
| Empty result | No products match filters | Check status and category_id parameters |

## Best Practices

- Run after every catalog import to catch products with missing data.
- Sort the CSV by score ascending and assign the lowest-scoring products as a weekly cleanup sprint.
- Set `min_description_chars: 200` for SEO-focused audits (100 chars is below recommended SEO length).
- Combine with `woo-seo-metadata-audit` for a full catalog quality assessment.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [navarroido](https://github.com/navarroido)
- **Source:** [navarroido/Woocommerce-skill](https://github.com/navarroido/Woocommerce-skill)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-navarroido-woocommerce-skill-woo-product-data-completeness-score
- Seller: https://agentstack.voostack.com/s/navarroido
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
