AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Media Literacy

skill-alexanderj-carter-agentsociety2-agent-skills-media-literacy · by AlexanderJ-Carter

Track information exposure, source credibility, motivated reasoning, misinformation risk, and belief-update resistance.

No reviews yet
0 installs
48 views
0.0% view→install

Install

$ agentstack add skill-alexanderj-carter-agentsociety2-agent-skills-media-literacy

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-alexanderj-carter-agentsociety2-agent-skills-media-literacy)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Media Literacy? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Media Literacy

Purpose

Model how agents process claims from media, friends, institutions, ads, rumors, and social platforms. This skill prevents agents from instantly accepting every statement and makes belief change depend on source credibility, prior beliefs, identity alignment, repetition, and warning/inoculation.

Research basis: references/research_basis.md.

Internal Logic (One Sentence)

Read observation, memory, relationships, identity, prior beliefs, and prior media state, then estimate claim credibility, misinformation risk, confirmation bias, inoculation strength, and write state/media_literacy.json plus optional belief update hints.

Use When

Use after news exposure, social media posts, rumors, advertising, political claims, health claims, scams, institutional announcements, warnings, debunks, or repeated claims.

Procedure

  1. Read state/observation.txt, state/memory.jsonl, state/relationships.json, state/identity.json, state/beliefs.json, and state/media_literacy.json if present.
  2. Identify the main claim or information item.
  3. Estimate:
  • source credibility
  • evidence quality
  • repetition/familiarity
  • identity alignment
  • emotional arousal
  • misinformation risk
  • inoculation/prebunking strength
  1. Write state/media_literacy.json.
  2. Optionally write state/belief_update_hints.json for reflection/cognition to use.

If deterministic baseline is preferred:

python skills/media_literacy/scripts/update_media_literacy.py --state-dir state --tick 120

Model

Belief uptake is not just evidence:

acceptance_tendency =
  source_credibility
  + evidence_quality
  + familiarity
  + identity_alignment
  + emotional_arousal
  - misinformation_risk
  - inoculation_strength

The output should not directly rewrite stable beliefs unless evidence is strong. It should provide a hint for reflection.

Write

Always write state/media_literacy.json.

Optionally write state/belief_update_hints.json.

Output Schema

{
  "_meta": {
    "skill": "media_literacy",
    "purpose": "Current information exposure assessment and belief-update caution."
  },
  "_summary": "A health claim from an unknown source has high misinformation risk.",
  "current_claim": "A viral post says the medicine is dangerous.",
  "source_type": "social_media",
  "source_credibility": 0.32,
  "evidence_quality": 0.18,
  "familiarity": 0.61,
  "identity_alignment": 0.44,
  "emotional_arousal": 0.7,
  "misinformation_risk": 0.78,
  "inoculation_strength": 0.35,
  "acceptance_tendency": 0.22,
  "recommended_stance": "withhold belief and seek corroboration"
}

Notes

  • Repetition increases familiarity, not truth.
  • Trust in a friend should increase attention, but not automatically evidence quality.
  • Strong identity alignment can increase acceptance even when evidence is weak.
  • Debunking and prebunking should add resistance to later similar manipulation tactics.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.