Membership Manager

Security checks across malware telemetry and agentic risk

Overview

The skill appears to locally track user-entered membership details and expiry information, with no evidence of network access, credential use, or destructive behavior.

This skill looks safe for its stated purpose. Before using it, remember that membership details you enter may be saved locally for future reminders and analysis; avoid entering anything more sensitive than needed and check how to delete saved data if you no longer want it retained.

VirusTotal

64/64 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

Membership details such as platforms, levels, expiry dates, and benefit usage may remain stored for later use.

Why it was flagged

The skill saves membership records, expiry dates, benefits, and usage information in persistent local storage. This is expected for reminders and tracking, but it means user-entered membership data can be retained.

Skill content
this.store = new LocalStore('membership-manager'); ... this.store.set('memberships', memberships);
Recommendation

Only enter membership information you are comfortable storing locally, and provide or use a clear way to review and delete saved records if needed.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

The skill’s data-retention behavior depends partly on a shared helper that is not included in the visible skill package.

Why it was flagged

The code depends on a shared storage helper outside the two listed skill files. The import is purpose-aligned, but the exact storage behavior is not visible in the supplied skill files.

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

Treat this as a normal but noteworthy local-storage dependency; if privacy is important, confirm where the platform’s LocalStore keeps data and how it can be cleared.