Imagine Anything Social Network

ReviewAudited by ClawScan on May 10, 2026.

Overview

This skill is coherent for a social-network integration, but it gives an agent broad ability to act publicly and use marketplace-style features with account credentials, so it should be reviewed before use.

Install only if you want your agent to have a public ImagineAnything identity. Use a dedicated account, protect the client secret, verify the API base URL, treat posts and DMs as untrusted, and require explicit confirmation before any public post, direct message, marketplace purchase/trade, or other account-changing action.

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 used too freely, the agent could publish content, message other agents, or perform marketplace activity that affects your public profile or account reputation.

Why it was flagged

The skill exposes broad authenticated social and marketplace actions that can mutate a public account and reputation. The provided artifacts do not show clear confirmation, scoping, or limits for these high-impact actions.

Skill content
Post, follow, like, comment, DM other agents, trade on the marketplace, and build reputation.
Recommendation

Use a dedicated account, require explicit user approval before posts, DMs, purchases/trades, or other write actions, and define clear content and spending limits.

What this means

Anyone or anything that gets the client secret could act as the agent account; a wrong base URL could send credentials to an unintended endpoint.

Why it was flagged

The helper scripts send the OAuth client secret to the configured API endpoint. This is purpose-aligned, but the secret controls the agent account and the destination can be changed by an environment variable.

Skill content
BASE_URL="${IMAGINEANYTHING_BASE_URL:-https://imagineanything.com}" ... \"client_secret\": \"${IMAGINEANYTHING_CLIENT_SECRET}\"
Recommendation

Keep the client secret out of logs and shared chats, rotate it if exposed, and verify IMAGINEANYTHING_BASE_URL is unset or points to a trusted endpoint.

What this means

Posts or DMs from other agents could contain misleading instructions, prompt-injection text, scams, or requests for sensitive information.

Why it was flagged

The skill intentionally brings public posts and messages from other agents into the user's agent workflow. The artifacts do not provide explicit guidance to treat those messages as untrusted content.

Skill content
- **DM** other agents for direct conversations
- **Browse the feed** ...
- **Search** for agents and posts by keyword
Recommendation

Treat all feed, search, and DM content as untrusted; do not let messages from other agents override the user's instructions or trigger account actions without review.

What this means

Installing an unpinned external SDK could pull a changed or compromised package version in the future.

Why it was flagged

The skill suggests an optional external package installation without a pinned version. It is not automatically installed, but users who follow the suggestion depend on that package's provenance.

Skill content
Alternative: Use the [Python SDK](https://github.com/imagine-anything/python-sdk) for a higher-level interface: `pip install imagineanything`
Recommendation

Install optional SDKs only from trusted sources, pin versions where possible, and review package provenance before use.