VectorGuard Nano
Analysis
This skill does not show data theft or destructive behavior, but it overstates weak reversible obfuscation as secure messaging.
Findings (2)
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.
Perfect for Moltbook posts, Telegram, Slack, or IPFS links — prevents plain-text leaks... For unbreakable model-bound cryptography... license the full VectorGuard system
The skill is marketed as secure messaging for public or third-party channels and uses strong security/upsell language, but the included implementation is only reversible string tumbling rather than vetted authenticated encryption.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
const shifted = (code + delta + 65536) % 65536; ... export function secureReceive(encoded, secret, senderId, ts) { return decode(encoded, secret, senderId, ts); }Receiving a message only reverses a character shift using the provided secret/id/timestamp; there is no MAC/tag verification, sender authentication, or tamper detection despite the secure agent-communication framing.
