All posts
May 2, 2026

Lovable Skills vs Claude Code Skills: What Actually Transfers?

Same spec, different runtimes. Here is what works identically, what needs minor tweaks, and what you need to rewrite when porting between Claude Code and Lovable.

Lovable Skills vs Claude Code Skills

Both runtimes use the SKILL.md format. In theory every skill is portable. In practice there are sharp edges. Here is what transfers and what does not.

What works in both, no changes

  • Plain instructional skills (no scripts) — port 1:1.
  • Skills that emit code or markdown — work identically.
  • Reference-only skills (lookup tables, style guides) — perfect portability.

What needs minor tweaks

  • allowed-tools: — tool names differ across runtimes. Map Bash → equivalent shell tool, Edit → file edit tool, etc.
  • File paths in scripts — Lovable runs against the project root; Claude Code runs against the user-supplied working directory.

What you need to rewrite

  • Skills that assume a specific CLI binary (e.g. gh, claude) — Lovable runs in a sandboxed Worker without arbitrary binaries.
  • Skills that shell out to long-running daemons.
  • Skills that read from ~/.claude/ or other host-specific paths.

Practical advice

Start with the Anthropic skills repo — they are written to be portable. Browse our catalog for skills already adapted to Lovable.

To install any skill in Lovable, follow the 60-second install guide.

Related posts