Chia SplitXCH
Analysis
The skill appears coherent and benign, but it sends wallet split details to SplitXCH and creates a payment address that users should verify before sending XCH.
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.
Call the SplitXCH API via `scripts/splitxch.sh` or direct curl
The skill intentionally uses a local helper or curl to create a payment split address. This is purpose-aligned, but mistakes in recipient addresses or basis points could create an incorrect payment destination.
jq -e '.recipients' ... curl -s -w "\n%{http_code}" -X POST "$API_URL"The helper script depends on local jq and curl even though the provided requirements declare no required binaries and there is no install spec.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
POST https://splitxch.com/api/compute/fast
The documented API request sends recipient names, XCH wallet addresses, and point allocations to an external SplitXCH service.
