FreeCRMv1.0.0
source-verify
Verify a URL or claim by fetching the page and summarizing source (domain, date, author). Use when the user says "verify this source", "check this link", "is this reliable", "fact-check this URL".
Published by
Sai Ko
—Sign in to rate
How to install
Point your Sulala Agent at this store, then install this skill.
- Set the registry URL (e.g. in
.env):
SKILLS_REGISTRY_URL=https://hub.sulala.ai/api/sulalahub/registryThen run: sulala skill install source-verify or install from the dashboard Skills page. This installs the latest version (currently v1.0.0); you can pin a specific version in your skill config if needed.
Skill files
README.md
---
name: source-verify
description: Verify a URL or claim by fetching the page and summarizing source (domain, date, author). Use when the user says "verify this source", "check this link", "is this reliable", "fact-check this URL".
metadata:
sulala:
emoji: "✅"
requires:
bins:
- node
---
# Source verify
Verify a URL by fetching it and summarizing what the agent can infer (domain, title, dates, author hints). Use the **exec** tool; the agent should call **fetch** or `node ./scripts/verify.js` to get page content, then summarize reliability cues.
## Usage
1. User provides a URL (and optionally a claim).
2. Agent fetches the URL (e.g. with `node ./scripts/verify.js "URL"` or via the **fetch** skill).
3. Agent summarizes: domain, title, publication date if visible, author/site reputation, and whether the content supports or contradicts the claim.
The included `scripts/verify.js` helper fetches the URL and prints a capped amount of content for analysis.Comments
Sign in to leave a comment.
Loading comments…