stable-layer-sdk
Analysis
The skill appears coherent and not clearly malicious, but it needs review because it centers on signed mainnet blockchain transactions using a raw private key and an external npm package with no included source.
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.
It supports minting and burning stablecoins, and claiming yield farming rewards... await suiClient.signAndExecuteTransaction({ transaction: tx, signer: keypair });The skill documents constructing and executing signed blockchain transactions that can move or alter financial assets, without explicit approval or transaction-review safeguards in the instructions.
npm install stable-layer-sdk @mysten/sui @mysten/bcs
The skill asks users to install external npm code, while the provided artifact set contains no SDK source and the registry metadata lists an unknown source/no homepage; this matters because that code would be used in a private-key blockchain transaction workflow.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
const keypair = Ed25519Keypair.fromSecretKey(YOUR_PRIVATE_KEY);
The example uses a raw private key to create a signer, which grants authority over the associated Sui account and assets.
