mirror of
https://github.com/prompt-security/clawsec.git
synced 2026-06-01 15:52:26 +03:00
95c856ad8a
* docs(repo): refresh docs and wiki alignment * fix(feed): align frontend advisory URL with canonical endpoint
10 lines
434 B
TypeScript
10 lines
434 B
TypeScript
|
|
// Canonical hosted feed endpoint for fetching live advisories
|
|
export const ADVISORY_FEED_URL = 'https://clawsec.prompt.security/advisories/feed.json';
|
|
|
|
// Compatibility mirror for legacy clients; keep as last-resort fallback only
|
|
export const LEGACY_ADVISORY_FEED_URL = 'https://clawsec.prompt.security/releases/latest/download/feed.json';
|
|
|
|
// Local feed path for development
|
|
export const LOCAL_FEED_PATH = '/advisories/feed.json';
|