neta-space

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Neta Space Skill

Neta Space 技能

Used to interact with the Neta API to browse space‑level content.
用于与Neta API交互,浏览空间级内容。

Instructions

使用说明

  1. For tasks like “what spaces/activities exist?” or “what is the structure and lore of a given space?”, organize queries as follows:
  2. Recommended workflow:
    • List all spaces.
    • For a chosen space, fetch its details (lore, activities, metrics).
    • Fetch sub‑spaces and their official/user collections.
    • If needed, fetch characters and playable content inside the space.
  3. If the user says “now generate an image/video/song for this space”, first collect the relevant space/collection info here, then switch to
    neta-creative
    for creation.
  1. 对于诸如**“存在哪些空间/活动?”“指定空间的结构与设定是什么?”**这类任务,按以下方式组织查询:
  2. 推荐工作流:
    • 列出所有空间。
    • 针对选定空间,获取其详细信息(设定、活动、数据指标)。
    • 获取子空间及其官方/用户合集(Collection)。
    • 如有需要,获取空间内的角色与可游玩内容。
  3. 如果用户说“现在为这个空间生成图片/视频/歌曲”,请先在此收集相关空间/合集信息,再切换至
    neta-creative
    进行创作。

Space concepts

空间概念

A space is a themed collection of gameplay experiences — a scene where content is produced and consumed.
空间是主题化的玩法体验合集——是内容生产与消费的场景。

Terminology

术语定义

  • Hashtag: tag/space. Used to build worlds and organize communities.
  • Collection: browseable/remixable/editable content; can also refer to events, scenes, or gameplay within a space.
  • Activity: a special hashtag driven by official events.
  • Hashtag:话题标签/空间。用于构建世界和组织社区。
  • Collection:可浏览/再创作/编辑的内容;也可指代空间内的活动、场景或玩法。
  • Activity:由官方活动驱动的特殊Hashtag。

Space structure

空间结构

  • Space
    • Lore/worldbuilding (lore)
    • Characters
    • Collections
    • Sub‑spaces
      • official_collections
      • collections
  • 空间
    • 设定/世界构建(lore)
    • 角色
    • 合集(Collections)
    • 子空间
      • official_collections
      • collections

Workflow

工作流

  • List all spaces:
    list_spaces
  • Get space details:
    get_hashtag_info
  • Get sub‑spaces:
    list_space_topics
  • Get content in a space or sub‑space:
    get_hashtag_collections
    ,
    get_hashtag_characters
  • 列出所有空间:
    list_spaces
  • 获取空间详情:
    get_hashtag_info
  • 获取子空间:
    list_space_topics
  • 获取空间或子空间内的内容:
    get_hashtag_collections
    ,
    get_hashtag_characters

List available spaces

列出可用空间

bash
npx -y @talesofai/neta-skills@latest list_spaces
Response fields
  • space_uuid
    : UUID of the space
  • name
    : space name
  • main_hashtag_name
    : main hashtag
  • topic_count
    : number of sub‑spaces (topics)
bash
npx -y @talesofai/neta-skills@latest list_spaces
响应字段
  • space_uuid
    :空间的UUID
  • name
    :空间名称
  • main_hashtag_name
    :主Hashtag
  • topic_count
    :子空间(话题)数量

Get detailed space info

获取空间详细信息

bash
npx -y @talesofai/neta-skills@latest get_hashtag_info --hashtag "space_tag_name"
Response includes:
  • Tag lore (worldbuilding)
  • Activity details
  • Popularity metrics
  • Subscription count
bash
npx -y @talesofai/neta-skills@latest get_hashtag_info --hashtag "space_tag_name"
响应包含:
  • 标签设定(世界构建)
  • 活动详情
  • 热度数据指标
  • 订阅数

Get sub‑spaces

获取子空间

bash
npx -y @talesofai/neta-skills@latest list_space_topics --space_uuid "space UUID"
Response includes:
  • primary_topic
    : main topic
  • topics
    : list of sub‑spaces
    • official_collections
bash
npx -y @talesofai/neta-skills@latest list_space_topics --space_uuid "space UUID"
响应包含:
  • primary_topic
    :主话题
  • topics
    :子空间列表
    • official_collections

Get characters in a space

获取空间内的角色

bash
npx -y @talesofai/neta-skills@latest get_hashtag_characters --hashtag "space_tag_name" --sort_by "hot"
bash
npx -y @talesofai/neta-skills@latest get_hashtag_characters --hashtag "space_tag_name" --sort_by "hot"

Get scenes/events/content in a space

获取空间内的场景/活动/内容

bash
npx -y @talesofai/neta-skills@latest get_hashtag_collections --hashtag "tag_name"
bash
npx -y @talesofai/neta-skills@latest get_hashtag_collections --hashtag "tag_name"

Get detailed info for a specific gameplay

获取特定玩法的详细信息

bash
npx -y @talesofai/neta-skills@latest read_collection --uuid "official_collections in topic | collections in hashtag"
bash
npx -y @talesofai/neta-skills@latest read_collection --uuid "official_collections in topic | collections in hashtag"

Content creation

内容创作

For content creation within a space, use the dedicated creative skill:
bash
npx skills add talesofai/neta-skills/skills/neta-creative
若要在空间内进行内容创作,请使用专用的创作技能:
bash
npx skills add talesofai/neta-skills/skills/neta-creative