Buzz
Analysis
Buzz appears aligned with its news-push purpose, but it deserves review because its REST dashboard can be exposed without authentication while managing stored bot/API credentials and it installs runnable code from an external GitHub/npm source.
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.
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.
`POST /api/config` accepts partial updates... If `dashboard.password` is empty, the REST API is **unauthenticated**... The server binds to `0.0.0.0` by default.
The documented REST API can mutate runtime configuration, and the same artifact says the service may be unauthenticated and network-exposed by default.
git clone https://github.com/zxcnny930/buzz.git cd buzz npm install npm start
The setup runs code and dependencies fetched from an external repository at install time; this is user-directed and purpose-aligned, but the runnable app is not included or pinned in the provided artifacts.
Install, run, and manage a real-time news aggregator with Discord & Telegram push notifications. All configuration is done via REST API with hot-reload
The service is designed to keep running, poll sources, hot-reload settings, and send notifications; this persistence is expected for the stated purpose but should be understood before installation.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
`config.json` stores API keys, bot tokens, and webhook URLs locally... `telegram`: {`botToken`: `123456:ABC-DEF`}... `ai`: {`apiKey`: `xai-...`}The skill expects locally stored credentials for Discord/Telegram/webhook/AI integrations, which is aligned with push notifications but gives the service delegated account authority.
