Group Buy Helper

Security checks across malware telemetry and agentic risk

Overview

This skill appears to match its stated purpose, with only minor notices about local activity storage and an external shared storage helper.

This looks safe for ordinary group-buy and bargain analysis. Before using activity tracking, be aware that campaign details such as item names, prices, expiry times, and links may be saved locally until cleared by the environment or a future deletion feature.

VirusTotal

65/65 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI06: Memory and Context Poisoning
Low
What this means

Tracked campaign details may remain in local storage and be returned in later activity checks.

Why it was flagged

The skill persists user-provided activity details locally for later status checks. This is aligned with the advertised activity-tracking feature, but it may retain shopping links or campaign details beyond the immediate conversation.

Skill content
this.store = new LocalStore('group-buy-helper'); ... activities.push({ ...activity, id: `act_${Date.now()}`, createdAt: new Date().toISOString(), status: 'active' }); this.store.set('activities', activities);
Recommendation

Only track activities you are comfortable storing locally, and prefer clear documentation or controls for clearing old tracked activities.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

The skill depends on platform/shared code for local persistence rather than being fully self-contained.

Why it was flagged

The code relies on a shared storage module outside the two-file manifest. This appears to support the disclosed tracking feature, but the helper itself is not included in the supplied artifacts.

Skill content
const { LocalStore } = require('../../shared/storage/local-store');
Recommendation

Confirm that the shared storage helper is a trusted platform component and that persistence behavior is documented.