media-setup

media-setup is a skill for Claude Code from Minara-AI/media-agent. It costs 51 tokens per session (2,125 once invoked), scanned B, original, MIT.

An interactive setup wizard for configuring a media agent's platform connections, API keys, and dependencies. It checks required tools and tests the available connections.

In plain words
What is it for?
Use it to prepare a media-agent environment, check Git, Python, and cURL, inspect optional image and GitHub tools, configure platform access, and test connections.
Why use it?
It helps identify missing software or configuration before other media workflows are run. It also guides setup instead of requiring you to assemble the configuration manually.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Good fit Use it to prepare a media-agent environment, check Git, Python, and cURL, inspect optional image and GitHub tools, configure platform access, and test connections.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/minara-ai/media-agent/media-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Minara-AI/media-agent --skill media-setup
Clone the repo
git clone --depth 1 https://github.com/Minara-AI/media-agent

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for media-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/minara-ai/media-agent/media-setup/github.svg)](https://agentmods.dev/skills/minara-ai/media-agent/media-setup)
Your own site
<a href="https://agentmods.dev/skills/minara-ai/media-agent/media-setup"><img src="https://agentmods.dev/badge/skills/minara-ai/media-agent/media-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for media-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/minara-ai/media-agent/media-setup"><img src="https://agentmods.dev/badge/skills/minara-ai/media-agent/media-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,125 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.02125
Opus 5 $0.00026 $0.01063
Sonnet 5 $0.00010 $0.00425
Haiku 4.5 $0.00005 $0.00213

Measured 8d ago against content hash 5cb54f2778b0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade B, and why

media-setup scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

chmod 600 .env

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

which curl >/dev/null 2>&1 && echo " [OK] curl" || echo " [MISSING] curl — required for API calls"
skills/media-setup/SKILL.md · 265 lines

How it starts

The opening of the file, as written. The whole thing — 265 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/media-setup — Platform Configuration Wizard

Configure your media-agent installation. This skill detects available tools, walks you through API key setup for each platform, tests connections, and writes the config files.

Prerequisites

Before starting, read the shared library files:

  • Read lib/adapter-discovery.md for how adapters work
  • Read lib/manifest-ops.md for manifest format

Step 1: Detect Environment

Check for required and optional tools:

echo "=== media-agent Setup ==="
echo ""

# Required
echo "Checking dependencies..."
which git >/dev/null 2>&1 && echo "  [OK] git" || echo "  [MISSING] git — required"
which python3 >/dev/null 2>&1 && echo "  [OK] python3" || echo "  [MISSING] python3 — required for YAML parsing"
which curl >/dev/null 2>&1 && echo "  [OK] curl" || echo "  [MISSING] curl — required for API calls"

# Optional
echo ""
echo "Optional tools:"
which convert >/dev/null 2>&1 && echo "  [OK] ImageMagick" || echo "  [MISSING] ImageMagick — needed for image resizing (brew install imagemagick)"
which gh >/dev/null 2>&1 && echo "  [OK] GitHub CLI" || echo "  [MISSING] GitHub CLI — optional, for GitHub Pages"

If python3 or curl is missing, stop and tell the user how to install them.

If ImageMagick is missing, warn the user but continue — it's only needed for /media-image.

Step 2: Discover Available Adapters

echo ""
echo "Available platform adapters:"
for adapter in adapters/*/; do
  name=$(basename "$adapter")
  display=$(python3 -c "import yaml; print(yaml.safe_load(open('${adapter}adapter.yaml'))['display_name'])" 2>/dev/null || echo "$name")
  auth_type=$(python3 -c "import yaml; print(yaml.safe_load(open('${adapter}adapter.yaml'))['auth_type'])" 2>/dev/null || echo "unknown")
  echo "  - $display ($auth_type)"
done

Step 3: Configure Each Platform

Use AskUserQuestion to ask which platforms the user wants to configure. Then for each selected platform:

GitHub Pages (auth_type: git_push)

Read the full file on GitHub · 265 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 265 lines · 51 tokens per session scan B 5cb54f2778b0

Subscribe to this mod's changes

media-setup is a skill published in the GitHub repository Minara-AI/media-agent (6 stars, last pushed 5mo ago), licensed MIT. It adds 51 tokens to every session and 2,125 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

story-review

A review workflow for finding story problems from several viewpoints, including issues with structure, characters, wording, and fictional world rules. It can use multiple reviewer agents or work alone.

zenstory-ai/oh-story-claudecode · 74 tokens

story-cover

A novel-cover generator that creates a cover with the book title and author name. It chooses a visual style from the book information and can use Codex's image-generation tool.

zenstory-ai/oh-story-claudecode · 93 tokens

sepia-hemingway

Use when a user asks to write or revise fiction in the Hemingway manner, or asks for strong de-AI on a story; applies Sepia's built-in Hemingway voice profile.

Nanako0129/sepia · 43 tokens

guofeng-threejs

A skill for creating Chinese-style real-time 3D web visuals with Three.js, a JavaScript library for displaying 3D graphics in a browser. It focuses on ink-wash, blue-green landscape, mural, paper-cut, and other non-realistic styles.

sanhuang520-ship-it/awesome-chinese-ai-tools · 89 tokens

guochao-visual-cn

A prompt-writing guide for generating Chinese-inspired illustrations and other visual designs. It distinguishes twelve Chinese artistic styles, such as ink painting, gongbi painting, blue-green landscapes, and Dunhuang murals.

sanhuang520-ship-it/awesome-chinese-ai-tools · 99 tokens

diagram

Generate modern reviewable diagrams (system architecture, workflow, data flow, sequence, ER, state-machine, C4) via OpenRouter image-gen or LLM-emitted SVG. Auto-classifies diagram type from prompt; --type to override. Default scratch output goes to the resolved workbench visuals path; --versioned writes git-trackable…

vanducng/skills · 79 tokens