โ† All skills
Tencent SkillHub ยท Developer Tools

Geometry

Generate AI images from text prompts. Pay per request with USDC on Solana via x402. No API keys, no accounts.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Generate AI images from text prompts. Pay per request with USDC on Solana via x402. No API keys, no accounts.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Geometry โ€” AI Image Generation API

Generate images from text prompts. Pay per request with USDC on Solana via x402. No API keys, no accounts. Homepage: https://geometry.sh Agent Card: https://api.geometry.sh/.well-known/agent.json Docs: https://app.geometry.sh/developers

Payment

FieldValueProtocolx402 (version 2)Networksolana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpSchemeexactCurrencyUSDCFacilitatorhttps://facilitator.payai.networkPay To79BLYwUdsNpPzDktxjibFR4DKMhHV2Q8iBu7Fk7R9fuU

GET /api/x402/generate/quote

Get the USDC price for a model. Free โ€” no payment required. ParameterTypeRequiredDescriptionmodelstringnoModel slug (default: flux-dev) Example response: { "success": true, "data": { "model": "flux-dev", "costUsdc": 0.0325, "paymentNetwork": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", "payTo": "79BLYwUdsNpPzDktxjibFR4DKMhHV2Q8iBu7Fk7R9fuU" } }

POST /api/x402/generate

Generate an AI image from a text prompt. Requires x402 USDC payment. ParameterTypeRequiredDescriptionpromptstringyesText prompt (1โ€“1000 chars)modelstringnoModel slug (default: flux-dev) Example request: { "prompt": "A neon-lit Tokyo alley in the rain", "model": "flux-dev" } Example response: { "success": true, "data": { "id": "ab0e4a1b-179f-4a6e-b505-53206a3e2e4b", "status": "completed", "prompt": "A neon-lit Tokyo alley in the rain", "model": "flux-dev", "costUsdc": 0.0325, "imageUrl": "https://cdn.geometry.sh/generations/user-id/gen-id.png", "createdAt": "2026-02-15T17:29:17.256Z" } }

Available Models

SlugNamePrice (USDC)bagelBagel$0.1300bytedance-seedream-v4.5-text-to-imageBytedance$0.0520bytedance-seedream-v3-text-to-imageBytedance$0.0390bytedance-dreamina-v3.1-text-to-imageBytedance$0.0390bytedance-seedream-v4-text-to-imageBytedance Seedream v4$0.0390emu-3.5-image-text-to-imageEmu 3.5 Image$0.1950flux-pro-kontext-max-text-to-imageFLUX.1 Kontext [max]$0.1040flux-pro-kontext-text-to-imageFLUX.1 Kontext [pro]$0.0520flux-devFLUX.1 [dev]$0.0325flux-pro-v1.1-ultraFLUX1.1 [pro] ultra$0.0780bria-fibo-generateFibo$0.0520bria-fibo-lite-generateFibo Lite$0.0468gemini-25-flash-imageGemini 2.5 Flash Image$0.0517gemini-3-pro-image-previewGemini 3 Pro Image Preview$0.1950xai-grok-imagine-imageGrok Imagine Image$0.0260ideogram-v3Ideogram Text to Image$0.0390ideogram-v2Ideogram V2$0.1040imagen4-previewImagen 4$0.0520imagen4-preview-fastImagen 4$0.0260imagen4-preview-ultraImagen 4 Ultra$0.0780kling-image-v3-text-to-imageKling Image$0.0364kling-image-o3-text-to-imageKling Image$0.0364minimax-image-01MiniMax (Hailuo AI) Text to Image$0.0130nano-bananaNano Banana$0.0517nano-banana-proNano Banana Pro$0.1950qwen-image-max-text-to-imageQwen Image Max$0.0975recraft-v3-text-to-imageRecraft V3$0.0520reve-text-to-imageReve$0.0520vidu-q2-text-to-imageVidu$0.0650wan-v2.2-5b-text-to-imageWan$0.0208wan-v2.2-a14b-text-to-imageWan$0.0325wan-25-preview-text-to-imageWan 2.5 Text to Image$0.0650wan-v2.2-a14b-text-to-image-loraWan v2.2 A14B Text-to-Image A14B with LoRAs$0.0650

JavaScript

import { createKeyPairSignerFromBytes } from "@solana/kit"; import { wrapFetchWithPayment, x402Client } from "@x402/fetch"; import { ExactSvmScheme } from "@x402/svm/exact/client"; const signer = await createKeyPairSignerFromBytes(keypairBytes); const client = new x402Client(); client.register("solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", new ExactSvmScheme(signer)); const fetchWithPay = wrapFetchWithPayment(fetch, client); const res = await fetchWithPay("https://api.geometry.sh/api/x402/generate", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ prompt: "A cat in space" }), }); const { data } = await res.json(); console.log(data.imageUrl);

cURL

# Step 1: Get a quote (free) curl https://api.geometry.sh/api/x402/generate/quote?model=flux-dev # Step 2: POST to generate (returns 402 with payment instructions) curl -X POST https://api.geometry.sh/api/x402/generate \ -H "Content-Type: application/json" \ -d '{"prompt": "A cat in space", "model": "flux-dev"}' # Step 3: Use an x402 client to handle payment automatically # npm install @x402/fetch @x402/svm

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc