Maxxit Lazy Trader

WarnAudited by ClawScan on May 10, 2026.

Overview

This is a real trading skill, but it can place leveraged financial trades using account credentials, and the artifacts show weak safety/metadata boundaries plus a hardcoded broker login key indicator.

Install only if you intentionally want agent-assisted trading. Use small limits or testnet first, require manual confirmation for trades, verify MAXXIT_API_URL and any Zerodha/Kite login details, use revocable API keys, and monitor or clear the workspace logs/state between runs.

Findings (7)

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

If run by an agent or automation, it could commit a large share of the user's funds to leveraged long or short positions, causing real financial loss.

Why it was flagged

The script can derive a signal and submit an open-position request using 10x leverage and up to 80% of available balance by default, without a separate confirmation step inside the script.

Skill content
parser.add_argument("--leverage", type=int, default=10, ...); parser.add_argument("--utilization", type=float, default=0.8, ...); ... "collateral": round(collateral, 2), "leverage": LEVERAGE
Recommendation

Require explicit user confirmation for each trade, default to dry-run or testnet, cap leverage/collateral, and document how to stop or revoke automated strategies.

What this means

A user could be directed through a fixed broker application or wallet-linked login flow without clearly understanding whose app/account linkage is being used.

Why it was flagged

The static scan found a hardcoded Zerodha/Kite login URL containing an api_key parameter and a fixed wallet redirect parameter in the skill documentation.

Skill content
"login_url": "https://kite.zerodha.com/connect/login?api_key=[REDACTED]&v=3&redirect_params=userWallet%3D0x796a837c78326ba693847deebd7811d6b6854c56"
Recommendation

Remove hardcoded broker login credentials or wallet parameters; require user-specific configuration and clearly show the Kite app ID and redirect wallet before login.

What this means

Anyone or anything that can use this key may be able to view balances/positions and execute trades through the Maxxit API.

Why it was flagged

The scripts authenticate to the Maxxit trading API with a user-provided API key, which is expected for this skill but gives access to sensitive trading actions.

Skill content
MAXXIT_API_KEY = os.environ.get("MAXXIT_API_KEY") ... session.headers.update({"X-API-KEY": MAXXIT_API_KEY, "Content-Type": "application/json"})
Recommendation

Use a restricted, revocable API key if available; verify MAXXIT_API_URL is the intended Maxxit domain; revoke the key if the skill behaves unexpectedly.

What this means

Install-time metadata may not adequately warn users that the skill needs a trading API key and can execute financial transactions.

Why it was flagged

The registry metadata under-declares the required trading credential and capability compared with SKILL.md and the Python files.

Skill content
Required env vars: none ... Primary credential: none ... Capability signals: No capability tags were derived.
Recommendation

Update registry metadata to declare MAXXIT_API_KEY, MAXXIT_API_URL, trading/account-access capabilities, and any model-invocation restrictions.

What this means

Prior strategy state or logs can carry across runs and may reveal trading activity or influence later automated decisions.

Why it was flagged

The strategy helpers persist per-venue/per-symbol state and logs in the OpenClaw workspace.

Skill content
BASE_DIR = "/home/ubuntu/.openclaw/workspace" ... "state_file": os.path.join(BASE_DIR, f"{venue}_{base.lower()}_{safe_strategy}_state.json") ... LOG_DIR = os.path.join(BASE_DIR, "logs")
Recommendation

Review and clear workspace state/logs when changing strategies, symbols, or users; avoid storing credentials in logs.

What this means

Bad, stale, or manipulated signals from another trader/agent could be copied into real leveraged positions.

Why it was flagged

The skill's documented scope includes copy-trading, which can propagate another trader's or agent's actions into the user's own account.

Skill content
User wants to copy-trade or mirror another trader's positions
Recommendation

Use copy-trading only with explicit source review, position-size limits, stop-loss rules, and manual confirmation for high-value trades.

What this means

Users have less assurance that the package is the official Maxxit skill before granting it trading credentials.

Why it was flagged

The artifact set provides code but does not establish a verified source or install provenance, which matters more for a financial trading integration.

Skill content
Source: unknown ... No install spec — this is an instruction-only skill.
Recommendation

Verify the publisher, homepage, and GitHub/source package before installation, especially before setting real trading credentials.