$npx -y skills add talesofai/neta-skills --skill neta-suggestNeta API research and recommendation skill — provide keyword/tag/category suggestions, validate taxonomy paths, and power multi‑mode content feeds, supporting progressive exploration from broad to precise. Use this skill when the user has no clear goal, wants topic/idea suggestio
| 1 | # Neta Suggest Skill |
| 2 | |
| 3 | ## Instructions |
| 4 | |
| 5 | 1. For research‑type tasks like “find me some ideas”, “what’s trending now”, or “filter content by a theme/category”, follow this flow: |
| 6 | 2. Recommended path: **browse categories → discover tags → validate paths → fetch content** (the “Progressive Exploration” section below contains full command examples). |
| 7 | 3. Before content creation, use this skill to research topics/tags/categories, then hand off to `neta-creative` for concrete creation. |
| 8 | 4. When the user wants to like/comment or otherwise interact with specific works, switch to `neta-community`. |
| 9 | |
| 10 | ## Core capabilities |
| 11 | |
| 12 | ### 1. suggest_keywords — keyword suggestions |
| 13 | |
| 14 | Provide popular search keyword suggestions based on an input prefix, helping users discover directions of interest. |
| 15 | |
| 16 | ```bash |
| 17 | npx -y @talesofai/neta-skills@latest suggest_keywords --prefix "game" --size 20 |
| 18 | ``` |
| 19 | |
| 20 | **Parameters** |
| 21 | |
| 22 | - `--prefix`: keyword prefix (required) |
| 23 | - `--size`: number of results, recommended 10–20 (optional) |
| 24 | |
| 25 | **Use cases** |
| 26 | |
| 27 | - User only has a vague idea. |
| 28 | - Explore trending topics and themes. |
| 29 | - Prepare for later precise filtering. |
| 30 | |
| 31 | ### 2. suggest_tags — related tag suggestions |
| 32 | |
| 33 | Recommend related taxonomy tags based on a full keyword. |
| 34 | |
| 35 | ```bash |
| 36 | npx -y @talesofai/neta-skills@latest suggest_tags --keyword "character design" --size 15 |
| 37 | ``` |
| 38 | |
| 39 | **Parameters** |
| 40 | |
| 41 | - `--keyword`: full keyword (required) |
| 42 | - `--size`: number of results, recommended 10–20 (optional) |
| 43 | |
| 44 | **Use cases** |
| 45 | |
| 46 | - Understand which tags surround a topic. |
| 47 | - Discover popular tags in a vertical domain. |
| 48 | - Choose suitable tags for publishing content. |
| 49 | |
| 50 | ### 3. suggest_categories — category navigation |
| 51 | |
| 52 | Provide navigation suggestions in a 3‑level category hierarchy, supporting step‑by‑step exploration. |
| 53 | |
| 54 | ```bash |
| 55 | # Level 1 (top‑level categories) |
| 56 | npx -y @talesofai/neta-skills@latest suggest_categories --level 1 |
| 57 | |
| 58 | # Level 2 (requires parent path) |
| 59 | npx -y @talesofai/neta-skills@latest suggest_categories --level 2 --parent_path "Derivative Creation" |
| 60 | |
| 61 | # Level 3 (most granular) |
| 62 | npx -y @talesofai/neta-skills@latest suggest_categories --level 3 --parent_path "Derivative Creation>Fan Works" |
| 63 | ``` |
| 64 | |
| 65 | **Parameters** |
| 66 | |
| 67 | - `--level`: category level (1/2/3) (required) |
| 68 | - `--parent_path`: parent category path, required when level > 1 (optional) |
| 69 | |
| 70 | **Example taxonomy** |
| 71 | |
| 72 | ```text |
| 73 | Level 1 |
| 74 | ├─ Derivative Creation |
| 75 | │ ├─ Fan Works (Level 2) |
| 76 | │ │ ├─ Honkai: Star Rail (Level 3) |
| 77 | │ │ └─ Genshin Impact (Level 3) |
| 78 | │ └─ Digital Art |
| 79 | ├─ Lifestyle |
| 80 | └─ ... |
| 81 | ``` |
| 82 | |
| 83 | **Use cases** |
| 84 | |
| 85 | - Systematically understand the platform’s category structure. |
| 86 | - Navigate by following the tree to find specific domains. |
| 87 | - Validate candidate category paths. |
| 88 | |
| 89 | ### 4. validate_tax_path — validate taxonomy path |
| 90 | |
| 91 | Validate that a taxonomy path string is valid before using it. |
| 92 | |
| 93 | ```bash |
| 94 | npx -y @talesofai/neta-skills@latest validate_tax_path --tax_path "Derivative Creation>Fan Works>Honkai: Star Rail" |
| 95 | ``` |
| 96 | |
| 97 | **Parameters** |
| 98 | |
| 99 | - `--tax_path`: full taxonomy path (required) |
| 100 | |
| 101 | **Use cases** |
| 102 | |
| 103 | - Validate paths before using them in filters. |
| 104 | - Ensure taxonomy paths are accurate. |
| 105 | |
| 106 | ### 5. suggest_content — intelligent content feed |
| 107 | |
| 108 | Powerful content recommendation tool supporting three modes: **recommend**, **search**, and **exact**. |
| 109 | |
| 110 | ```bash |
| 111 | # Mode 1: recommend (broad exploration) |
| 112 | npx -y @talesofai/neta-skills@latest suggest_content \ |
| 113 | --page_index 0 \ |
| 114 | --page_size 20 \ |
| 115 | --scene agent_intent \ |
| 116 | --intent recommend |
| 117 | |
| 118 | # Mode 2: search (keyword‑based) |
| 119 | npx -y @talesofai/neta-skills@latest suggest_content \ |
| 120 | --page_index 0 \ |
| 121 | --page_size 20 \ |
| 122 | --scene agent_intent \ |
| 123 | --intent search \ |
| 124 | --search_keywords "character,creativity" |
| 125 | |
| 126 | # Mode 3: exact (category filtering) |
| 127 | npx -y @talesofai/neta-skills@latest suggest_content \ |
| 128 | --page_index 0 \ |
| 129 | --page_size 20 \ |
| 130 | --scene agent_intent \ |
| 131 | --intent exact \ |
| 132 | --tax_paths "Derivative Creation>Fan Works" |
| 133 | |
| 134 | # Combined filters |
| 135 | npx -y @talesofai/neta-skills@latest suggest_content \ |
| 136 | --page_index 0 \ |
| 137 | --page_size 20 \ |
| 138 | --scene agent_intent \ |
| 139 | --intent search \ |
| 140 | --search_keywords "AI,painting" \ |
| 141 | --tax_paths "Digital Art>Concept Art" \ |
| 142 | --exclude_keywords "test,discarded" |
| 143 | ``` |
| 144 | |
| 145 | **Parameters** |
| 146 | |
| 147 | - `--page_index`: page index, starting from 0 (default 0) |
| 148 | - `--page_size`: items per page, 1–40 (default 20) |
| 149 | - `--scene`: scene identifier (default `"agent_intent"`) |
| 150 | - `--biz_trace_id`: session trace ID (optional) |
| 151 | - `--intent`: `recommend` \| `search` \| `exact` (default `recommend`) |
| 152 | - `--search_keywords`: search keywords, separated by commas (optional) |
| 153 | - `--tax_paths`: tax |