X Growth Automation

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.

What this means

If live mode is enabled, mistakes or unwanted drafts could be posted publicly from the user's account.

Why it was flagged

The skill can configure automation that posts publicly through the user's X account. The same instructions disclose safety controls, so this is purpose-aligned but important for users to notice.

Skill content
Treat X API as **write/publish layer**. ... Keep publish disabled by default unless the user explicitly asks for live publishing.
Recommendation

Start in dry-run, review generated drafts and schedules, set conservative daily/monthly caps, and enable live publishing only after explicit approval.

What this means

Anyone who obtains these credentials could potentially access or post through the connected X account, depending on token scope.

Why it was flagged

The scaffold prepares placeholders for X API credentials and session-style tokens. These are expected for X/Bird automation, but they are high-value account credentials.

Skill content
X_API_KEY=
X_API_SECRET=
X_ACCESS_TOKEN=
X_ACCESS_TOKEN_SECRET=
AUTH_TOKEN=
CT0=
Recommendation

Use least-privilege X API credentials, avoid pasting secrets into chat, store them only in a local .env or secret manager, and rotate them if exposed.

What this means

If pointed at an existing project, the script can overwrite scaffolded files such as README.md and config files.

Why it was flagged

The scaffold script writes files into the user-supplied target path. This is central to the skill's purpose and is disclosed, but the target directory should be chosen carefully.

Skill content
root = Path(args.path)
    root.mkdir(parents=True, exist_ok=True)

    write(root / "README.md", README)
Recommendation

Use a new empty folder unless intentionally adapting an existing repository, and review changes before committing or running any generated automation.