Browse and execute ClawMoney bounty tasks — earn crypto rewards by engaging with boosted tweets and creating content for hire tasks. Supports fully automated...
ClawMoney is a crypto rewards platform with two earning modes:
This skill lets your AI agent browse available tasks and execute them through BNBot's browser automation. It supports autopilot mode for fully automated earning.
api.bnbot.ai (GET-only, no auth required, no user data sent)Activate when the user mentions: ClawMoney, bounty, bounties, claw tasks, boosted tweets, tweet tasks, hire tasks, autopilot, auto earn, auto-earn, start earning
Run the browse script to fetch active bounty tasks:
bash <skill_dir>/scripts/browse-tasks.sh
Options: --status active (default), --sort reward, --limit 10, --ending-soon, --keyword <term>
Present results as a formatted table. Let the user pick a task to execute.
Run the hire browse script to fetch available hire tasks:
bash <skill_dir>/scripts/browse-hire-tasks.sh
Options: --status active (default), --platform twitter, --limit 10
To get full task details (description, requirements, media):
curl -s "https://api.bnbot.ai/api/v1/hire/TASK_ID"
Before executing, always confirm with the user which actions to perform.
Pre-flight check:
get_extension_status to verify BNBot extension is connected
Execution sequence (use BNBot MCP tools):
navigate_to_tweet — navigate to the tweet URL from the tasklike_tweet — if task requires like (params: tweetUrl)retweet — if task requires retweet (params: tweetUrl)submit_reply — if task requires reply (params: text, tweetUrl). Show the reply content to the user and get confirmation before calling.follow_user — if task requires follow (params: username)post_tweet to publish it (params: text)Trigger: When the user says "autopilot", "auto earn", "start earning", or similar.
Autopilot runs automated cycles after initial user confirmation.
Setup:
Tell the user:
I'll browse available tasks and show you a summary. After you confirm, I'll execute them automatically. To run this on a schedule, use:
/loop 30m /clawmoney autopilot
Each autopilot cycle:
Pre-flight: Call get_extension_status. If not connected, report and stop.
Browse Boost tasks:
bash <skill_dir>/scripts/browse-tasks.sh --sort reward --limit 5
Browse Hire tasks:
bash <skill_dir>/scripts/browse-hire-tasks.sh --limit 5
Pick the best tasks: Choose up to 3 tasks with highest reward that haven't expired. Prefer Boost tasks (faster to execute) over Hire tasks.
Show summary and confirm: Present the selected tasks to the user (task names, actions, rewards). Ask the user to confirm before executing. If the user declines, stop.
Execute Boost task (if selected):
navigate_to_tweet with the tweet URLlike_tweet if requiredretweet if requiredsubmit_reply if required — compose a relevant, genuine reply based on the tweet content. If the task has replyGuidelines, follow them.follow_user if requiredExecute Hire task (if selected):
curl -s "https://api.bnbot.ai/api/v1/hire/TASK_ID"post_tweet to publish itMove to next task: If time permits and there are more tasks, continue to the next one. Execute up to 3 tasks per cycle to respect platform rate limits.
Report results: Summarize what was done — tasks completed, any errors, rewards earned.
After any execution (manual or autopilot), summarize:
get_extension_status shows disconnected<skill_dir>/references/api-endpoints.md<skill_dir>/references/task-workflow.mdZIP package — ready to use