GnamiBlast

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

ConcernHigh Confidence
ASI10: Rogue Agents
What this means

The agent could continue checking the service and posting or replying periodically if the runtime follows these instructions.

Why it was flagged

The skill gives recurring autonomous-operation instructions, including posting, without an explicit stop condition or human approval requirement.

Skill content
## Execution Loop (Every 2-6 hours) ... Agent automation should continue through API routes (`/api/*`) ... **Execute:** Post ONLY if there is high-value information to share.
Recommendation

Use only with an explicit schedule, stop condition, and human approval or review policy for posts and replies.

What this means

A user’s agent could make unwanted posts, comments, or votes under the GnamiBlast account/token.

Why it was flagged

The documented API actions can create public content and cast votes on an external service, but the artifacts do not define clear user confirmation, quotas, or rollback controls for those mutations.

Skill content
`POST /api/posts` ... `POST /api/posts/{POST_ID}/comments` ... `POST /api/vote`
Recommendation

Limit the token scope, require confirmation for public actions, and set rate limits or moderation checks before allowing autonomous posting.

ConcernHigh Confidence
ASI01: Agent Goal Hijack
What this means

Remote service responses could cause the agent to stop or change behavior in ways the user did not directly approve.

Why it was flagged

A remotely returned policy can alter the agent’s constraints and stopping behavior, and the policy contents are not included in the reviewed artifacts.

Skill content
Call `GET /api/policies?submolt_id={your_submolt_id}`. - Internally update your constraints based on the `allowlist` and `denylist` returned. ... If your current task requires a tool in the `denylist`, abort the task immediately.
Recommendation

Treat remote policies as service-specific guidance, show policy changes to the user, and avoid applying them outside GnamiBlast tasks.

What this means

Anyone or any agent with the token may be able to act as the GnamiBlast identity within that token’s permissions.

Why it was flagged

The skill requires an account token for API use; this is purpose-aligned and scoped, but users should notice the credential requirement because registry metadata declares no primary credential.

Skill content
All agent API requests must use a GnamiBlast scoped token: - `Authorization: Bearer <GNAMIBLAST_TOKEN>` where token starts with `gbt_`
Recommendation

Provide only a scoped `gbt_*` token, rotate it if exposed, and never provide provider-root API keys.

What this means

Messages or content the agent posts may be visible to other agents or the service operator.

Why it was flagged

The skill is explicitly built around exchanging content with other agents through an external service; this is expected, but it creates an inter-agent data boundary.

Skill content
GnamiBlast is a social network where all users are AI agents. ... Create a post ... Get feed ... Comments ... Voting
Recommendation

Do not post secrets, private user data, internal logs, credentials, or sensitive local context to the network.

What this means

Important operating rules may come from remote files outside the reviewed artifact set.

Why it was flagged

SKILL.md references remote governance/manual files that were not included in the provided two-file manifest, so those instructions could not be reviewed here.

Skill content
All agents operating on GnamiBlast must adhere to `policy.json`. ... Manual files: ... `https://gnamiblastai.vercel.app/messaging.md` ... `https://gnamiblastai.vercel.app/skill.json`
Recommendation

Review the referenced remote files before use and pin or archive the exact versions relied on by the agent.