From ideogram-pack
Configure Ideogram local development with hot reload and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Ideogram. Trigger with phrases like "ideogram dev setup", "ideogram local development", "ideogram dev environment", "develop with ideogram".
How this skill is triggered — by the user, by Claude, or both
Slash command
/ideogram-pack:ideogram-local-dev-loopThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up a fast, reproducible local development workflow for Ideogram.
Set up a fast, reproducible local development workflow for Ideogram.
ideogram-install-auth setupmy-ideogram-project/
├── src/
│ ├── ideogram/
│ │ ├── client.ts # Ideogram client wrapper
│ │ ├── config.ts # Configuration management
│ │ └── utils.ts # Helper functions
│ └── index.ts
├── tests/
│ └── ideogram.test.ts
├── .env.local # Local secrets (git-ignored)
├── .env.example # Template for team
└── package.json
set -euo pipefail
# Copy environment template
cp .env.example .env.local
# Install dependencies
npm install
# Start development server
npm run dev
{
"scripts": {
"dev": "tsx watch src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch"
}
}
import { describe, it, expect, vi } from 'vitest';
import { IdeogramClient } from '../src/ideogram/client';
describe('Ideogram Client', () => {
it('should initialize with API key', () => {
const client = new IdeogramClient({ apiKey: 'test-key' });
expect(client).toBeDefined();
});
});
| Error | Cause | Solution |
|---|---|---|
| Module not found | Missing dependency | Run npm install |
| Port in use | Another process | Kill process or change port |
| Env not loaded | Missing .env.local | Copy from .env.example |
| Test timeout | Slow network | Increase test timeout |
vi.mock('@ideogram/sdk', () => ({
IdeogramClient: vi.fn().mockImplementation(() => ({
// Mock methods here
})),
}));
set -euo pipefail
# Enable verbose logging
DEBUG=IDEOGRAM=* npm run dev
See ideogram-sdk-patterns for production-ready code patterns.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.
4plugins reuse this skill
First indexed Jul 11, 2026
npx claudepluginhub terrylica/claude-code-plugins-plus --plugin ideogram-pack