https://github.com/DeepakNarayananS/Together_AI_Vulnerability_Tracker
This Google Apps Script automatically monitors your software for known security issues (CVE – Common Vulnerabilities and Exposures).
It uses Together AI’s API to find vulnerabilities, stores the results in a Google Sheet, and sends email alerts for High and Critical severity threats.
const TOGETHER_API_KEY = 'Enter Your API Key Here';
const VULN_SHEET_NAME = 'Vulns';
const EMAIL_ALERT_TO = 'Enter Your E-Mail Address Here';
const EMAIL_ALERT_CC = 'Enter Your E-Mail Address Here';
const STATE_KEY = 'lastTogetherVulnSnapshot';
What this does:
TOGETHER_API_KEY: Stores your Together AI API key for authentication.VULN_SHEET_NAME: Name of the Google Sheet tab for vulnerabilities.EMAIL_ALERT_TO / EMAIL_ALERT_CC: Recipients for alert emails.STATE_KEY: Used to track whether new vulnerabilities appeared since the last run.Why it matters:
These constants act as your configuration dashboard — you can easily adjust settings here without modifying the main logic.
fetchAndUpdate()function fetchAndUpdate() {
const sheet = getOrCreateSheet(VULN_SHEET_NAME);
clearAndSetupSheet(sheet);
const criticalOrHigh = [];