Source analysis
Profile where a source sits: how authoritative its domain/type is, what the
source is, and how fresh it is.
When to use
- A URL is about to be cited or weigh on a verdict.
- Deciding between conflicting sources (reliability triage).
- Auditing a result set before evidence extraction.
Tools used
source_analysis — analyze a URL's authority/type/freshness.
get_skill — pull this skill's own definition (discovery/self-doc).
Authority/type/freshness axes
- Authority — primary/official vs. secondary vs. aggregator vs. self-published;
domain reputation.
- Type — gov, academic, vendor, documentation, news, forum, social, blog.
- Freshness — dated content vs. evergreen; last-known update.
Workflow
- For each candidate URL,
source_analysis.
- Record the classification next to the URL in your evidence set.
- Let type + freshness inform weight, but never let it fabricate evidence —
a low-authority source can still be the only one, say so.
- Re-classify if you later find the true author/publication center.
Input schema
{ "url": "str" }
Output schema
{ "url": "str", "authority": "str", "type": "str", "freshness": "str", "recommendation": "str" }
Security
Classification is an aid to judgment, not proof of truth. Never cite or assert
a source's content as fact purely on its "authoritative" label.
Related skills
web-reader, web-search, claim-verification, comparison,
deep-research
1---2name: source-analysis3description: Classify a source's authority, type, and freshness. Use to decide how much weight a specific URL deserves before it enters a verdict.4---56# Source analysis78Profile where a source sits: how authoritative its domain/type is, what the9source is, and how fresh it is.1011## When to use1213- A URL is about to be cited or weigh on a verdict.14- Deciding between conflicting sources (reliability triage).15- Auditing a result set before evidence extraction.1617## Tools used1819- `source_analysis` — analyze a URL's authority/type/freshness.20- `get_skill` — pull this skill's own definition (discovery/self-doc).2122## Authority/type/freshness axes2324- **Authority** — primary/official vs. secondary vs. aggregator vs. self-published;25 domain reputation.26- **Type** — gov, academic, vendor, documentation, news, forum, social, blog.27- **Freshness** — dated content vs. evergreen; last-known update.2829## Workflow30311. For each candidate URL, `source_analysis`.322. Record the classification next to the URL in your evidence set.333. Let type + freshness inform weight, but never let it fabricate evidence —34 a low-authority source can still be the only one, say so.354. Re-classify if you later find the true author/publication center.3637## Input schema3839```json40{ "url": "str" }41```4243## Output schema4445```json46{ "url": "str", "authority": "str", "type": "str", "freshness": "str", "recommendation": "str" }47```4849## Security5051Classification is an aid to judgment, not proof of truth. Never cite or assert52a source's content as fact purely on its "authoritative" label.5354## Related skills5556`web-reader`, `web-search`, `claim-verification`, `comparison`,57`deep-research`