Neta Community

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is mostly a normal Neta community integration, but it uses an undeclared account token and includes commands that can like, comment, favorite, or follow on the user's behalf.

Review this skill before installing. Only provide NETA_TOKEN if you trust the Neta CLI package and are comfortable with the agent using your account. Ask the agent to confirm before liking, commenting, favoriting, or following/unfollowing anything, and delete any local cache files after use.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If installed and used with a real token, the agent may be able to act as the user's Neta account for community interactions.

Why it was flagged

The skill requires an account/API token even though the registry metadata declares no required environment variables or primary credential; the token is then used with commands that can affect the user's Neta account.

Skill content
Make sure the `NETA_TOKEN` environment variable is set.
Recommendation

Declare NETA_TOKEN in metadata, document the token scope, and require explicit user approval before any account-changing action.

What this means

The agent could post comments, favorite content, or follow/unfollow users if it interprets a request broadly.

Why it was flagged

The reference docs expose public/account-mutating social actions, but the skill does not specify a confirmation boundary or limit when the agent may run them.

Skill content
`create_comment` — post a comment ... `subscribe_user` — follow/unfollow a user
Recommendation

Only allow these commands after the user explicitly selects the target and confirms the exact action and comment text.

What this means

The behavior ultimately depends on whatever version of the external npm package is installed at setup time.

Why it was flagged

The setup instructions use a global, unpinned '@latest' npm install. This is expected for a CLI-based skill, but the reviewed artifact does not include or pin the installed code.

Skill content
npm i @talesofai/neta-skills@latest -g
Recommendation

Install only from a trusted package source, consider pinning a known version, and review the package before providing a token.

What this means

Personalized Neta community data could remain on disk after the task and be read later by other local processes or users.

Why it was flagged

The docs suggest saving feed results locally. This is useful and purpose-aligned, but the cached output may contain personalized feed, draft, creator, or session-continuity data.

Skill content
Cache feed results to avoid repeated calls:

```bash
neta-cli request_interactive_feed --page_index 0 > /tmp/feed_cache.json
Recommendation

Store caches only in private locations, avoid caching sensitive responses, and delete temporary files when finished.