Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

ideogram-common-errors表意文字常见错误

Agent Skill

ideogram-common-errors 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

612

周安装

25

GitHub Stars

2,084

下载量

198
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ideogram-common-errors(表意文字常见错误)
来源仓库:https://github.com/jeremylongshore/claude-code-plugins-plus-skills
仓库路径:skills/ideogram-common-errors
安装命令:
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill ideogram-common-errors
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill ideogram-common-errors

简介

ideogram-common-errors 用于记录任务执行中的错误、用户纠正和经验缺口,帮助 Agent 持续沉淀问题与修正方案。

  • 适用于希望让 AI 在迭代中积累最佳实践并减少重复错误的场景。
  • 通过 npx skills add 命令安装,需确认权限范围和维护状态后再使用。
  • 建议结合原始 README 核验具体用法,避免触发不必要的联网或文件操作。
  • 使用前请评估是否会执行命令或读写文件,确保符合安全策略。

SKILL.md

Ideogram Common Errors

Overview

Quick reference for the most common Ideogram API errors, their root causes, and proven fixes. All Ideogram endpoints return standard HTTP status codes with JSON error bodies.

Prerequisites

  • Ideogram API key configured
  • Access to request/response logs
  • curl available for manual testing

Error Reference

401 -- Authentication Failed

HTTP 401 Unauthorized

Cause: Missing, invalid, or revoked API key.

Fix:

set -euo pipefail
# Verify the key is set and not empty
echo "Key length: ${#IDEOGRAM_API_KEY}"

# Test auth directly
curl -s -o /dev/null -w "%{http_code}" \
  -X POST https://api.ideogram.ai/generate \
  -H "Api-Key: $IDEOGRAM_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"image_request":{"prompt":"test","model":"V_2_TURBO"}}'

Common mistakes:

  • Using Authorization: Bearer instead of Api-Key header
  • Whitespace or newlines in the key string
  • Key was regenerated in dashboard but not updated in .env

422 -- Safety Check Failed

{"error": "Prompt or provided image failed the safety checks"}

Cause: Prompt text or uploaded image triggered Ideogram's content filter.

Fix:

  • Remove brand names, celebrity names, or trademarked terms
  • Avoid violent, sexual, or politically sensitive content
  • Remove explicit references to real people
  • Rephrase with neutral descriptors
// Pre-screen prompts before sending to API
const FLAGGED_PATTERNS = [
  /\b(coca.?cola|nike|apple|disney)\b/i,
  /\b(celebrity|politician|president)\b/i,
];

function isPromptSafe(prompt: string): boolean {
  return !FLAGGED_PATTERNS.some(p => p.test(prompt));
}

429 -- Rate Limited

HTTP 429 Too Many Requests

Cause: More than 10 in-flight requests (default limit).

Fix:

async function rateLimitedGenerate(prompt: string) {
  const maxRetries = 5;
  for (let attempt = 0; attempt < maxRetries; attempt++) {
    try {
      return await generateImage(prompt);
    } catch (err: any) {
      if (err.status !== 429) throw err;
      const delay = 1000 * Math.pow(2, attempt) + Math.random() * 500;
      console.warn(`Rate limited. Retry in ${delay.toFixed(0)}ms`);
      await new Promise(r => setTimeout(r, delay));
    }
  }
  throw new Error("Rate limit retries exhausted");
}

400 -- Bad Request

{"error": "Invalid input"}

Cause: Invalid parameter values in request body.

Common issues:

ParameterWrongCorrect
aspect_ratio"16:9""ASPECT_16_9" (legacy) or "16x9" (V3)
style_type"realistic""REALISTIC" (uppercase enum)
model"v2""V_2" (underscore + uppercase)
num_images101-4 (max 4 per request)
resolutionUsed with aspect_ratioUse one or the other, not both

402 -- Insufficient Credits

HTTP 402 Payment Required

Cause: API credit balance is depleted.

Fix:

  1. Log into ideogram.ai > Settings > API Beta
  2. Check current balance and top-up settings
  3. Increase auto top-up amount or manually add credits
  4. Default: auto top-up $20 when balance drops below $10

Expired Image URL

HTTP 403 or 404 when downloading generated image

Cause: Ideogram image URLs are temporary (expire after ~1 hour).

Fix:

// ALWAYS download immediately after generation
async function generateAndSave(prompt: string): Promise<string> {
  const result = await generateImage(prompt);
  const imageUrl = result.data[0].url;

  // Download within seconds, not later
  const response = await fetch(imageUrl);
  if (!response.ok) throw new Error(`Image download failed: ${response.status}`);

  const buffer = Buffer.from(await response.arrayBuffer());
  const path = `./images/gen-${result.data[0].seed}.png`;
  writeFileSync(path, buffer);
  return path;
}

Mask Size Mismatch (Edit Endpoint)

{"error": "Invalid input"}

Cause: Mask image dimensions do not match source image dimensions.

Fix:

set -euo pipefail
# Check dimensions match
identify source.png  # e.g., 1024x1024
identify mask.png    # Must also be 1024x1024

# Resize mask to match source
convert mask.png -resize 1024x1024! mask-resized.png

Multipart Form Errors (V3 Endpoints)

Cause: V3 endpoints (/v1/ideogram-v3/*) require multipart form data, not JSON.

Fix:

// WRONG for V3 endpoints:
fetch(url, { body: JSON.stringify({...}), headers: { "Content-Type": "application/json" } });

// CORRECT for V3 endpoints:
const form = new FormData();
form.append("prompt", "...");
form.append("aspect_ratio", "1x1");
fetch(url, { body: form, headers: { "Api-Key": key } });
// Do NOT set Content-Type -- FormData handles the boundary

Quick Diagnostic Script

set -euo pipefail
echo "=== Ideogram Diagnostics ==="
echo "API Key set: ${IDEOGRAM_API_KEY:+YES}"
echo "Key length: ${#IDEOGRAM_API_KEY}"

# Test connectivity
STATUS=$(curl -s -o /dev/null -w "%{http_code}" \
  -X POST https://api.ideogram.ai/generate \
  -H "Api-Key: $IDEOGRAM_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"image_request":{"prompt":"test circle","model":"V_2_TURBO","magic_prompt_option":"OFF"}}')

echo "API Response: $STATUS"
case $STATUS in
  200) echo "OK: Auth and generation working" ;;
  401) echo "ERROR: Invalid API key" ;;
  402) echo "ERROR: Insufficient credits" ;;
  422) echo "ERROR: Safety filter (try different prompt)" ;;
  429) echo "ERROR: Rate limited (wait and retry)" ;;
  *)   echo "ERROR: Unexpected status $STATUS" ;;
esac

Error Handling

ErrorHTTPRoot CauseFix
Auth failed401Bad Api-Key headerVerify key, check header name
Safety filter422Flagged prompt/imageRephrase prompt
Rate limited429>10 in-flight requestsExponential backoff
Bad params400Wrong enum valuesUse exact enum strings
No credits402Balance depletedTop up in dashboard
URL expired403/404Late downloadDownload immediately

Output

  • Identified error root cause
  • Applied fix with verification
  • Diagnostic output confirming resolution

Resources

Next Steps

For comprehensive debugging, see ideogram-debug-bundle.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.12%
按下载量换算66

Claude

33.1%
按下载量换算66

Cursor

18.62%
按下载量换算37

Gemini CLI

9.17%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills