An OpenClaw skill for AI-powered browser automation using Amazon Nova Act.
Clone this repo to your OpenClaw skills directory:
git clone https://github.com/peterqliu/openclaw-nova-act ~/.openclaw/skills/nova-actOr add to your ~/.openclaw/openclaw.json:
{
"skills": {
"load": {
"extraDirs": ["~/workspace/openclaw-nova-act"]
}
}
}- uv - Python package manager
NOVA_ACT_API_KEYenvironment variable set
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.
For complex workflows, write custom Python scripts. See SKILL.md for API patterns and examples.
MIT