MediaUse Docs

Skills
Skill docs are organized by site. Learn dynamic command usage, constraints, mapping, and custom skill creation.
1) Site-based skill structure
Skills are grouped by website (site). Each site plugin maps to exactly one skill.
  • 1 site plugin = 1 skill
  • Each skill describes that site's semantic command capabilities
  • Use site + capability + action to call dynamic commands
2) Dynamic commands and constraints
Check command shape before execution, then call with explicit arguments and JSON output.
# inspect site commands
mediause <site> -h
mediause <site> <capability> -h

# run dynamic semantic action
mediause <site> <capability> <action> --json

# recommended constraints
# 1. always bind a valid account context when required
# 2. respect site auth/read-only mode
# 3. keep explicit args (url/text/limit) and avoid ambiguous prompts
# 4. keep --json for stable agent parsing
3) Official generated skill docs
The generated skill documentation lives in the official repository.
https://github.com/mediause/agent-skills
4) Build your own plugin and skill
You can create your own site plugin and corresponding skill, then use them for free.
  • Define semantic actions around your own business workflow
  • Package the site plugin and its skill doc together
  • Run with the same MediaUse dynamic command contract
  • Custom plugin and skill usage is free