# CF Package Check – Full Abandonment Report

> CF Package Check – Full Abandonment Report is a paid API for AI agents from cf-package-check.cf-exclusion-check.workers.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-19).

Returns a comprehensive abandonment risk report for an npm, PyPI, or WordPress plugin package, including a 0-100 score, registry facts, GitHub stats, version history, support metrics, and a recommendation.

## Facts

- Endpoint: GET https://cf-package-check.cf-exclusion-check.workers.dev/v1/report
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cf-package-check-full-abandonment-report-ed535ea2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t7wDwRyP0lNaiKg6P0nNG

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cf-package-check-full-abandonment-report-ed535ea2
```

Example prompt: Can you pull a full abandonment risk report for the npm package 'lodash'? I want the score breakdown, GitHub activity, version history, and a recommendation on whether it's safe to depend on.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-signal abandonment risk assessment for a specific package — not just a quick status check. It is ideal when making dependency adoption decisions, auditing existing dependencies for risk, or building automated supply-chain health dashboards. It covers npm, PyPI, and WordPress plugins in a single consistent interface and provides a scored recommendation rather than raw data alone.

## Known failure modes

- Package not found in the specified ecosystem returns an error or empty result
- Invalid ecosystem value (not npm, pypi, or wordpress) causes a validation error
- GitHub API rate limiting may result in incomplete GitHub facts
- Packages with no GitHub repository may return null for GitHub-related fields
- Network timeout from upstream registries can cause partial or failed reports

## How this service works

Full abandonment report: score breakdown, raw registry facts, GitHub facts, version history, support and issue stats, and a recommendation.

## Output

A structured JSON report containing: an overall abandonment risk score (0-100), a breakdown of contributing score factors, raw registry metadata (latest version, publish dates, download stats), GitHub repository facts (stars, forks, last commit, contributor count), full version history, support and issue statistics, and a human-readable recommendation on whether the package is safe to depend on.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ecosystem",
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Package name, PyPI project, or WordPress.org plugin slug"
      },
      "ecosystem": {
       "enum": [
        "wordpress",
        "npm",
        "pypi"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cf-package-check-full-abandonment-report-ed535ea2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cf-package-check.cf-exclusion-check.workers.dev](https://www.zero.xyz/host/cf-package-check.cf-exclusion-check.workers.dev/llms.txt)
