🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Maxun

by @rohitr311

List and run Maxun web scraping robots. Use when asked to list robots, run a robot, scrape a website, or get robot results.

Versionv1.0.2
Downloads853
Stars⭐ 1
TERMINAL
clawhub install maxun

πŸ“– About This Skill


name: maxun description: List and run Maxun web scraping robots. Use when asked to list robots, run a robot, scrape a website, or get robot results. argument-hint: "list | run | runs | result | get " metadata: openclaw: version: 1.0.0 homepage: https://www.maxun.dev emoji: "πŸ€–" user-invocable: true files: - scripts/* requires: env: - MAXUN_API_KEY bins: - bash - curl anyBins: - python3 primaryEnv: MAXUN_API_KEY

Maxun Skill

Maxun is a web scraping platform. The user has robots that scrape websites.

INSTRUCTIONS FOR THE AI MODEL

You have ONE job here: call the exec tool with the exact command strings below. Do not paraphrase. Do not guess. Copy the command string exactly.

ACTION: List all robots

When the user says anything like "list my robots", "show robots", "what robots do I have":

Call the exec tool. The command parameter must be this exact string:

maxun list

IMPORTANT: Do NOT append any words from the user's message as arguments. The command is always exactly maxun list β€” nothing after list.

After exec returns output, display it directly to the user as-is. The output IS the robot list. Do not interpret it, ask clarifying questions about it, or treat it as a new request. Just show it.

ACTION: Run a robot

When the user wants to run or scrape with a specific robot:

Step 1 β€” First get the robot ID by calling exec with:

maxun list

Step 2 β€” Find the robot ID from the output, then call exec with:

maxun run 
Replace with the actual ID string from step 1.

ACTION: List past runs

Call exec with:

maxun runs 

ACTION: Get a run result

Call exec with:

maxun result  

ACTION: Get robot details

Call exec with:

maxun get 

ACTION: Abort a run

Call exec with:

maxun abort  

Error Handling

  • No robots found β†’ tell user to create one at https://app.maxun.dev
  • Robot still running β†’ call exec with maxun result
  • Setup (for new installations)

    Add to ~/.openclaw/openclaw.json:

    "tools": {
      "exec": { "host": "gateway", "security": "full", "ask": "off" }
    },
    "env": {
      "MAXUN_API_KEY": "your-api-key-here"
    }