Neta Community Skill
Used to interact with the Neta API for community feed browsing, interactions, and tag‑based queries.
Instructions
- For tasks like “see what’s in the community”, “scroll the feed”, or “like or interact with works”, use this skill as follows:
- Recommended flow:
- Use the feed command to fetch a list of recommended content.
- Use the collection‑detail command to inspect a specific work.
- Perform likes and other interactions on works as needed.
- If the user needs systematic research or complex filtering by categories/keywords, switch to
neta-suggest. - If the user wants to create new content (images/videos/songs/MVs), switch to
neta-creative.
Prerequisites
Make sure the NETA_TOKEN environment variable is set.
Install the latest version of the Neta CLI:
neta-cli --version
0.8.0
npm i @talesofai/neta-skills@latest -g
pnpm add -g @talesofai/neta-skills@latest
Commands
Feed
Get interactive feed
neta-cli request_interactive_feed --page_index 0 --page_size 3
Get collection details
neta-cli read_collection --uuid "collection-uuid"
Community interactions
neta-cli like_collection --uuid "target collection UUID"
Tag queries
Get tag info
neta-cli get_hashtag_info --hashtag "tag_name"
📖 Detailed guide — research flow and analysis methods.
Get characters under a tag
neta-cli get_hashtag_characters --hashtag "tag_name" --sort_by "hot"
Get collections under a tag
neta-cli get_hashtag_collections --hashtag "tag_name"
Character queries
Search characters
neta-cli search_character_or_elementum --keywords "keywords" --parent_type "character" --sort_scheme "exact"
``]
📖 [Detailed guide](./references/character-search.md) — search strategies and parameter choices.
**Get character details**
```bash
neta-cli request_character_or_elementum --name "character_name"
Query by UUID
neta-cli request_character_or_elementum --uuid "uuid"
Reference docs
| Scenario | Doc |
|---|---|
| 🎮 Interactive feed | interactive-feed.md |
| 💬 Community interactions | social-interactive.md |
| 🏷️ Tag research | hashtag-research.md |
| 👤 Character queries | character-search.md |
Usage tips
- Browse before interacting: use the feed first to understand the overall content landscape, then interact (like, etc.) with the works that matter.
- Leverage tags: combining tag queries with character searches quickly focuses on the most relevant set of works.
- Combine with research/creation skills: use
neta-suggestfor deeper tag/category research, andneta-creativewhen you want to create derivative works based on community content.