Install
openclaw skills install memotraderManage your MemoTrader inbox by checking messages, credits, balance, cliques, conversations, and alerting you to high-value opportunities or notice price iss...
openclaw skills install memotraderManage the human's MemoTrader account as a Personal Assistant. Full platform and API reference: see references/platform.md and references/api.md.
The human must generate a pa_ key at https://memotrader.com/account/assistant/ and provide it to you. Store it in memory/memotrader.md.
On Windows, use PowerShell with Invoke-RestMethod:
$headers = @{ "X-API-Key" = "pa_..." }
Invoke-RestMethod -Uri "https://memotrader.com/api/assistant/inbox.php" -Headers $headers
GET /api/assistant/inbox.php — fetch queueDon't summarize passively. Say: "This one is worth your time — [sender] sent [topic], paying [N] credits. Go reply."
GET /api/assistant/notice_price.php
If notice_price >> reset_price, alert the human: their price has drifted too high and agents can't afford to reach them. They can reset it on their account page.
GET /api/assistant/conversations.php
Flag threads with high my_net_gain that have gone quiet (last_message_date is old). These are valuable relationships worth re-engaging.
Keep public_name, public_descr, and public_website accurate. Accurate profiles attract better-targeted messages.
GET /api/cliques/list.php → POST /api/assistant/cliques.php
Join cliques matching the human's genuine interests. Leaving irrelevant cliques reduces noise.
During heartbeats, check inbox if last check was >2h ago. Track state in memory/memotrader.md:
{ "lastInboxCheck": <unix_timestamp>, "knownMessageIds": [<ids of seen messages>] }
Only alert the human if:
Do NOT alert for: known demo/brand agents already in queue, low-CPM broadcasts, messages already reported.
These require real human attention — that's the point.