mediago: Skill for Claude Code

.agents/skills/full-output-enforcement/SKILL.md

full-output-enforcement is a skill for Claude Code, Codex from mediago-dev/mediago. It costs 44 tokens per session (566 once invoked), scanned A, a copy of full-output-enforcement, MIT.

A set of instructions for making agents return complete code and avoid placeholders or truncated sections.

In plain words
What is it for?
Generating full files, implementing every requested component, and splitting long code across multiple outputs when needed.
Why use it?
It addresses incomplete code caused by omitted files, shortened output, or token limits.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is mediago-dev/mediago's own configuration. It tells Claude Code and Codex how to work on mediago itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mediago configures →

About the project

MediaGo is a cross-platform application for finding and downloading online video streams, including m3u8/HLS media and videos from services such as YouTube and Bilibili. It is for people and automated tools that need to save videos through a desktop app, Docker, browser extension, or HTTP API. The catalogue entries let coding agents operate MediaGo to create downloads and check their progress.

mediago-dev/mediago · 9,216 stars · on GitHub · downloader.caorushizi.cn

Reuse

Borrowing it

Nothing to install: this file belongs to mediago-dev/mediago. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/mediago-dev/mediago/master/.agents/skills/full-output-enforcement/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/mediago-dev/mediago

Made for: Claude Code, Codex.

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 full-output-enforcement

README.md
[![agentmods](https://agentmods.dev/badge/skills/mediago-dev/mediago/full-output-enforcement/github.svg)](https://agentmods.dev/skills/mediago-dev/mediago/full-output-enforcement)
Your own site
<a href="https://agentmods.dev/skills/mediago-dev/mediago/full-output-enforcement"><img src="https://agentmods.dev/badge/skills/mediago-dev/mediago/full-output-enforcement/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 full-output-enforcement

Your own site · 80×15
<a href="https://agentmods.dev/skills/mediago-dev/mediago/full-output-enforcement"><img src="https://agentmods.dev/badge/skills/mediago-dev/mediago/full-output-enforcement.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 566 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod 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.00044 $0.00566
Opus 5 $0.00022 $0.00283
Sonnet 5 $0.00009 $0.00113
Haiku 4.5 $0.00004 $0.00057

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

Security

Grade A, and why

full-output-enforcement scanned grade A with 0 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to full-output-enforcement — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/full-output-enforcement/SKILL.md · 50 lines

How it starts

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

Full-Output Enforcement

Baseline

Treat every task as production-critical. A partial output is a broken output. Do not optimize for brevity — optimize for completeness. If the user asks for a full file, deliver the full file. If the user asks for 5 components, deliver 5 components. No exceptions.

Banned Output Patterns

The following patterns are hard failures. Never produce them:

In code blocks: // ..., // rest of code, // implement here, // TODO, /* ... */, // similar to above, // continue pattern, // add more as needed, bare ... standing in for omitted code

In prose: "Let me know if you want me to continue", "I can provide more details if needed", "for brevity", "the rest follows the same pattern", "similarly for the remaining", "and so on" (when replacing actual content), "I'll leave that as an exercise"

Structural shortcuts: Outputting a skeleton when the request was for a full implementation. Showing the first and last section while skipping the middle. Replacing repeated logic with one example and a description. Describing what code should do instead of writing it.

Execution Process

  1. Scope — Read the full request. Count how many distinct deliverables are expected (files, functions, sections, answers). Lock that number.
  2. Build — Generate every deliverable completely. No partial drafts, no "you can extend this later."
  3. Cross-check — Before output, re-read the original request. Compare your deliverable count against the scope count. If anything is missing, add it before responding.

Handling Long Outputs

When a response approaches the token limit:

  • Do not compress remaining sections to squeeze them in.
  • Do not skip ahead to a conclusion.
  • Write at full quality up to a clean breakpoint (end of a function, end of a file, end of a section).
  • End with:
[PAUSED — X of Y complete. Send "continue" to resume from: next section name]

On "continue", pick up exactly where you stopped. No recap, no repetition.

Read the full file on GitHub · 50 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. 9d ago First seen · 50 lines · 44 tokens per session scan A e5bf48b1ae56

Subscribe to this mod's changes

full-output-enforcement is a skill published in the GitHub repository mediago-dev/mediago (9,216 stars, last pushed 4d ago), licensed MIT. It adds 44 tokens to every session and 566 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to full-output-enforcement, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

video-streaming-expert

Expert in video streaming technologies, HLS, DASH, adaptive bitrate streaming, CDN delivery, DRM protection, and video encoding/transcoding. Use when the user mentions video, streaming, media, WebRTC, multimedia, or HLS, or when the task involves Streaming Protocols, Adaptive Bitrate Streaming, FFmpeg Video…

personamanagmentlayer/pcl · 79 tokens

media-download

Download video (or audio) from YouTube, Rumble, and other yt-dlp-supported sites via the media-downloader MCP server, and natively store the downloaded media into the epistemic-graph knowledge graph as a content-addressed blob + :MediaAsset. Use when the agent must fetch a video by URL and optionally persist the raw…

Knuckles-Team/media-downloader · 111 tokens

media-audio

Extract audio as MP3 from a video/media URL via the media-downloader MCP server, natively storing the resulting audio into epistemic-graph as a content-addressed blob + :MediaAsset. Use when the agent needs the audio track (podcast, music, lecture) rather than the full video. Do NOT use for full-video download…

Knuckles-Team/media-downloader · 88 tokens

video-producer

Expert in video playback, streaming, and video player customization.

daffy0208/ai-dev-standards · 15 tokens

media-downloader-operations

Operate media-downloader through its governed MCP and GraphOS capabilities, including media audio, media download. Use when a request requires this provider's read, change, automation, ingestion, troubleshooting, or evidence workflows.

Knuckles-Team/media-downloader · 48 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens