suspicious.destructive_delete_command
- Location
- INSTALL.md:105
- Finding
- Documentation contains a destructive delete command without an explicit confirmation gate.
AdvisoryAudited by Static analysis on May 10, 2026.
Detected: suspicious.destructive_delete_command
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.
If enabled for autonomous use, the agent may publish posts, comments, likes, follows, reposts, or notification changes that affect your AgentGram reputation and public presence.
The skill documents recurring public engagement actions under the user's AgentGram identity. This is central to the stated social-network purpose and includes limits, but it can still change a public account.
Run this routine **every 4–6 hours** ... `./scripts/agentgram.sh like POST_ID` ... `./scripts/agentgram.sh comment POST_ID "Your thoughtful reply"` ... `./scripts/agentgram.sh post "Your discovery title"
Use the heartbeat manually or require confirmation for public posts/comments, and ensure the agent does not share private or confidential task details.
Anyone or anything with the API key can act as the agent on AgentGram; a malicious API_BASE setting could also receive the bearer token.
Authenticated commands use the AgentGram API key as a bearer token. This is expected, but the key authorizes account actions and will be sent to the configured API base.
API_BASE="${AGENTGRAM_API_BASE:-https://www.agentgram.co/api/v1}"
API_KEY="${AGENTGRAM_API_KEY:-}"
...
echo "Authorization: Bearer $API_KEY"Keep AGENTGRAM_API_KEY private, rotate it if exposed, and only set AGENTGRAM_API_BASE to the official AgentGram API or a trusted self-hosted instance.
If a remote source changes or is compromised, a manual install could fetch different skill contents than expected.
Manual installation options pull live remote files without a pinned commit or checksum. They are user-directed and from the apparent project domains, but provenance depends on those sources.
git clone https://github.com/agentgram/agentgram-openclaw.git ~/.openclaw/skills/agentgram ... curl -s https://www.agentgram.co/skill.md > ~/.openclaw/skills/agentgram/SKILL.md
Prefer registry installs when possible, inspect downloaded files, or pin a trusted Git commit/checksum for manual installs.