smithery/neversight

image-edit

Edits an existing image using a text prompt. Use when you need to modify, enhance, or transform an image based on text instructions.

Installation

$ npx skills add smithery/neversight --skill image-edit

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,609 B
  • docs SUMMARY.md 150 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Image Edit

Edits an existing image using a text prompt (image-to-image transformation).

Command

agent-media image edit --in <path> --prompt <text> [options]

Inputs

Option Required Description
--in Yes Input file path or URL
--prompt Yes Text description of the desired edit
--out No Output path, filename or directory (default: ./)
--provider No Provider to use (default: auto-detect)
--model No Model override (e.g., fal-ai/flux-2/edit)

Output

Returns a JSON object with the edited image path:

{
  "ok": true,
  "media_type": "image",
  "action": "edit",
  "provider": "fal",
  "output_path": "edited_123_abc.png",
  "mime": "image/png",
  "bytes": 567890
}

Examples

Edit an image:

agent-media image edit --in photo.jpg --prompt "make the sky more vibrant"

Add elements to an image:

agent-media image edit --in portrait.png --prompt "add sunglasses"

Edit with specific provider:

agent-media image edit --in scene.jpg --prompt "change to night time" --provider replicate

Providers

This action requires an external provider:

  • fal - Requires FALAPIKEY
  • replicate - Requires REPLICATEAPITOKEN
  • runpod - Requires RUNPODAPIKEY
  • ai-gateway - Requires AIGATEWAYAPI_KEY

The local provider does not support image editing.