Source profileQuality 90/100

davepoon/buildwithclaude/plugins/all-skills/skills/muapi-media/SKILL.md

muapi-media

Discover current MuAPI image models and run one explicitly confirmed asynchronous image generation request with bounded polling. Use when an agent needs hosted image generation without hard-coding stale model endpoints or request IDs.

Source repository stars
3,359
Declared platforms
0
Static risk flags
0
Last source update
2026-08-24
Source checked
2026-08-26

Decision brief

What it does: where it fits

Use the bundled scripts/muapimedia.py CLI to discover current MuAPI image models and submit one explicitly confirmed image-generation request. The CLI uses the live catalog's name, category, and already-versioned endpoint fields, then polls the standard prediction result endpoin…

Best for

  • The user wants to find a current MuAPI image model.
  • An image workflow needs MuAPI's exact model endpoint rather than a remembered alias.
  • The user has explicitly approved a potentially billable image-generation request.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/davepoon/buildwithclaude --skill "plugins/all-skills/skills/muapi-media"
Safe inspection promptEditorial

Inspect the Agent Skill "muapi-media" from https://github.com/davepoon/buildwithclaude/blob/ebd20fe1d82fa74e9a2f94abfeff88090f6c758c/plugins/all-skills/skills/muapi-media/SKILL.md at commit ebd20fe1d82fa74e9a2f94abfeff88090f6c758c. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Setup

    Set the API key in the environment. Never pass it as a CLI argument or commit it:

    Set the API key in the environment. Never pass it as a CLI argument or commit it:bash export MUAPIAPIKEY="your-api-key"MUAPIBASEURL is optional and defaults to https://api.muapi.ai. Use it only for an approved compatible deployment.
  2. 02

    Workflow

    bash python3 scripts/muapimedia.py models --category image --query flux

    bash python3 scripts/muapimedia.py models --category image --query fluxThe public catalog currently returns a top-level models array. Image-generation entries use categories such as Text to Image and Image to Image; their endpoint values already include the /api/v1/ prefix. Choose an exact…json { "prompt": "A clean product photograph on a neutral background", "aspectratio": "1:1" }
  3. 03

    2. Prepare and review parameters

    json { "prompt": "A clean product photograph on a neutral background", "aspectratio": "1:1" }

    json { "prompt": "A clean product photograph on a neutral background", "aspectratio": "1:1" }Keep only fields supported by the selected model's current request contract. The catalog is a model directory, not a guarantee that every model accepts the same parameters. A prompt is required for this skill.
  4. 04

    When to use this skill

    This skill covers text-to-image and image-to-image workflows. Do not use it for MuAPI video, audio, 3D, chat, or model-training requests.

    The user wants to find a current MuAPI image model.An image workflow needs MuAPI's exact model endpoint rather than a remembered alias.The user has explicitly approved a potentially billable image-generation request.
  5. 05

    1. Discover current image models

    bash python3 scripts/muapimedia.py models --category image --query flux

    bash python3 scripts/muapimedia.py models --category image --query fluxThe public catalog currently returns a top-level models array. Image-generation entries use categories such as Text to Image and Image to Image; their endpoint values already include the /api/v1/ prefix. Choose an exact…

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score90/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars3,359SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
davepoon/buildwithclaude
Skill path
plugins/all-skills/skills/muapi-media/SKILL.md
Commit
ebd20fe1d82fa74e9a2f94abfeff88090f6c758c
License
MIT
Collected
2026-08-26
Default branch
main
View the original SKILL.md

MuAPI Media

Use the bundled scripts/muapi_media.py CLI to discover current MuAPI image models and submit one explicitly confirmed image-generation request. The CLI uses the live catalog's name, category, and already-versioned endpoint fields, then polls the standard prediction result endpoint. It does not assume that the catalog contains an inline request schema; add model-specific fields only from the current model contract.

When to use this skill

  • The user wants to find a current MuAPI image model.
  • An image workflow needs MuAPI's exact model endpoint rather than a remembered alias.
  • The user has explicitly approved a potentially billable image-generation request.
  • An asynchronous MuAPI prediction needs bounded status polling.

This skill covers text-to-image and image-to-image workflows. Do not use it for MuAPI video, audio, 3D, chat, or model-training requests.

Setup

Set the API key in the environment. Never pass it as a CLI argument or commit it:

export MUAPI_API_KEY="your-api-key"

MUAPI_BASE_URL is optional and defaults to https://api.muapi.ai. Use it only for an approved compatible deployment.

Workflow

1. Discover current image models

python3 scripts/muapi_media.py models --category image --query flux

The public catalog currently returns a top-level models array. Image-generation entries use categories such as Text to Image and Image to Image; their endpoint values already include the /api/v1/ prefix. Choose an exact model from this output immediately before generation.

2. Prepare and review parameters

{
  "prompt": "A clean product photograph on a neutral background",
  "aspect_ratio": "1:1"
}

Keep only fields supported by the selected model's current request contract. The catalog is a model directory, not a guarantee that every model accepts the same parameters. A prompt is required for this skill.

3. Confirm cost and generate once

python3 scripts/muapi_media.py generate \
  flux-dev \
  --params-file request.json \
  --confirm-paid

--confirm-paid is mandatory. The CLI sends exactly one generation POST, never retries an ambiguous POST, and polls only GET requests with a finite budget. The model argument may be the catalog model name or its exact /api/v1/... endpoint path.

Use --output to download the first completed artifact without sending the API key to the output host:

python3 scripts/muapi_media.py generate \
  flux-dev \
  --params-file request.json \
  --confirm-paid \
  --output ./muapi-output.png

Safety rules

  • Keep MUAPI_API_KEY server-side and out of logs, prompts, screenshots, and committed files.
  • Never retry a generation POST automatically. Require fresh user confirmation before another paid request.
  • Poll only with GET and stop at --max-polls.
  • Preserve the catalog endpoint path; do not prepend /api/v1/ to an endpoint that already has it.
  • Download only HTTPS output URLs and do not forward the API key to the output host.
  • Require human review for sensitive, regulated, or high-impact content.

Output

Commands write structured JSON to stdout. A successful generation includes the selected model, request ID, terminal status, output URLs, and—when requested—the local artifact path.

Official references

Frequently asked questions

What to verify before installation and use

What does the muapi-media source document cover?

Use the bundled scripts/muapimedia.py CLI to discover current MuAPI image models and submit one explicitly confirmed image-generation request. The CLI uses the live catalog's name, category, and already-versioned endpoint fields, then polls the standard prediction result endpoin…

How do I install muapi-media?

The source record exposes this install command: npx skills add https://github.com/davepoon/buildwithclaude --skill "plugins/all-skills/skills/muapi-media". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing

Computed 10029,095

garrytan/gbrain

bulk-ingestion

End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.

Computed 10024,975

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 1005,248

dotnet/skills

migrate-vstest-to-mtp

Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing

Computed 100146

oaustegard/claude-skills

featuring

Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre