Implement Ideogram reference architecture with best-practice project layout. Use when designing new Ideogram integrations, reviewing project structure, or establishing architecture standards for Ideogram applications. Trigger with phrases like "ideogram architecture", "ideogram best practices", "ideogram project structure", "how to organize ideogram", "ideogram layout".
View on GitHubjeremylongshore/claude-code-plugins-plus-skills
ideogram-pack
plugins/saas-packs/ideogram-pack/skills/ideogram-reference-architecture/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/blob/main/plugins/saas-packs/ideogram-pack/skills/ideogram-reference-architecture/SKILL.md -a claude-code --skill ideogram-reference-architectureInstallation paths:
.claude/skills/ideogram-reference-architecture/# Ideogram Reference Architecture
## Overview
Production-ready architecture patterns for Ideogram integrations.
## Prerequisites
- Understanding of layered architecture
- Ideogram SDK knowledge
- TypeScript project setup
- Testing framework configured
## Project Structure
```
my-ideogram-project/
├── src/
│ ├── ideogram/
│ │ ├── client.ts # Singleton client wrapper
│ │ ├── config.ts # Environment configuration
│ │ ├── types.ts # TypeScript types
│ │ ├── errors.ts # Custom error classes
│ │ └── handlers/
│ │ ├── webhooks.ts # Webhook handlers
│ │ └── events.ts # Event processing
│ ├── services/
│ │ └── ideogram/
│ │ ├── index.ts # Service facade
│ │ ├── sync.ts # Data synchronization
│ │ └── cache.ts # Caching layer
│ ├── api/
│ │ └── ideogram/
│ │ └── webhook.ts # Webhook endpoint
│ └── jobs/
│ └── ideogram/
│ └── sync.ts # Background sync job
├── tests/
│ ├── unit/
│ │ └── ideogram/
│ └── integration/
│ └── ideogram/
├── config/
│ ├── ideogram.development.json
│ ├── ideogram.staging.json
│ └── ideogram.production.json
└── docs/
└── ideogram/
├── SETUP.md
└── RUNBOOK.md
```
## Layer Architecture
```
┌─────────────────────────────────────────┐
│ API Layer │
│ (Controllers, Routes, Webhooks) │
├─────────────────────────────────────────┤
│ Service Layer │
│ (Business Logic, Orchestration) │
├─────────────────────────────────────────┤
│ Ideogram Layer │
│ (Client, Types, Error Handling) │
├─────────────────────────────────────────┤
│ Infrastructure Layer │
│ (Cache, Queue, Monitoring) │
└─────────────────────────────────────────┘
```
## Key Components
### Step 1: Client Wrapper
```typescript
// src/ideogram/