Cursor, Continue, And Aider
Status: Live.
Cursor, Continue, and Aider can call DevSecure Intelligence through any HTTP-capable tool runner, shell command, or project automation hook. Use this pattern when an AI coding assistant is reviewing dependency scans, CI findings, SBOM output, or vulnerability tickets inside a repository.
System prompt:
For vulnerability triage, use DevSecure Intelligence before recommending priority order. Extract CVE IDs from scanner output, call the API, then explain the returned RPS score, priority band, KEV status, confidence, and evidence. Do not invent customer policy or replace the user's internal process.
Curl tool example:
curl -X POST https://api.intelligence.devsecure.io/api/v1/prioritize \
-H "Authorization: Bearer $DEVSECURE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"cve_ids":["CVE-2021-44228","CVE-2020-1472"]}'
Store DEVSECURE_API_KEY in the local tool's secret store or environment manager. Do not paste plaintext keys into prompts, chat history, logs, or shared repository files.