Turn your n8n workflows into reusable AI agent (OpenClaw-compatible) skills

Turn your n8n workflows into reusable AI agent skills

Ever wish your n8n workflows could be called directly by an AI agent?

I built n8n-to-claw, a CLI tool that converts n8n workflow JSON into OpenClaw-compatible skills (SKILL.md + skill.ts). An LLM handles the transpilation step.

Repo URL: https://github.com/just-claw-it/n8n-to-claw

Key points:

  • CLI-first, optional web UI
  • Supports local workflow JSON or fetching workflows via the n8n REST API
  • Works with any OpenAI-compatible LLM (OpenAI, Groq, Ollama, etc.)
  • MIT license

Quickstart:

git clone https://github.com/just-claw-it/n8n-to-claw.git
cd n8n-to-claw
npm install
npm run build

# convert a local workflow JSON
node dist/cli/index.js convert workflow.json

# optional: global CLI install
npm install -g .
n8n-to-claw convert workflow.json