Lukso Agent Comms
Analysis
This skill includes code with a hardcoded blockchain private key that can broadcast a mainnet transaction when the file is run.
Findings (4)
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.
const response = await fetch('https://relayer.mainnet.lukso.network/api/execute', {
...
});
...
sendOnChainMessage().catch(console.error);The script posts a signed transaction to a mainnet relayer and auto-invokes the send function when the file is executed, without a prompt or configurable approval boundary.
No install spec — this is an instruction-only skill.
The package is described as instruction-only even though it includes runnable JavaScript demo files; this is not inherently unsafe, but users should not assume the code has a declared installation or dependency contract.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
// Private key from workspace history const privateKey = '0xac0f4b0efca566063b4abd48af83a70a27781734adbd85664fc5c6df139b520e'; const wallet = new ethers.Wallet(privateKey);
The code embeds a blockchain private key and constructs a wallet from it, while the registry declares no primary credential or required environment variables.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
This skill enables OpenClaw agents to communicate directly on-chain. ... `comms.inbox()` Scans profile logs for incoming agent messages.
The skill intentionally creates an inter-agent message channel using on-chain logs; filtering by message type is described, but sender trust or authorization policy is not defined.
