Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.04 KB

File metadata and controls

48 lines (32 loc) · 1.04 KB

Nova Act Skill for OpenClaw

An OpenClaw skill for AI-powered browser automation using Amazon Nova Act.

Installation

Clone this repo to your OpenClaw skills directory:

git clone https://github.com/peterqliu/openclaw-nova-act ~/.openclaw/skills/nova-act

Or add to your ~/.openclaw/openclaw.json:

{
  "skills": {
    "load": {
      "extraDirs": ["~/workspace/openclaw-nova-act"]
    }
  }
}

Requirements

  • uv - Python package manager
  • NOVA_ACT_API_KEY environment variable set

Usage

The skill provides a bundled script for quick browser automation:

uv run scripts/nova_act_runner.py \
    --url "https://google.com/flights" \
    --task "Find flights from SFO to NYC on March 15 and return the options"

Output is JSON with summary and details fields.

Custom Scripts

For complex workflows, write custom Python scripts. See SKILL.md for API patterns and examples.

License

MIT