Download the PHP package magendoo/module-catalog-quality without Composer

On this page you can find all versions of the php package magendoo/module-catalog-quality. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package module-catalog-quality

Magendoo Catalog Quality — Magento 2 Module

Catalog data quality observability for Magento 2.
Know exactly which products are hurting your conversion rate before your customers find out.

Magento 2 PHP


What It Does

Magendoo_CatalogQuality scores every product in your catalog against a two-axis quality model — Enrichment (are the important attributes filled in?) and Consistency (do they meet your content rules?) — and combines them into a single Product Health Score (PHS) between 0 and 100. Products are graded A–E.

The module answers three questions that every Magento merchant needs:

  1. Which products are incomplete? — The Gap List shows every product's grade, PHS, priority gaps, and the specific missing attribute codes.
  2. Which products are invisible in layered navigation? — The Filter-Blind detector flags products that have no value for a filterable attribute, making them unfindable when shoppers use your category filters.
  3. Which filter attributes have the worst coverage across categories? — The Filter Coverage Matrix shows fill rates as a colour-coded heatmap, scoped by attribute set.

No auto-fix. No AI. Just clear, actionable diagnostic data.


Screenshots

Dashboard

The dashboard shows the Catalog Health Index (CHI) — a revenue-weighted average PHS across all scored products — alongside grade distribution, filter-blind product count, and a 30-day CHI trend chart.

Product Gap List

Every scored product in one grid: grade badge, PHS, P1/P2/P3 gap counts, a filter-blind chip, and colour-coded missing attribute chips. Red chips are filterable attributes directly causing filter-blindness; grey chips are other priority gaps.

Filter Coverage Matrix

Rows are user-defined filterable attributes; columns are active categories (filterable by attribute set). Each cell shows the fill-rate percentage, colour-coded from green (≥90 %) to red (<35 %). Click a cell to open the Gap List pre-filtered by that attribute and category.


Features


Requirements

Dependency Version
PHP ≥ 8.2
Magento Open Source / Adobe Commerce 2.4.x
magento/framework ≥ 103.0
magento/module-catalog ≥ 104.0

Installation

Via Composer (recommended)

Manual

  1. Copy the module directory into app/code/Magendoo/CatalogQuality/
  2. Run the same CLI commands above

Initial Setup

After installation, run the full indexer to score all products:

This may take several minutes on large catalogs. The batch size is configurable under Stores → Configuration → Magendoo Extensions → Catalog Quality → Performance.


Admin Screens

Navigate to Catalog Quality in the top-level admin menu.

Screen URL Description
Dashboard /catalogquality/dashboard/index CHI, grade distribution, filter-blind count, 30-day trend
Product Gap List /catalogquality/gaps/index All scored products; filterable by grade, filter-blind status
Filter Coverage Matrix /catalogquality/filters/index Attribute fill-rate heatmap per category
Attribute Priorities /catalogquality/priority/index Inline-editable priority rules

Configuration

Stores → Configuration → Magendoo Extensions → Catalog Quality

Setting Default Description
Enabled Yes Master switch
Revenue-weighted CHI Yes Weight CHI by 90-day product revenue
Indexer Batch Size 500 Products scored per batch during full reindex
Snapshot Retention 90 days How long nightly CHI snapshots are kept

Scoring Algorithm

See docs/scoring-algorithm.md for the full specification.

Summary:


Priority System

See docs/priority-system.md for the full hierarchy.

Quick reference:

Level Weight Meaning
P1 100 Critical — directly impacts conversions (name, price, image, meta)
P2 50 Important — filterable attributes auto-floor here
P3 20 Standard — user-defined attributes not yet classified
P4 5 Low — nice-to-have
Ignore 0 Never scored (system attrs, optional promotional fields)

Priority resolution order (first match wins):

  1. Explicit row with matching category_id
  2. Explicit row with matching attribute_set_id
  3. Explicit global row (no set, no category)
  4. Implicit: SEO attrs → P1; user-defined filterable → P2; user-defined → P3; else → Ignore

Conditional Attribute Groups

Some module attributes should only be scored when they are relevant for a specific product. Configure this in etc/di.xml:

The enabledBy attribute is never scored itself — it acts as a gate. The listed attributes are only evaluated when the gate attribute is truthy (1). The example above wires up Magendoo_BasePrice so that unit-pricing compliance fields only count as gaps on products where base pricing is switched on.


CLI Commands


REST API

See docs/rest-api.md for request/response schemas.

Method Endpoint Description
GET /V1/catalog-quality/scores/:sku Get quality score for a single SKU
GET /V1/catalog-quality/gaps List gap records (supports search criteria)
POST /V1/catalog-quality/priorities Create or update a single priority rule
POST /V1/catalog-quality/priorities/bulk Bulk upsert priority rules
GET /V1/catalog-quality/priorities List priority rules
DELETE /V1/catalog-quality/priorities/:id Delete a priority rule

All endpoints require an admin bearer token. Authenticate with POST /V1/integration/admin/token.


Database Tables

Table Purpose
magendoo_cq_priority Attribute priority rules (P1–P4/Ignore) per attribute, set, and category
magendoo_cq_priority_history Audit log of priority changes
magendoo_cq_product_score Per-product PHS, grade, gap counts, filter-blind flag
magendoo_cq_attribute_score Per-attribute value states for a product
magendoo_cq_catalog_snapshot Nightly CHI snapshots for trend charts
magendoo_cq_scope_profile Named scope profiles (sellable, pre-launch, full catalog)
magendoo_cq_rule_config Per-rule enabled/severity/parameter overrides
magendoo_cq_placeholder_blocklist Literal and regex patterns for placeholder detection
magendoo_cq_remediation_queue Remediation work queues (Phase 2)
magendoo_cq_remediation_queue_item Items within a remediation queue
magendoo_cq_rule_run_log Indexer run audit log

Extending

Adding a Custom Quality Rule

  1. Implement Magendoo\CatalogQuality\Api\RuleInterface
  2. Register it in etc/di.xml under RulePool

Adding a Conditional Attribute Group

Register a conditionalGroups item as shown in the Conditional Attribute Groups section above.


License

Magendoo Interactive


All versions of module-catalog-quality with dependencies

PHP Build Version
Package Version
Requires php Version >=8.2
magento/framework Version >=103.0
magento/module-catalog Version >=104.0
magento/module-eav Version >=102.0
magento/module-backend Version >=102.0
magento/module-store Version >=101.0
magento/module-indexer Version >=100.4
magento/module-ui Version >=101.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package magendoo/module-catalog-quality contains the following files

Loading the files please wait ...