Neuroartist media
Skill CroissanStudioDev/neuroartist-api-skill/skills/neuroartist-media
Generate, edit, animate, and iterate on AI images/videos through the Neuroartist API using the `na` CLI. Use when the user asks for Neuroartist media generation, text-to-image, image-to-image, text-to-video, image-to-video, model discovery, cost estimates, queue status, or result downloads.From its SKILL.md
npx -y skills add CroissanStudioDev/neuroartist-api-skill --skill neuroartist-mediaAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.6 KB, 867 tokens by cl100k_base, as published. Nobody here has run it
Neuroartist Media
Use the Neuroartist CLI (na) as the primary interface for image and video generation. Prefer the CLI over direct HTTP because it provides stable JSON envelopes, exit codes, retries, SSE parsing, and asset downloads.
What This Skill Does
- Finds suitable Neuroartist models for image/video tasks.
- Reads model schemas before building inputs.
- Estimates credits before expensive generations.
- Runs image and short jobs with
na run. - Runs video and long jobs with
na queue. - Downloads generated assets and returns local paths plus public URLs.
Required Workflow
- Parse the request: media type, prompt, input image/video URL or file, aspect ratio, duration, quality, output folder, deadline, and whether this is a cheap draft or final render.
- Check CLI readiness when needed:
na doctor --json,na auth status --json, orna commands --json. - Discover the model if the user did not name one:
na models list --jsonwith a search term. - Read the model contract before using unfamiliar inputs:
na models schema <modelId> --json. - Build inputs from the schema. Do not guess parameter names when the schema is available.
- Estimate cost before expensive video, batch, or final-quality runs:
na models estimate <modelId> -i key=value --json. - Execute with the right transport:
- Use
na run <modelId> ... --jsonfor images and short jobs where waiting is reasonable. - Use
na queue submit,na queue stream --json, andna queue resultfor videos, slow models, or resumable jobs.
- Use
- Return a concise result: model, request id if any, final status, local paths, public URLs, cost/credits if present, seed/metadata if present, and a useful regeneration command.
Command Rules
- Always add
--jsonfor commands that support the stable envelope. - Use
-qwhen scripting and stderr progress is noisy. - Use
-yorCI=truefor non-interactive automation. - Keep stdout machine-readable. CLI progress and debug output belongs on stderr.
- Use named
-i key=valueinputs or--input-file body.json; never rely on positional payloads. - Save generated assets with
-o <dir>when the user asks for files or downstream work needs local paths. - Treat
na queue submitas non-idempotent: do not retry blindly after an unknown submit result.
Run vs Queue
Use na run when:
- The output is an image or a short synchronous task.
- The user asked for one quick result and can wait.
- You want automatic wait and asset download in one command.
Use na queue when:
- The output is video or a long-running model.
- The user asks for async behavior, progress, status, cancellation, or resumability.
- A timeout would be expensive or likely.
- You need lifecycle events with
na queue stream <modelId> <requestId> --json.
Error Handling
Use CLI exit codes and JSON error fields:
- Exit
3orerror.codelikeno_api_key: ask the user to runna auth loginor provide a configured profile. - Exit
4orerror.retryable: true: retry with short backoff, except after uncertainqueue submit. insufficient_balance: report the estimate and ask the user to top up before retrying.- 4xx input/schema errors: re-read
na models schema <modelId> --jsonand rebuild the input. - Timeout after submit: keep the
requestIdand usequeue status,queue stream, orqueue result.
Reference Files
Load these only when needed:
references/prompting.mdfor image/video prompt structure and repair.references/model-selection.mdfor model discovery, schema mapping, and cost estimates.references/workflows.mdfor step-by-step generation recipes.references/examples.mdfor copyable commands and response patterns.references/install.mdfor installation, verification, and marketplace packaging.
What ships with it: 5 files
19.7 KB alongside SKILL.md
references/
- examples.md4.2 KB
- install.md4.2 KB
- model-selection.md3.0 KB
- prompting.md4.6 KB
- workflows.md3.7 KB
Gives 0 of the 12 instructions most media documents skills give in 867 tokens
Counted across 157 of the 158 authors here whose files we hold, read 2026-08-07
- Provide posting time recommendationsin 7 of 157, across 5 files
- Track metrics over time to identify trendsin 6 of 157, across 2 files
- Read marketing context file before startingin 6 of 157, across 5 files
- Choose platforms based on audience presencein 6 of 157, across 4 files
- Adapt tone for each platformin 6 of 157, across 4 files
- Ensure data completeness before analysisin 5 of 157, across 1 file
- Compare metrics within same time periodsin 5 of 157, across 1 file
- Account for platform-specific benchmarksin 5 of 157, across 1 file
- Separate organic and paid metricsin 5 of 157, across 1 file
- Include context when interpreting resultsin 5 of 157, across 1 file
- Keep tweets under 280 charactersin 5 of 157, across 3 files
- Download top-K results with an attribution sidecarin 5 of 157, across 2 files
Said here and by no other author read
- use the na cli as the primary interface
- read model schemas before building inputs
- do not guess parameter names
- use na run for short jobs
- use na queue for videos and long jobs
- always add json flag for stable commands
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.