# DevPkg Intel – Dependency Safety Audit

> DevPkg Intel – Dependency Safety Audit is a paid API for AI agents from devpkg-intel.bowling-anthony.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a single pass/fail safety verdict for a software package, covering version status, licence, deprecation, known security advisories, and staleness.

## Facts

- Endpoint: GET https://devpkg-intel.bowling-anthony.workers.dev/audit
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/devpkg-intel-dependency-safety-audit-b628578b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jlRumWkHbQwj2Aoskw4cy

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 devpkg-intel-dependency-safety-audit-b628578b
```

Example prompt: Before I add it to production, can you run a full safety audit on the npm package 'axios' at version 1.6.0 — I need to know if it's deprecated, has any security advisories, licence issues, or signs of staleness?

## When to prefer this

Choose this endpoint when you need a single consolidated safety verdict for a package rather than querying individual metadata or advisory endpoints separately. It combines version, licence, deprecation, advisories, and staleness into one decision-ready response, making it ideal for automated CI/CD gates, pull-request reviewers, or agent workflows that need a binary safe/unsafe signal with supporting evidence.

## Known failure modes

- Package not found in the specified ecosystem — returns error or empty result
- Unrecognised ecosystem type provided — validation error
- Advisory database temporarily unavailable — partial or degraded result
- Rate limiting from upstream OSV or registry APIs — timeout or error
- Malformed package name or version string — schema validation failure

## How this service works

One verdict on whether a dependency is safe to add: version, licence, deprecation, advisories, staleness, and the specific concerns found.

## Output

A structured safety verdict indicating whether the package is safe to add, along with details on the current version, licence type, deprecation status, known security advisories (with severity), staleness signals, and a list of specific concerns flagged during the audit.

## 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"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "express",
  "verdict": "no_concerns_found",
  "ecosystem": "npm",
  "knownVulnerabilities": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/devpkg-intel-dependency-safety-audit-b628578b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from devpkg-intel.bowling-anthony.workers.dev](https://www.zero.xyz/host/devpkg-intel.bowling-anthony.workers.dev/llms.txt)
