X tweet publisher
Analysis
This appears to be a straightforward X/Twitter publishing skill, but it can post public content using your account credentials without an explicit approval gate.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
response = client.create_tweet(text=text)
The script directly invokes X's tweet creation API using the configured account. The shown publish path does not include an explicit human confirmation or dry-run step before this public write action.
pip3 install tweepy --user
The dependency install is purpose-aligned, but it is unpinned and not backed by a lockfile or install spec in the provided artifacts.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
export X_API_KEY="your-api-key" ... export X_ACCESS_TOKEN_SECRET="your-access-token-secret"
The skill requires X API credentials and access tokens, which are expected for posting but grant sensitive account authority.
