Claude skill

The Axiom skill is a Claude Code plugin that turns a plain-language request into a working Axiom automation. Tell it what to scrape, click, or fill in, and it produces — and validates — one of two artifacts:

  • No-code automation — an AutomationTemplate it can save straight to your Axiom account, ready to run or schedule from the dashboard.
  • Coded automation — a runnable Node script using the @axiom_ai/api library, for driving a cloud browser from your own code.

If you don't have an account or API key yet, it can sign you up and mint one (see Programmatic signup).

Setup, build and run


Install

The skill is distributed as a Claude Code plugin. Add the marketplace and install it:

/plugin marketplace add axiom-browser-automation/claude-skill
/plugin install axiom@axiom-skills

Once the skill is listed in the community catalog you can install it directly instead:

/plugin install axiom@claude-plugins-community

Reload plugins or restart Claude Code. The skill activates automatically when a prompt mentions building an axiom, scraping a site, or setting up an automation.

Prerequisites

  • Claude Code, installed and signed in.
  • An Axiom API key. If you already have one, the skill reads it from your Claude Code settings. If you don't, ask it to set you up — it runs the programmatic signup flow, mints a key, and stores it in your settings (never echoed into the chat). Running cloud automations requires a paid Axiom plan — see Authentication.

Build an automation

Describe the automation in plain language and the skill picks the right path, builds the artifact, and validates it before handing it back. Example prompts:

  • "Build a no-code axiom that scrapes book titles and prices from books.toscrape.com and writes them to a Google Sheet."
  • "Write a Node script with @axiom_ai/api that logs into my dashboard and downloads the latest invoice."
  • "I don't have an Axiom account — set me up and mint an API key."
  • "Save that automation to my account and schedule it every weekday at 9am."

No-code path. The skill composes an AutomationTemplate, validates it against the live schema and step vocabulary, then offers to save it straight to your account. Decline, and it hands you the JSON file to import through the Chrome extension instead. Saved automations run and schedule from the dashboard like any other.

Coded path. The skill writes a Node script using the @axiom_ai/api library and validates it against the supported method surface before handing it over. Install the package, set AXIOM_API_KEY, and run it with node.

Run

The skill can save an automation to your account, attach a schedule, and trigger a run for you. It confirms before any action that writes to your account or spends cloud runtime, and double-checks anything irreversible. It builds automations; it doesn't troubleshoot live runs — for a failing automation, use the dashboard's run reports.

Source


The skill is open source at github.com/axiom-browser-automation/claude-skill.

Need help? Contact support or ask a question in our Reddit community.