Integrations

Agent Skills

Ready-made playbooks for agents. One natural-language request and the skill creates an image or video, edits photos, and runs tools — calling the MCP server under the hood.

Installation

bash
npx skills add caranguejo-art/caranguejo-skills
Then grab your ck_live_… key at Account → Apps & API and set CARANGUEJO_API_KEY — the same key the MCP server uses.

The three skills

caranguejo-generate generate

Text-to-image and text/image-to-video. Picks the model, sets aspect ratio, duration, and quality, and returns the final URL.

caranguejo-edit edit

Edits, restyles, and composites existing images: swaps backgrounds, places a product into a scene, combines references.

caranguejo-tools tools

Upscale, relight, enhance, and inpaint on images or video — post-production with no prompt, just the media.

How it works

Each skill is a SKILL.md — a playbook that instructs the agent to call the MCP server's tools (@caranguejo/mcp) directly. There's no shelling out to a CLI: the skill talks to the MCP via tool-calling.

Connects to MCP

The skill makes sure the @caranguejo/mcp server is configured and authenticated (same CARANGUEJO_API_KEY).

Interprets the request

Turns your request into a prompt plus parameters and picks the right tool (image vs. video vs. tool).

Calls the MCP tool

Invokes generate_image / generate_video / run_tool (with upload_file for attachments) and waits for the result.

Delivers

Presents the final URL and the credit cost. No internal engine names leaked.

SKILL.md format

SKILL.md
---
version: 1.0.0
name: caranguejo-generate
description: |
  Gera imagens e vídeos via Caranguejo, chamando as tools do servidor MCP.
  Use when: "gere uma imagem", "faça um vídeo", "anime esta foto".
argument-hint: "[prompt] [--model <slug>] [--image|--video <path>]"
---