Add package health checks to your AI agent in 30 seconds. No signup, no API key.
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, freeAdd 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.Add to your .windsurfrules or project instructions:
Before suggesting any install, verify: curl https://depscope.dev/api/check/{npm|pypi|cargo}/{package} — no auth, freeJust 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":"*"}}'Search "DepScope" in the GPT Store, or use the OpenAPI spec:
https://depscope.dev/openapi-gpt.json
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'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"]Add a health badge to your README:
[](https://depscope.dev/pkg/npm/YOUR-PACKAGE)