$npx -y skills add talesofai/neta-skills --skill netaNeta 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
| 1 | # Neta Skill |
| 2 | |
| 3 | Used for **overview and routing** of Neta-related skills, rather than executing concrete commands directly. |
| 4 | |
| 5 | > 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. |
| 6 | |
| 7 | ## Installing sub-skills |
| 8 | |
| 9 | In environments that support `skills add`, install sub-skills as needed: |
| 10 | |
| 11 | ```bash |
| 12 | # Spaces and worldbuilding |
| 13 | npx skills add talesofai/neta-skills/skills/neta-space |
| 14 | |
| 15 | # Creative content (images/videos/songs/MVs) |
| 16 | npx skills add talesofai/neta-skills/skills/neta-creative |
| 17 | |
| 18 | # Community browsing and interactions |
| 19 | npx skills add talesofai/neta-skills/skills/neta-community |
| 20 | |
| 21 | # Research and content suggestions |
| 22 | npx skills add talesofai/neta-skills/skills/neta-suggest |
| 23 | |
| 24 | # Character creation and management |
| 25 | npx skills add talesofai/neta-skills/skills/neta-character |
| 26 | |
| 27 | # Elementum (visual style/concept) creation and management |
| 28 | npx skills add talesofai/neta-skills/skills/neta-elementum |
| 29 | |
| 30 | # Interactive story adventures (Adventure Campaigns) |
| 31 | npx skills add talesofai/neta-skills/skills/neta-adventure |
| 32 | ``` |
| 33 | |
| 34 | ## Instructions |
| 35 | |
| 36 | 1. **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". |
| 37 | 2. **Choose the corresponding sub-skill**: |
| 38 | - Spaces/worldbuilding/gameplay structure → use `neta-space` |
| 39 | - Image/video/song/MV creation and idea deconstruction → use `neta-creative` |
| 40 | - Crafting or playing AI-driven story campaigns (Adventure Campaigns) → use `neta-adventure` |
| 41 | - Browsing feeds, viewing collection details, liking/interacting, community-centric views → use `neta-community` |
| 42 | - Keyword/tag/category research and recommendation, progressive exploration from broad to narrow → use `neta-suggest` |
| 43 | - Creating or managing anime/cultural IP/original characters (VTokens/TCP/OC) → use `neta-character` |
| 44 | - Creating or managing visual style elements (scenes, props, clothing, poses, atmospheres, memes) → use `neta-elementum` |
| 45 | 3. Use this skill only when boundaries are unclear or when you need to explain which sub-skill to pick. |
| 46 | |
| 47 | **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. |
| 48 | |
| 49 | ## Capability map and sub-skill overview |
| 50 | |
| 51 | ### 1. Spaces and worldbuilding: `neta-space` |
| 52 | |
| 53 | Responsibilities: |
| 54 | |
| 55 | - List all available spaces. |
| 56 | - Fetch worldbuilding (lore) for spaces/hashtags. |
| 57 | - Fetch sub-spaces, characters, and gameplay collections within a space. |
| 58 | |
| 59 | Use when: |
| 60 | |
| 61 | - The user talks about "worlds/universes/spaces/scene settings". |
| 62 | - They want to browse gameplay and content organized by spaces/activities. |
| 63 | |
| 64 | See `skills/neta-space/SKILL.md` for full details. |
| 65 | |
| 66 | ### 2. Content creation: `neta-creative` |
| 67 | |
| 68 | Responsibilities: |
| 69 | |
| 70 | - Generate images, videos, songs, and MVs. |
| 71 | - Remove image backgrounds. |
| 72 | - Search and inspect characters (in a creation context). |
| 73 | - Deconstruct creative ideas from existing collections via `read_collection`. |
| 74 | |
| 75 | Use when: |
| 76 | |
| 77 | - The user wants to "create/edit images/videos/songs/MVs". |
| 78 | - They want to create based on character settings or stories. |
| 79 | - They want to analyze the creative intent behind an existing work. |
| 80 | |
| 81 | See `skills/neta-creative/SKILL.md` for full details. |
| 82 | |
| 83 | ### 3. Interactive story adventures: `neta-adventure` |
| 84 | |
| 85 | Responsibilities: |
| 86 | |
| 87 | - Create and update Adventure Campaigns (`create_adventure_campaign`, `update_adventure_campaign`). |
| 88 | - List the current user's campaigns (`list_my_adventure_campaigns`). |
| 89 | - Load full campaign details for play mode (`request_adventure_campaign`). |
| 90 | |
| 91 | Use when: |
| 92 | |
| 93 | - The user wants to design, write, or refine an interactive story / narrative campaign with plot, tasks, and governing rules. |
| 94 | - They want to run or continue a storytelling session as DM plus character roleplay from an existing campaign UUID. |
| 95 | |
| 96 | See `skills/neta-adventure/SKILL.md` for full details. |
| 97 | |
| 98 | ### 4. Community browsing and interactions: `neta-community` |
| 99 | |
| 100 | Responsibilities: |
| 101 | |
| 102 | - Fetch interactive recommendation feeds. |
| 103 | - View collection details (in a community context). |
| 104 | - Like/unlike or otherwise interact with content. |
| 105 | - Browse community content grouped by tags or characters. |
| 106 | |
| 107 | Use when: |
| 108 | |
| 109 | - The user says "show me what people are doing", "scroll the feed". |
| 110 | - They want to like or interact with specific |