vantage-shared-intel — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited vantage-shared-intel (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use Vantage as the canonical external-intel store. Keep this skill focused on operational workflows:
Set these in shell commands (or source from env):
VANTAGE_API_URL (example: http://localhost:3020)VANTAGE_API_KEY (vtg_...)Example:
export VANTAGE_API_URL="http://localhost:3020"
export VANTAGE_API_KEY="vtg_..."Use when user says "save this", "track this post/article", "add this intel".
curl -sS -X POST "$VANTAGE_API_URL/api/signals" \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $VANTAGE_API_KEY" \
-d '{
"signalType": "post",
"platform": "x",
"content": "<signal text>",
"sourceUrl": "https://...",
"importance": "high",
"topics": ["AI Agents", "Pricing"]
}'Capture standards:
platform, content, sourceUrl when knowntopicsimportance (critical|high|normal|low)Use when user asks "what do we already know about X?".
curl -sS "$VANTAGE_API_URL/api/signals/search?q=<query>" \
-H "Authorization: Bearer $VANTAGE_API_KEY"Optional filtered listing:
curl -sS "$VANTAGE_API_URL/api/signals?platform=x&importance=high&limit=20" \
-H "Authorization: Bearer $VANTAGE_API_KEY"Use for daily/weekly briefs.
curl -sS "$VANTAGE_API_URL/api/dashboard/summary?period=7d" \
-H "Authorization: Bearer $VANTAGE_API_KEY"Then provide:
Only for first-time setup:
curl -sS -X POST "$VANTAGE_API_URL/api/auth/keys" \
-H 'Content-Type: application/json' \
-d '{"name":"openclaw"}'Note:
X-Vantage-Bootstrap-Token is configuredUse this pattern for shared intel across chatbots:
topic, importance, source attribution)Use cron jobs for regular summaries:
dashboard/summary?period=7dWhen returning intel to user:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.