Irenk_FNG
Analysis
This identity skill is purpose-aligned, but it asks you to run unreviewed Node scripts and pass sensitive keys or tokens on the command line.
Findings (3)
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.
`cd scripts && npm install && cd ..` followed by `node scripts/createNewEthereumIdentity.js`
The reviewed package is described as instruction-only with no code files present, but the skill instructs users to install dependencies and run helper scripts from a scripts directory. Those helpers and dependency manifests are not in the supplied artifacts, yet they would handle identity creation, signing, linking, and credential material.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
`node scripts/createNewEthereumIdentity.js --key <privateKeyHex>` and `node scripts/verifySignature.js --did <did> --token <token>`
The skill documents passing private keys and authentication/signature tokens as command-line arguments. These are high-value identity credentials and can be exposed through process arguments, shell history, logs, or agent-visible command transcripts.
`All identity data is stored in $HOME/.openclaw/billions` and `The created identity is automatically set as default.`
Persistent local identity state is expected for this kind of skill, but it means the skill creates and reuses durable identity material on the user's machine.
