Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Use this skill when users want to generate images using OpenAI's image generation API (DALL-E or gpt-image-1), or extract text from images using OCR. Invoke when users request AI-generated images, artwork, logos, illustrations, visual content from text prompts, or need to extract text/data from images. --- name: imggen description: Use this skill when users want to generate images using OpenAI's image generation API (DALL-E or gpt-image-1), or extract text from images using OCR. Invoke when users request AI-generated images, artwork, logos, illustrations, visual content from text prompts, or need to extract text/data from images. version: 1.1.0 allowed-tools: Bash(imggen:*), Read, Write model: inherit --- imggen - Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/22/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
imggen is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
Use this skill when users want to generate images using OpenAI's image generation API (DALL-E or gpt-image-1), or extract text from images using OCR. Invoke when users request AI-generated images, artwork, logos, illustrations, visual content from text prompts, or need to extract text/data from images. --- name: imggen description: Use this skill when users want to generate images using OpenAI's image generation API (DALL-E or gpt-image-1), or extract text from images using OCR. Invoke when users request AI-generated images, artwork, logos, illustrations, visual content from text prompts, or need to extract text/data from images. version: 1.1.0 allowed-tools: Bash(imggen:*), Read, Write model: inherit --- imggen -
Public facts
6
Change events
1
Artifacts
0
Freshness
Feb 22, 2026
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 22, 2026
Vendor
Manashmandal
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/manashmandal/imggen.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Manashmandal
Protocol compatibility
OpenClaw
Auth modes
api_key
Machine-readable schemas
OpenAPI or schema references published
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
imggen [flags] "prompt"
bash
# View total costs imggen cost # View today's costs imggen cost today # View this week's costs (last 7 days) imggen cost week # View this month's costs (last 30 days) imggen cost month # View costs by provider imggen cost provider
bash
# Reset database (delete all data) imggen db reset # Reset with backup of old data imggen db reset --backup # Show database location and stats imggen db info
bash
imggen "a sunset over mountains"
bash
imggen -m dall-e-3 -s 1792x1024 -q hd "panoramic view of a futuristic city"
bash
imggen -n 4 -q high "abstract geometric pattern"
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Use this skill when users want to generate images using OpenAI's image generation API (DALL-E or gpt-image-1), or extract text from images using OCR. Invoke when users request AI-generated images, artwork, logos, illustrations, visual content from text prompts, or need to extract text/data from images. --- name: imggen description: Use this skill when users want to generate images using OpenAI's image generation API (DALL-E or gpt-image-1), or extract text from images using OCR. Invoke when users request AI-generated images, artwork, logos, illustrations, visual content from text prompts, or need to extract text/data from images. version: 1.1.0 allowed-tools: Bash(imggen:*), Read, Write model: inherit --- imggen -
Generate images from text prompts and extract text from images using OpenAI's APIs.
imggen is a command-line tool that interfaces with OpenAI's image generation API. It supports multiple models (gpt-image-1, dall-e-3, dall-e-2) and provides options for image size, quality, format, and style.
imggen binary installed and available in PATHOPENAI_API_KEY environment variable set with a valid OpenAI API keyimggen [flags] "prompt"
| Flag | Short | Default | Description |
|------|-------|---------|-------------|
| --model | -m | gpt-image-1 | Model: gpt-image-1, dall-e-3, dall-e-2 |
| --size | -s | 1024x1024 | Image dimensions |
| --quality | -q | auto | Quality level |
| --count | -n | 1 | Number of images (1-10 for gpt-image-1, 1 for dall-e-3) |
| --output | -o | auto-generated | Output filename or directory |
| --format | -f | png | Output format: png, jpeg, webp |
| --style | | vivid | Style for dall-e-3: vivid, natural |
| --transparent | -t | false | Transparent background (gpt-image-1 + png/webp only) |
| --prompt | -P | | Prompt (can be specified multiple times) |
| --parallel | -p | 1 | Number of parallel workers for multiple prompts |
| --api-key | | $OPENAI_API_KEY | Override API key |
OPENAI_API_KEY is set in the environmentThe tool outputs:
Generated files are saved to the current working directory with timestamp-based names (e.g., image-20251216-120000.png) unless --output is specified.
All image generation costs are automatically logged to ~/.imggen/sessions.db. View costs using the cost subcommand:
# View total costs
imggen cost
# View today's costs
imggen cost today
# View this week's costs (last 7 days)
imggen cost week
# View this month's costs (last 30 days)
imggen cost month
# View costs by provider
imggen cost provider
In interactive mode (imggen -i), use the cost or $ command:
cost today - Today's costscost week - This week's costscost month - This month's costscost total - All-time totalcost provider - Breakdown by providercost session - Current session's costsManage the SQLite database storing sessions and cost data:
# Reset database (delete all data)
imggen db reset
# Reset with backup of old data
imggen db reset --backup
# Show database location and stats
imggen db info
imggen "a sunset over mountains"
imggen -m dall-e-3 -s 1792x1024 -q hd "panoramic view of a futuristic city"
imggen -n 4 -q high "abstract geometric pattern"
imggen -t -f png "minimalist tech company logo, flat design"
imggen -o hero-image.png "website hero banner with gradient"
imggen -m dall-e-3 --style natural "professional headshot, studio lighting"
# Generate multiple images with --prompt flag
imggen --prompt "a sunset" --prompt "a cat" --prompt "a dog" -o ./output
# Short form with parallel processing (3 workers)
imggen -P "sunset" -P "mountains" -P "ocean" -o ./images -p 3
# From a text file (one prompt per line)
imggen batch prompts.txt -o ./output
# From a JSON file with per-prompt options
imggen batch prompts.json -o ./output
# With parallel processing
imggen batch prompts.txt -o ./output -p 3
Generate multiple images from command-line prompts using the --prompt/-P flag:
imggen --prompt "a sunset over mountains" --prompt "a cat playing piano" -o ./output
This processes all prompts and saves images to the output directory with indexed filenames:
001-a-sunset-over-mountains.png002-a-cat-playing-piano.pngUse --parallel/-p to control concurrent processing (default: 1 = sequential).
Generate multiple images from a file of prompts using the batch subcommand:
imggen batch <input-file> [flags]
Text file (.txt) - One prompt per line (lines starting with # are ignored):
a sunset over mountains
a cat playing piano
abstract geometric art
JSON file (.json) - Array of objects with optional per-prompt settings:
[
{"prompt": "a sunset over mountains"},
{"prompt": "a cat playing piano", "model": "dall-e-3", "quality": "hd"},
{"prompt": "abstract art", "size": "1792x1024"}
]
| Flag | Short | Default | Description |
|------|-------|---------|-------------|
| --output | -o | current dir | Output directory |
| --model | -m | gpt-image-1 | Default model |
| --size | -s | model default | Default image size |
| --quality | -q | model default | Default quality level |
| --format | -f | png | Output format |
| --parallel | -p | 1 | Number of parallel workers |
| --stop-on-error | | false | Stop on first error |
| --delay | | 0 | Delay between requests (ms) |
Common errors and solutions:
OPENAI_API_KEY environment variable--count valueCosts per image (USD):
| Size | Low | Medium | High | |------|-----|--------|------| | 1024x1024 | $0.011 | $0.042 | $0.167 | | 1536x1024 | $0.016 | $0.063 | $0.250 | | 1024x1536 | $0.016 | $0.063 | $0.250 |
| Size | Standard | HD | |------|----------|-----| | 1024x1024 | $0.040 | $0.080 | | 1024x1792 | $0.080 | $0.120 | | 1792x1024 | $0.080 | $0.120 |
| Size | Cost | |------|------| | 256x256 | $0.016 | | 512x512 | $0.018 | | 1024x1024 | $0.020 |
Extract text from images using OpenAI's vision API with optional structured output support.
imggen ocr <image-path> [flags]
| Flag | Short | Default | Description |
|------|-------|---------|-------------|
| --model | -m | gpt-5-mini | Model: gpt-5.2, gpt-5-mini, gpt-5-nano |
| --schema | -s | | JSON schema file for structured output |
| --schema-name | | extracted_data | Name for the JSON schema |
| --suggest-schema | | false | Suggest a JSON schema based on image content |
| --prompt | -p | auto | Custom extraction prompt |
| --output | -o | stdout | Output file |
| --url | | | Image URL instead of file path |
| --api-key | | $OPENAI_API_KEY | Override API key |
| --verbose | -v | false | Log HTTP requests and responses |
| Model | Cost (Input) | Cost (Output) | Best For | |-------|-------------|---------------|----------| | gpt-5-nano | $0.05/1M tokens | $0.40/1M tokens | Ultra budget, simple text | | gpt-5-mini | $0.25/1M tokens | $2.00/1M tokens | Cost-effective, most OCR tasks | | gpt-5.2 | $1.75/1M tokens | $14.00/1M tokens | Complex documents, highest accuracy |
imggen ocr document.png
imggen ocr --url https://example.com/image.png
imggen ocr receipt.jpg -o extracted.txt
# Create a schema file (invoice_schema.json):
# {
# "type": "object",
# "properties": {
# "vendor": {"type": "string"},
# "date": {"type": "string"},
# "total": {"type": "number"},
# "items": {
# "type": "array",
# "items": {
# "type": "object",
# "properties": {
# "name": {"type": "string"},
# "price": {"type": "number"}
# },
# "required": ["name", "price"],
# "additionalProperties": false
# }
# }
# },
# "required": ["vendor", "date", "total"],
# "additionalProperties": false
# }
imggen ocr receipt.jpg --schema invoice_schema.json -o invoice.json
# Analyze image and suggest appropriate schema
imggen ocr document.png --suggest-schema
# Save suggested schema to file
imggen ocr document.png --suggest-schema -o suggested_schema.json
imggen ocr complex-document.pdf -m gpt-5.2
imggen ocr business-card.jpg -p "Extract the name, title, email, and phone number"
When using the --schema flag, the output will be structured JSON matching your schema. This is useful for:
The schema must follow JSON Schema draft-07 format with additionalProperties: false for strict validation.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key
Streaming
No
Data region
global
Protocol support
Requires: openclew, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/manashmandal-imggen/snapshot"
curl -s "https://xpersona.co/api/v1/agents/manashmandal-imggen/contract"
curl -s "https://xpersona.co/api/v1/agents/manashmandal-imggen/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"api_key"
],
"requires": [
"openclew",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/manashmandal/imggen#input",
"outputSchemaRef": "https://github.com/manashmandal/imggen#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:44:20.543Z",
"sourceUpdatedAt": "2026-02-24T19:44:20.543Z",
"freshnessSeconds": 4420808
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/manashmandal-imggen/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/manashmandal-imggen/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/manashmandal-imggen/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/manashmandal-imggen/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/manashmandal-imggen/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/manashmandal-imggen/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:44:29.089Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "multiple",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "maximum",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "style",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "transparency",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|supported|profile capability:multiple|supported|profile capability:maximum|supported|profile capability:style|supported|profile capability:transparency|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/manashmandal-imggen/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/manashmandal-imggen/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:44:20.543Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key",
"href": "https://xpersona.co/api/v1/agents/manashmandal-imggen/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/manashmandal-imggen/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:44:20.543Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/manashmandal/imggen#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/manashmandal-imggen/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:44:20.543Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Manashmandal",
"href": "https://github.com/manashmandal/imggen",
"sourceUrl": "https://github.com/manashmandal/imggen",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/manashmandal-imggen/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/manashmandal-imggen/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to imggen and adjacent AI workflows.