Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

neta-creative内塔创意

Agent Skill

neta-creative 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,505

周安装

64

GitHub Stars

707

下载量

527
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:neta-creative(内塔创意)
来源仓库:https://github.com/talesofai/neta-skills
仓库路径:skills/neta-creative
安装命令:
npx skills add https://github.com/talesofai/neta-skills --skill neta-creative
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/talesofai/neta-skills --skill neta-creative

简介

neta-creative 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Neta Creative Skill

Used to interact with the Neta API for multimedia content creation, creation‑related character queries, and premium subscription flows where supported.

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.

  1. 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.
  2. 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.

Commands

Content creation

Generate image

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

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

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

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.

npx -y @talesofai/neta-skills@latest upload --file_path "/path/to/file.png"
# or: --file_path "https://example.com/asset.png"

📖 Media upload — supported types, size limits, and how outputs map to each downstream command.

Character queries

Search characters

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

npx -y @talesofai/neta-skills@latest request_character_or_elementum --name "character_name"

Query by UUID

npx -y @talesofai/neta-skills@latest request_character_or_elementum --uuid "uuid"

Creative idea deconstruction

Derive creative ideas from a work

npx -y @talesofai/neta-skills@latest read_collection --uuid "collection-uuid"

📖 Detailed guide

Premium subscription

Current plan (verify before / after upgrade)

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

npx -y @talesofai/neta-skills@latest list_premium_plans

Create an order

npx -y @talesofai/neta-skills@latest create_premium_order --spu_uuid "spu-uuid"

Get one order

npx -y @talesofai/neta-skills@latest get_premium_order --order_uuid "order-uuid"

List orders (paginated)

npx -y @talesofai/neta-skills@latest list_premium_orders --page_index 0 --page_size 20

Pay an unpaid order (Stripe Checkout)

npx -y @talesofai/neta-skills@latest pay_premium_order --order_uuid "order-uuid" --channel "stripe-checkout"

📖 Premium workflow and limits

Credits & your artifacts

AP (Action Points) is consumed by every generation command. Use these to monitor your balance and review generated output.

AP balance

npx -y @talesofai/neta-skills@latest get_ap_info

AP consumption history

npx -y @talesofai/neta-skills@latest get_ap_history --page_size 10

List your generated artifacts

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

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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.91%
按下载量换算210

Claude

27.6%
按下载量换算145

Cursor

17.08%
按下载量换算90

Gemini CLI

9.62%
按下载量换算51

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills