neta-creative

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Neta Creative Skill

Neta创意技能

Used to interact with the Neta API for multimedia content creation, creation‑related character queries, and premium subscription flows where supported.
用于与Neta API交互,实现多媒体内容创作、创作相关的角色查询,以及(在支持的情况下)高级订阅流程。

Instructions

使用说明

  1. 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.
  2. 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.
  3. Premium (plans, orders, Stripe): use the commands below. Run
    get_current_premium_plan
    before and after checkout so the user can confirm tier (and end time if returned). Commerce needs the global Neta API—see the premium reference. If creation is blocked by quota / credits (电量) or usage frequency (频率), say why in one beat; if an upgrade fits their goal, offer the path once (list plans → create order → pay)—do not repeat upgrade nudges in the same conversation unless the user asks.
  1. 对于创建或编辑具体资产(图片、视频、歌曲、MV、背景移除)的任务,请遵循以下流程:
    • 创建前,使用角色查询获取标准角色设定,再基于这些设定生成图片/视频/歌曲。
    • 要从现有作品中逆向推导创意,请调用
      read_collection
      并将结果与参考文档中的指南结合使用。
  2. 如果在创作过程中发现用户的实际需求更偏向“浏览推荐/随意探索/研究主题”,请将此技能与
    neta-community
    neta-suggest
    结合使用,不要过度使用本技能。
  3. 高级服务(套餐、订单、Stripe):使用以下命令。结账前后需运行**
    get_current_premium_plan
    ,以便用户确认套餐等级(若返回信息包含结束时间,也需确认)。商业功能需要调用全局Neta API——请查看高级服务参考文档。如果创作因配额/积分(电量)使用频率(频率)**被限制,请用一句话说明原因;如果升级套餐符合用户目标,可提供一次升级路径(列出套餐→创建订单→支付)——请勿在同一场对话中重复推送升级提示,除非用户主动询问。

Commands

命令

Content creation

内容创作

Generate image
bash
npx -y @talesofai/neta-skills@latest 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
bash
npx -y @talesofai/neta-skills@latest make_video --image_source "image URL" --prompt "action description" --model "model_s"
📖 Detailed guide — motion description principles, model selection.
Generate song
bash
npx -y @talesofai/neta-skills@latest 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
bash
npx -y @talesofai/neta-skills@latest remove_background --input_image "image_artifact_uuid"
Upload local image or video
Registers a file from disk or from an
http://
/
https://
URL
as a Neta artifact (after upload and moderation). Use the returned
uuid
or
url
in
make_image
(
ref_img-…
),
make_video
(
--image_source
URL),
remove_background
, or collection commands.
bash
npx -y @talesofai/neta-skills@latest upload --file_path "/path/to/file.png"
生成图片
bash
npx -y @talesofai/neta-skills@latest make_image --prompt "@character_name, /elementum_name, ref_img-uuid, description1, description2" --aspect "3:4"
📖 详细指南 —— 提示词结构、宽高比选项、示例。
生成视频
bash
npx -y @talesofai/neta-skills@latest make_video --image_source "image URL" --prompt "action description" --model "model_s"
📖 详细指南 —— 动作描述原则、模型选择。
生成歌曲
bash
npx -y @talesofai/neta-skills@latest make_song --prompt "style description" --lyrics "lyrics content"
📖 详细指南 —— 风格提示词、歌词格式。
创建MV
将音轨与视频结合,制作完整MV。
📖 详细指南 —— 端到端工作流程。
移除背景
bash
npx -y @talesofai/neta-skills@latest remove_background --input_image "image_artifact_uuid"
上传本地图片或视频
将本地磁盘文件
http://
/
https://
URL中的文件
注册为Neta资产(上传并审核后)。在
make_image
ref_img-…
)、
make_video
--image_source
URL)、
remove_background
或集合命令中使用返回的**
uuid
url
**。
bash
npx -y @talesofai/neta-skills@latest upload --file_path "/path/to/file.png"

📖 [Media upload](./references/media-upload.md) — supported types, size limits, and how outputs map to each downstream command.

📖 [媒体上传](./references/media-upload.md) —— 支持的类型、大小限制,以及输出结果如何映射到各下游命令。

Character queries

角色查询

Search characters
bash
npx -y @talesofai/neta-skills@latest search_character_or_elementum --keywords "keywords" --parent_type "character" --sort_scheme "exact"
📖 Detailed guide — search strategies and parameter choices.
Get character details
bash
npx -y @talesofai/neta-skills@latest request_character_or_elementum --name "character_name"
Query by UUID
bash
npx -y @talesofai/neta-skills@latest request_character_or_elementum --uuid "uuid"
搜索角色
bash
npx -y @talesofai/neta-skills@latest search_character_or_elementum --keywords "keywords" --parent_type "character" --sort_scheme "exact"
📖 详细指南 —— 搜索策略和参数选择。
获取角色详情
bash
npx -y @talesofai/neta-skills@latest request_character_or_elementum --name "character_name"
通过UUID查询
bash
npx -y @talesofai/neta-skills@latest request_character_or_elementum --uuid "uuid"

Creative idea deconstruction

创意解构

Derive creative ideas from a work
bash
npx -y @talesofai/neta-skills@latest read_collection --uuid "collection-uuid"
📖 Detailed guide
从作品中提取创意
bash
npx -y @talesofai/neta-skills@latest read_collection --uuid "collection-uuid"
📖 详细指南

Premium subscription

高级订阅

Current plan (verify before / after upgrade)
bash
npx -y @talesofai/neta-skills@latest get_current_premium_plan
Returns the signed-in user’s current tier (e.g. Basic, Starter, Pro, Master) and subscription end when applicable. Use it before starting checkout to record the baseline, and again after payment or renewal completes so the user can confirm the plan changed as expected.
List plans and SPU UUIDs
bash
npx -y @talesofai/neta-skills@latest list_premium_plans
Create an order
bash
npx -y @talesofai/neta-skills@latest create_premium_order --spu_uuid "spu-uuid"
Get one order
bash
npx -y @talesofai/neta-skills@latest get_premium_order --order_uuid "order-uuid"
List orders (paginated)
bash
npx -y @talesofai/neta-skills@latest list_premium_orders --page_index 0 --page_size 20
Pay an unpaid order (Stripe Checkout)
bash
npx -y @talesofai/neta-skills@latest pay_premium_order --order_uuid "order-uuid" --channel "stripe-checkout"
📖 Premium workflow and limits
当前套餐(升级前后验证)
bash
npx -y @talesofai/neta-skills@latest get_current_premium_plan
返回登录用户的当前套餐等级(如Basic、Starter、Pro、Master)及(适用时的)订阅结束时间。在开始结账前使用该命令记录基准状态,在支付或续费完成后再次使用,以便用户确认套餐已按预期变更。
列出套餐及SPU UUID
bash
npx -y @talesofai/neta-skills@latest list_premium_plans
创建订单
bash
npx -y @talesofai/neta-skills@latest create_premium_order --spu_uuid "spu-uuid"
获取单个订单
bash
npx -y @talesofai/neta-skills@latest get_premium_order --order_uuid "order-uuid"
列出订单(分页)
bash
npx -y @talesofai/neta-skills@latest list_premium_orders --page_index 0 --page_size 20
支付未付订单(Stripe结账)
bash
npx -y @talesofai/neta-skills@latest pay_premium_order --order_uuid "order-uuid" --channel "stripe-checkout"
📖 高级服务流程与限制

Credits & your artifacts

积分与你的资产

AP (Action Points) is consumed by every generation command. Use these to monitor your balance and review generated output.
AP balance
bash
npx -y @talesofai/neta-skills@latest get_ap_info
AP consumption history
bash
npx -y @talesofai/neta-skills@latest get_ap_history --page_size 10
List your generated artifacts
bash
npx -y @talesofai/neta-skills@latest list_my_artifacts --page_size 20
npx -y @talesofai/neta-skills@latest list_my_artifacts --modality PICTURE
npx -y @talesofai/neta-skills@latest list_my_artifacts --is_starred true
📖 AP credits guide · Artifacts guide
每个生成命令都会消耗AP(Action Points)。使用以下命令监控余额并查看生成的输出内容。
AP余额
bash
npx -y @talesofai/neta-skills@latest get_ap_info
AP消费历史
bash
npx -y @talesofai/neta-skills@latest get_ap_history --page_size 10
列出你的生成资产
bash
npx -y @talesofai/neta-skills@latest list_my_artifacts --page_size 20
npx -y @talesofai/neta-skills@latest list_my_artifacts --modality PICTURE
npx -y @talesofai/neta-skills@latest list_my_artifacts --is_starred true
📖 AP积分指南 · 资产指南

Reference docs

参考文档

ScenarioDoc
🎨 Image generationimage-generation.md
🎬 Video generationvideo-generation.md
🎵 Song generationsong-creation.md
🎞️ MV creationsong-mv.md
📤 Local media uploadmedia-upload.md
👤 Character queriescharacter-search.md
🖊️ Creative remixingcollection-remix.md
⭐ Premium / subscribepremium.md
💡 AP creditsap-credits.md
🖼️ My artifactsmy-artifacts.md
场景文档
🎨 图片生成image-generation.md
🎬 视频生成video-generation.md
🎵 歌曲生成song-creation.md
🎞️ MV创建song-mv.md
📤 本地媒体上传media-upload.md
👤 角色查询character-search.md
🖊️ 创意重构collection-remix.md
⭐ 高级服务/订阅premium.md
💡 AP积分ap-credits.md
🖼️ 我的资产my-artifacts.md