$npx -y skills add talesofai/neta-skills --skill neta-communityNeta API community skill — browse interactive feeds, view collection details, like and interact with content, and browse content by tags and characters in a community context. Use this skill when the user wants to “see what people are making”, “scroll the feed”, or “interact with
| 1 | # Neta Community Skill |
| 2 | |
| 3 | Used to interact with the Neta API for community feed browsing, interactions, and tag‑based queries. |
| 4 | |
| 5 | ## Instructions |
| 6 | |
| 7 | 1. For tasks like **“see what’s in the community”**, **“scroll the feed”**, or **“like or interact with works”**, use this skill as follows: |
| 8 | 2. Recommended flow: |
| 9 | - Use the feed command to fetch a list of recommended content. |
| 10 | - Use the collection‑detail command to inspect a specific work. |
| 11 | - Perform likes and other interactions on works as needed. |
| 12 | 3. If the user needs **systematic research or complex filtering by categories/keywords**, switch to `neta-suggest`. |
| 13 | 4. If the user wants to **create new content** (images/videos/songs/MVs), switch to `neta-creative`. |
| 14 | |
| 15 | ## Commands |
| 16 | |
| 17 | ### Collection |
| 18 | |
| 19 | **Get collection details** |
| 20 | |
| 21 | ```bash |
| 22 | npx -y @talesofai/neta-skills@latest read_collection --uuid "collection-uuid" |
| 23 | ``` |
| 24 | |
| 25 | 📖 [Detailed guide](./references/interactive-feed.md) |
| 26 | |
| 27 | ### Community interactions |
| 28 | |
| 29 | ```bash |
| 30 | npx -y @talesofai/neta-skills@latest like_collection --uuid "target collection UUID" |
| 31 | ``` |
| 32 | |
| 33 | 📖 [Detailed guide](./references/social-interactive.md) |
| 34 | |
| 35 | ### Tag queries |
| 36 | |
| 37 | **Get tag info** |
| 38 | |
| 39 | ```bash |
| 40 | npx -y @talesofai/neta-skills@latest get_hashtag_info --hashtag "tag_name" |
| 41 | ``` |
| 42 | |
| 43 | 📖 [Detailed guide](./references/hashtag-research.md) — research flow and analysis methods. |
| 44 | |
| 45 | **Get characters under a tag** |
| 46 | |
| 47 | ```bash |
| 48 | npx -y @talesofai/neta-skills@latest get_hashtag_characters --hashtag "tag_name" --sort_by "hot" |
| 49 | ``` |
| 50 | |
| 51 | **Get collections under a tag** |
| 52 | |
| 53 | ```bash |
| 54 | npx -y @talesofai/neta-skills@latest get_hashtag_collections --hashtag "tag_name" |
| 55 | ``` |
| 56 | |
| 57 | ### Character queries |
| 58 | |
| 59 | **Search characters** |
| 60 | |
| 61 | ```bash |
| 62 | npx -y @talesofai/neta-skills@latest search_character_or_elementum --keywords "keywords" --parent_type "character" --sort_scheme "exact" |
| 63 | ``] |
| 64 | |
| 65 | 📖 [Detailed guide](./references/character-search.md) — search strategies and parameter choices. |
| 66 | |
| 67 | **Get character details** |
| 68 | |
| 69 | ```bash |
| 70 | npx -y @talesofai/neta-skills@latest request_character_or_elementum --name "character_name" |
| 71 | ``` |
| 72 | |
| 73 | **Query by UUID** |
| 74 | |
| 75 | ```bash |
| 76 | npx -y @talesofai/neta-skills@latest request_character_or_elementum --uuid "uuid" |
| 77 | ``` |
| 78 | |
| 79 | ## Reference docs |
| 80 | |
| 81 | | Scenario | Doc | |
| 82 | |--------------------------|---------------------------------------------------| |
| 83 | | 💬 Community interactions| [social-interactive.md](./references/social-interactive.md) | |
| 84 | | 🏷️ Tag research | [hashtag-research.md](./references/hashtag-research.md) | |
| 85 | | 👤 Character queries | [character-search.md](./references/character-search.md) | |
| 86 | |
| 87 | ## Usage tips |
| 88 | |
| 89 | 1. **Browse before interacting**: use the feed first to understand the overall content landscape, then interact (like, etc.) with the works that matter. |
| 90 | 2. **Leverage tags**: combining tag queries with character searches quickly focuses on the most relevant set of works. |
| 91 | 3. **Combine with research/creation skills**: use `neta-suggest` for deeper tag/category research, and `neta-creative` when you want to create derivative works based on community content. |