ImgLink

v1.0.2

Generate images by customizing a URL. Drop the URL into websites, presentations, PDFs, or anywhere that loads images.

0· 133·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for jverlee/imglink.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "ImgLink" (jverlee/imglink) from ClawHub.
Skill page: https://clawhub.ai/jverlee/imglink
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install imglink

ClawHub CLI

Package manager switcher

npx clawhub@latest install imglink
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (generate images via URL) match the SKILL.md: it documents a single public GET endpoint and parameters needed to produce image URLs. There are no unrelated credentials, binaries, or config requirements.
Instruction Scope
SKILL.md only instructs constructing and using a public HTTPS GET URL (prompt, width, height, model, version, key). It does not tell the agent to read files, credentials, system state, or send data to unexpected endpoints. It does warn that images are cached permanently — an important behavioral note but within scope.
Install Mechanism
No install spec and no code files (instruction-only). Nothing will be downloaded or written to disk by the skill itself.
Credentials
No required environment variables or credentials declared. The SKILL.md references an optional API key obtained from the service (expected and proportional).
Persistence & Privilege
always is false and the skill does not request persistent system-level privileges or modify other skills. Autonomous invocation is allowed (platform default) but not combined with other red flags.
Assessment
This skill is coherent and only documents how to build image-generation URLs for the external domain imglink.ai. Before using it, verify the external service (imglink.ai) and its privacy/terms because: generated images are said to be cached permanently (so avoid sending sensitive or private content in prompts), the optional 'anonymous' key is rate-limited (get a real key if you need higher throughput), and the skill has no published homepage or source—if you plan to use it in production, check the service's reputation, rate limits, pricing, and legal/ownership issues for generated images. Do not include secrets or PII in prompts you send to the service.

Like a lobster shell, security has layers — review code before you run it.

latestvk977arhrs3q69p8tsb274pm21x83exj6
133downloads
0stars
3versions
Updated 1mo ago
v1.0.2
MIT-0

Use imglink.ai to generate images via URL. The API is a single GET endpoint that accepts a prompt parameter. It returns the image.

GET https://imglink.ai/images?prompt=cat

Parameters

  • prompt (required): Text description of the image to generate. URL-encode spaces as +.
  • width (optional, default 800): Image width in pixels.
  • height (optional, default 600): Image height in pixels.
  • version (optional, default 1): Integer seed for deterministic output. Same prompt + version always returns the same image.
  • model (optional, default "nano-banana-2"): AI model to use for generation.
  • key (optional, default "anonymous"): API key. Use "anonymous" for testing (rate-limited).

Rules

  • Every unique URL returns a real generated image. Use these URLs directly in <img> tags, Markdown, CSS, or anywhere an image URL is accepted.
  • Images are generated on first request, then cached permanently. Same prompt + version = same image.
  • URL-encode the prompt value. Use + for spaces.
  • Do not invent parameters that are not listed above.

Examples

<img src="https://imglink.ai/images?prompt=frog&key={key}" />
<img src="https://imglink.ai/images?prompt=dog&width=1024&height=768&version=1&model=nano-banana-2&key={key}" />

Getting a key

A key can be obtained for free by logging in at https://imglink.ai - without a key, responses are heavily rate-limited.

Notes

First response will take longer as the image is generated. Future fetches load from cache.

Comments

Loading comments...