mirror of
https://github.com/prompt-security/clawsec.git
synced 2026-06-13 13:38:03 +03:00
11 lines
457 B
TypeScript
11 lines
457 B
TypeScript
// ClawSec Suite SKILL.md URL - injected at build time, with hardcoded fallback
|
|
export const SKILL_URL = import.meta.env.VITE_CLAWSEC_SUITE_URL ||
|
|
'https://clawsec.prompt.security/releases/latest/download/SKILL.md';
|
|
|
|
// Feed URL for fetching live advisories
|
|
export const 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';
|
|
|