Integrate DepScope

Add package health checks to your AI agent in 30 seconds. No signup, no API key.

Claude Code

Add one line to your CLAUDE.md or MEMORY.md:

## Before suggesting any install, verify: curl https://depscope.dev/api/check/{npm|pypi|cargo}/{package} — no auth, free

Cursor

Add this to your .cursorrules file:

Before suggesting any npm/pip/cargo install, verify the package:
- Check health: https://depscope.dev/api/check/{ecosystem}/{package}
- Check version: https://depscope.dev/api/latest/{ecosystem}/{package}
- Check exists: https://depscope.dev/api/exists/{ecosystem}/{package}
If deprecated, find alternatives: https://depscope.dev/api/alternatives/{ecosystem}/{package}
No API key needed.

Windsurf / Codeium

Add to your .windsurfrules or project instructions:

Before suggesting any install, verify: curl https://depscope.dev/api/check/{npm|pypi|cargo}/{package} — no auth, free

Any AI Agent (curl / HTTP)

Just call the API. No auth, no signup:

# Check a package
curl https://depscope.dev/api/check/npm/express

# Compare packages
curl https://depscope.dev/api/compare/npm/express,fastify,hono

# Scan entire project
curl -X POST https://depscope.dev/api/scan \
  -H "Content-Type: application/json" \
  -d '{"ecosystem":"npm","packages":{"express":"*","lodash":"*"}}'

ChatGPT

Search "DepScope" in the GPT Store, or use the OpenAPI spec:

https://depscope.dev/openapi-gpt.json

GitHub Actions

Add to your CI pipeline:

- name: DepScope Audit
  run: |
    curl -s -X POST https://depscope.dev/api/scan \
      -H "Content-Type: application/json" \
      -d "{\"ecosystem\":\"npm\",\"packages\":$(cat package.json | jq '.dependencies')}" \
      | jq '.project_risk'

Python / LangChain

Use as a LangChain tool:

from langchain.tools import tool
import requests

@tool
def check_package(ecosystem: str, package: str) -> str:
    """Check if a package is safe to install."""
    r = requests.get(f"https://depscope.dev/api/check/{ecosystem}/{package}")
    return r.json()["recommendation"]["summary"]

README Badge

Add a health badge to your README:

[![health](https://depscope.dev/badge/npm/YOUR-PACKAGE)](https://depscope.dev/pkg/npm/YOUR-PACKAGE)