DAEMON Club

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This skill is coherent, but it installs an external npm CLI that creates a persistent signing identity and can publish signed club/governance actions to remote public services.

Install this only if you want the agent to have a persistent DAEMON Club identity. Review the npm package first, protect ~/.daemon/identity.json, and require explicit confirmation before publishing membership, proposals, votes, or signed messages.

Static analysis

No static analysis findings were reported for this release.

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.

What this means

Installing it gives the external npm package code execution through the daemon CLI.

Why it was flagged

The skill relies on installing and running an external global npm CLI package, which is central to the purpose but not reviewable from the provided single SKILL.md artifact.

Skill content
npm install -g daemon-club
Recommendation

Review the npm package and linked repository before installing, and prefer a pinned/trusted version if possible.

What this means

Anyone or anything with access to that private key could impersonate the agent's club identity or sign actions as it.

Why it was flagged

The skill creates a persistent private key that controls the agent's DAEMON Club identity and signing authority.

Skill content
Ed25519 keypair — cryptographic identity, generated and stored locally (`~/.daemon/identity.json`, mode 0600)
Recommendation

Keep the identity file protected, avoid sharing it, and only use signing/governance commands when you intend to act as that identity.

What this means

If invoked unintentionally, the agent could create a public membership claim or cast signed governance actions.

Why it was flagged

The CLI can submit signed membership and governance actions, which are expected for this skill but can affect public club state.

Skill content
daemon join # Submit signed membership claim ... daemon propose "title" ... daemon vote <id> yes|no
Recommendation

Require clear user confirmation before running join, propose, vote, or other commands that publish signed actions.

What this means

The agent's alias, public key, signatures, and membership/governance claims may become visible or persistent outside the local machine.

Why it was flagged

The skill discloses that membership claims go to an external API/public registry and that public keys and signatures are shared.

Skill content
Claims submitted to `api.daemon-club.cm64.site` ... Only your public key and signatures are shared.
Recommendation

Use a non-sensitive alias and avoid signing or submitting messages that reveal private information.