Neta Skill
Used for overview and routing of Neta-related skills, rather than executing concrete commands directly.
This skill used to be a "kitchen-sink" Neta interaction skill. It has now been split into multiple focused skills. Prefer using the skills listed below; use this skill only to understand the capability map or when migrating from older docs.
Installing sub-skills
In environments that support skills add, install sub-skills as needed:
# Spaces and worldbuilding
npx skills add talesofai/neta-skills/skills/neta-space
# Creative content (images/videos/songs/MVs)
npx skills add talesofai/neta-skills/skills/neta-creative
# Community browsing and interactions
npx skills add talesofai/neta-skills/skills/neta-community
# Research and content suggestions
npx skills add talesofai/neta-skills/skills/neta-suggest
# Character creation and management
npx skills add talesofai/neta-skills/skills/neta-character
# Elementum (visual style/concept) creation and management
npx skills add talesofai/neta-skills/skills/neta-elementum
# Interactive story adventures (Adventure Campaigns)
npx skills add talesofai/neta-skills/skills/neta-adventure
Instructions
- Identify the task type: classify the user's need as one of: "space exploration", "content creation", "interactive story adventures", "community interaction", "research/recommendation", or "character creation/management".
- Choose the corresponding sub-skill:
- Spaces/worldbuilding/gameplay structure → use
neta-space
- Image/video/song/MV creation and idea deconstruction → use
neta-creative
- Crafting or playing AI-driven story campaigns (Adventure Campaigns) → use
neta-adventure
- Browsing feeds, viewing collection details, liking/interacting, community-centric views → use
neta-community
- Keyword/tag/category research and recommendation, progressive exploration from broad to narrow → use
neta-suggest
- Creating or managing anime/cultural IP/original characters (VTokens/TCP/OC) → use
neta-character
- Creating or managing visual style elements (scenes, props, clothing, poses, atmospheres, memes) → use
neta-elementum
- Use this skill only when boundaries are unclear or when you need to explain which sub-skill to pick.
Region / fallback: Device login is only supported when the CLI is using the global API host (see NETA_API_BASE_URL / talesofai.com). If the command errors with “not supported in the current region”, tell the user to authenticate via the NETA_TOKEN environment variable instead.
Capability map and sub-skill overview
1. Spaces and worldbuilding: neta-space
Responsibilities:
- List all available spaces.
- Fetch worldbuilding (lore) for spaces/hashtags.
- Fetch sub-spaces, characters, and gameplay collections within a space.
Use when:
- The user talks about "worlds/universes/spaces/scene settings".
- They want to browse gameplay and content organized by spaces/activities.
See skills/neta-space/SKILL.md for full details.
2. Content creation: neta-creative
Responsibilities:
- Generate images, videos, songs, and MVs.
- Remove image backgrounds.
- Search and inspect characters (in a creation context).
- Deconstruct creative ideas from existing collections via
read_collection.
Use when:
- The user wants to "create/edit images/videos/songs/MVs".
- They want to create based on character settings or stories.
- They want to analyze the creative intent behind an existing work.
See skills/neta-creative/SKILL.md for full details.
3. Interactive story adventures: neta-adventure
Responsibilities:
- Create and update Adventure Campaigns (
create_adventure_campaign, update_adventure_campaign).
- List the current user's campaigns (
list_my_adventure_campaigns).
- Load full campaign details for play mode (
request_adventure_campaign).
Use when:
- The user wants to design, write, or refine an interactive story / narrative campaign with plot, tasks, and governing rules.
- They want to run or continue a storytelling session as DM plus character roleplay from an existing campaign UUID.
See skills/neta-adventure/SKILL.md for full details.
4. Community browsing and interactions: neta-community
Responsibilities:
- Fetch interactive recommendation feeds.
- View collection details (in a community context).
- Like/unlike or otherwise interact with content.
- Browse community content grouped by tags or characters.
Use when:
- The user says "show me what people are doing", "scroll the feed".
- They want to like or interact with specific works.
See skills/neta-community/SKILL.md for full details.
5. Research and recommendation engine: neta-suggest
Responsibilities:
- Keyword suggestions (
suggest_keywords).
- Tag suggestions (
suggest_tags).
- Category navigation and path validation (
suggest_categories / validate_tax_path).
- Multi‑mode content feeds (
suggest_content).
Use when:
- The user has no clear target and wants ideas/topics.
- They want to understand popular tags/category structure/content distribution.
- They need systematic research before creating content.
See skills/neta-suggest/SKILL.md for full details.
6. Character creation and management: neta-character
Responsibilities:
- Create new characters as VTokens (Virtual Tokens, TCP/OC).
- Update existing character profiles (visual appearance, backstory, persona).
- Query and search for characters.
- Generate character preview images before creation.
Use when:
- The user wants to "create a new character", "make an OC", or "design a character".
- The user wants to "modify character settings", "update character backstory", or "change character appearance".
- The user wants to "list my characters" or "search for characters".
See skills/neta-character/SKILL.md for full details.
7. Elementum (visual style/concept) creation and management: neta-elementum
Responsibilities:
- Create new Elementa (visual concepts) as VTokens (TCP/Elementum).
- Update existing Elementum settings (representative images, prompts, descriptions).
- Query and search for Elementa.
- Generate visual previews before Elementum creation.
Use when:
- The user wants to "create a visual element", "make an Elementum", or "encapsulate a style".
- The user wants to create reusable visual concepts (scenes, props, clothing, poses, atmospheres, memes).
- The user wants to "list my Elementa" or "search for Elementa".
See skills/neta-elementum/SKILL.md for full details.
Migration notes (from legacy neta skill)
If you encounter older docs or scripts that call commands directly under neta, migrate them according to this table:
| Legacy capability |
New skill |
| Space/tag lore and space browsing |
neta-space |
| Image/video/song/MV creation |
neta-creative |
| Interactive story / Adventure Campaigns |
neta-adventure |
| Collection details, feeds, likes/interacts |
neta-community |
| Keyword/tag/category/recommendation research |
neta-suggest |
| Character creation and management |
neta-character |
| Elementum (visual style/concept) creation |
neta-elementum |
For new development, always prefer the focused sub-skills and avoid adding new command examples directly to this skill.
1---2name: neta3description: Neta capability index and routing skill - help choose the appropriate Neta-related skill (neta-space / neta-creative / neta-adventure / neta-community / neta-suggest). Use this skill when you need to understand Neta's overall capabilities, decide which skill fits the current task, or migrate from older documentation that referenced the monolithic neta skill.4---56# Neta Skill78Used for **overview and routing** of Neta-related skills, rather than executing concrete commands directly.910> This skill used to be a "kitchen-sink" Neta interaction skill. It has now been split into multiple focused skills. Prefer using the skills listed below; use this skill only to understand the capability map or when migrating from older docs.1112## Installing sub-skills1314In environments that support `skills add`, install sub-skills as needed:1516```bash17# Spaces and worldbuilding18npx skills add talesofai/neta-skills/skills/neta-space1920# Creative content (images/videos/songs/MVs)21npx skills add talesofai/neta-skills/skills/neta-creative2223# Community browsing and interactions24npx skills add talesofai/neta-skills/skills/neta-community2526# Research and content suggestions27npx skills add talesofai/neta-skills/skills/neta-suggest2829# Character creation and management30npx skills add talesofai/neta-skills/skills/neta-character3132# Elementum (visual style/concept) creation and management33npx skills add talesofai/neta-skills/skills/neta-elementum3435# Interactive story adventures (Adventure Campaigns)36npx skills add talesofai/neta-skills/skills/neta-adventure37```3839## Instructions40411. **Identify the task type**: classify the user's need as one of: "space exploration", "content creation", "interactive story adventures", "community interaction", "research/recommendation", or "character creation/management".422. **Choose the corresponding sub-skill**:43 - Spaces/worldbuilding/gameplay structure → use `neta-space`44 - Image/video/song/MV creation and idea deconstruction → use `neta-creative`45 - Crafting or playing AI-driven story campaigns (Adventure Campaigns) → use `neta-adventure`46 - Browsing feeds, viewing collection details, liking/interacting, community-centric views → use `neta-community`47 - Keyword/tag/category research and recommendation, progressive exploration from broad to narrow → use `neta-suggest`48 - Creating or managing anime/cultural IP/original characters (VTokens/TCP/OC) → use `neta-character`49 - Creating or managing visual style elements (scenes, props, clothing, poses, atmospheres, memes) → use `neta-elementum`503. Use this skill only when boundaries are unclear or when you need to explain which sub-skill to pick.5152**Region / fallback**: Device login is only supported when the CLI is using the **global** API host (see `NETA_API_BASE_URL` / `talesofai.com`). If the command errors with “not supported in the current region”, tell the user to authenticate via the **`NETA_TOKEN`** environment variable instead.5354## Capability map and sub-skill overview5556### 1. Spaces and worldbuilding: `neta-space`5758Responsibilities:5960- List all available spaces.61- Fetch worldbuilding (lore) for spaces/hashtags.62- Fetch sub-spaces, characters, and gameplay collections within a space.6364Use when:6566- The user talks about "worlds/universes/spaces/scene settings".67- They want to browse gameplay and content organized by spaces/activities.6869See `skills/neta-space/SKILL.md` for full details.7071### 2. Content creation: `neta-creative`7273Responsibilities:7475- Generate images, videos, songs, and MVs.76- Remove image backgrounds.77- Search and inspect characters (in a creation context).78- Deconstruct creative ideas from existing collections via `read_collection`.7980Use when:8182- The user wants to "create/edit images/videos/songs/MVs".83- They want to create based on character settings or stories.84- They want to analyze the creative intent behind an existing work.8586See `skills/neta-creative/SKILL.md` for full details.8788### 3. Interactive story adventures: `neta-adventure`8990Responsibilities:9192- Create and update Adventure Campaigns (`create_adventure_campaign`, `update_adventure_campaign`).93- List the current user's campaigns (`list_my_adventure_campaigns`).94- Load full campaign details for play mode (`request_adventure_campaign`).9596Use when:9798- The user wants to design, write, or refine an interactive story / narrative campaign with plot, tasks, and governing rules.99- They want to run or continue a storytelling session as DM plus character roleplay from an existing campaign UUID.100101See `skills/neta-adventure/SKILL.md` for full details.102103### 4. Community browsing and interactions: `neta-community`104105Responsibilities:106107- Fetch interactive recommendation feeds.108- View collection details (in a community context).109- Like/unlike or otherwise interact with content.110- Browse community content grouped by tags or characters.111112Use when:113114- The user says "show me what people are doing", "scroll the feed".115- They want to like or interact with specific works.116117See `skills/neta-community/SKILL.md` for full details.118119### 5. Research and recommendation engine: `neta-suggest`120121Responsibilities:122123- Keyword suggestions (`suggest_keywords`).124- Tag suggestions (`suggest_tags`).125- Category navigation and path validation (`suggest_categories` / `validate_tax_path`).126- Multi‑mode content feeds (`suggest_content`).127128Use when:129130- The user has no clear target and wants ideas/topics.131- They want to understand popular tags/category structure/content distribution.132- They need systematic research before creating content.133134See `skills/neta-suggest/SKILL.md` for full details.135136### 6. Character creation and management: `neta-character`137138Responsibilities:139140- Create new characters as VTokens (Virtual Tokens, TCP/OC).141- Update existing character profiles (visual appearance, backstory, persona).142- Query and search for characters.143- Generate character preview images before creation.144145Use when:146147- The user wants to "create a new character", "make an OC", or "design a character".148- The user wants to "modify character settings", "update character backstory", or "change character appearance".149- The user wants to "list my characters" or "search for characters".150151See `skills/neta-character/SKILL.md` for full details.152153### 7. Elementum (visual style/concept) creation and management: `neta-elementum`154155Responsibilities:156157- Create new Elementa (visual concepts) as VTokens (TCP/Elementum).158- Update existing Elementum settings (representative images, prompts, descriptions).159- Query and search for Elementa.160- Generate visual previews before Elementum creation.161162Use when:163164- The user wants to "create a visual element", "make an Elementum", or "encapsulate a style".165- The user wants to create reusable visual concepts (scenes, props, clothing, poses, atmospheres, memes).166- The user wants to "list my Elementa" or "search for Elementa".167168See `skills/neta-elementum/SKILL.md` for full details.169170## Migration notes (from legacy neta skill)171172If you encounter older docs or scripts that call commands directly under `neta`, migrate them according to this table:173174| Legacy capability | New skill |175|---------------------------------------------|------------------|176| Space/tag lore and space browsing | `neta-space` |177| Image/video/song/MV creation | `neta-creative` |178| Interactive story / Adventure Campaigns | `neta-adventure` |179| Collection details, feeds, likes/interacts | `neta-community` |180| Keyword/tag/category/recommendation research| `neta-suggest` |181| Character creation and management | `neta-character` |182| Elementum (visual style/concept) creation | `neta-elementum` |183184For new development, always prefer the focused sub-skills and avoid adding new command examples directly to this skill.185