Neta Creative Skill
Used to interact with the Neta API for multimedia content creation and creation‑related character queries.
Instructions
- For tasks that create or edit concrete assets (images, videos, songs, MVs, background removal), follow this flow:
- Before creation, use character queries to fetch canonical character settings, then generate images/videos/songs based on them.
- To reverse‑engineer creative ideas from an existing work, call
read_collection and combine the result with the guidance in the reference docs.
- If, during creation, you discover that the real need is more like “browse recommendations / casually explore / research topics”, combine this skill with
neta-community or neta-suggest instead of overloading this skill.
Prerequisites
Make sure the NETA_TOKEN environment variable is set.
Also ensure the latest Neta CLI is installed:
neta-cli --version
0.8.0
npm i @talesofai/neta-skills@latest -g
pnpm add -g @talesofai/neta-skills@latest
Commands
Content creation
Generate image
neta-cli make_image --prompt "@character_name, /elementum_name, ref_img-uuid, description1, description2" --aspect "3:4"
📖 Detailed guide — prompt structure, aspect ratio choices, examples.
Generate video
neta-cli make_video --image_source "image URL" --prompt "action description" --model "model_s"
📖 Detailed guide — motion description principles, model selection.
Generate song
neta-cli make_song --prompt "style description" --lyrics "lyrics content"
📖 Detailed guide — style prompts, lyrics format.
Create MV
Combine an audio track and video to create a full MV.
📖 Detailed guide — end‑to‑end workflow.
Remove background
neta-cli remove_background --input_image "image_url"
Character queries
Search characters
neta-cli search_character_or_elementum --keywords "keywords" --parent_type "character" --sort_scheme "exact"
📖 Detailed guide — search strategies and parameter choices.
Get character details
neta-cli request_character_or_elementum --name "character_name"
Query by UUID
neta-cli request_character_or_elementum --uuid "uuid"
Creative idea deconstruction
Derive creative ideas from a work
neta-cli read_collection --uuid "collection-uuid"
📖 Detailed guide
Reference docs