🎯

openai-image-gen

🎯Skill

from 0xbigboss/claude-code

VibeIndex|
What it does

Generates images using OpenAI's image generation API within the Claude Code environment.

openai-image-gen

Installation

Install skill:
npx skills add https://github.com/0xbigboss/claude-code --skill openai-image-gen
54
Last UpdatedJan 26, 2026

Skill Details

SKILL.md

Overview

# Claude Code Configuration

Personal configuration for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) providing development guidelines, slash commands, custom agents, and language-specific skills.

What's Included

```

claude-code/

β”œβ”€β”€ CLAUDE.md # Core development guidelines (symlinked to ~/.claude/)

β”œβ”€β”€ commands/ # Slash commands

β”‚ β”œβ”€β”€ fix-issue.md # /fix-issue - locate and fix issues

β”‚ β”œβ”€β”€ git-commit.md # /git-commit - conventional commit workflow

β”‚ β”œβ”€β”€ handoff.md # /handoff - generate session handoff prompts

β”‚ └── rewrite-history.md # /rewrite-history - clean up branch commits

β”œβ”€β”€ agents/ # Custom subagents

β”‚ β”œβ”€β”€ code-reviewer.md # Review code for quality and security

β”‚ β”œβ”€β”€ debugger.md # Root cause analysis for failures

β”‚ β”œβ”€β”€ refactorer.md # Clean refactoring with complete migrations

β”‚ └── test-writer.md # Write tests that verify correctness

β”œβ”€β”€ .claude/

β”‚ └── skills/ # Language and tool best practices

β”‚ β”œβ”€β”€ python-best-practices/

β”‚ β”œβ”€β”€ typescript-best-practices/

β”‚ β”œβ”€β”€ react-best-practices/

β”‚ β”œβ”€β”€ go-best-practices/

β”‚ β”œβ”€β”€ zig-best-practices/

β”‚ β”œβ”€β”€ playwright-best-practices/

β”‚ β”œβ”€β”€ tamagui-best-practices/

β”‚ β”œβ”€β”€ tilt/

β”‚ β”œβ”€β”€ web-fetch/

β”‚ β”œβ”€β”€ axe-ios-simulator/

β”‚ └── zig-docs/

β”œβ”€β”€ scripts/ # Utility scripts

β”‚ β”œβ”€β”€ install-symlinks.sh # Installation helper

β”‚ └── sync-skills-to-codex.sh # Sync skills to Codex

β”œβ”€β”€ settings/ # Settings configurations

β”œβ”€β”€ statusline/ # Statusline configurations

└── analytics/ # Usage analytics (submodule)

```

Installation

Via Stow (Recommended)

This repo is a submodule of a dotfiles repository using GNU Stow:

```bash

cd ~/code/dotfiles

stow -v -R -t ~ claude

```

The claude stow package symlinks to this repo's contents.

Manual Symlinks

```bash

mkdir -p ~/.claude

ln -sf "$(pwd)/CLAUDE.md" ~/.claude/CLAUDE.md

ln -sf "$(pwd)/commands" ~/.claude/commands

ln -sf "$(pwd)/agents" ~/.claude/agents

ln -sf "$(pwd)/.claude/skills" ~/.claude/skills

```

Commands

Invoke with /command-name in Claude Code:

| Command | Description |

|---------|-------------|

| /fix-issue | Find and fix an issue by ID with tests and PR description |

| /git-commit | Review changes and create conventional commits |

| /handoff | Generate a self-contained handoff prompt for another agent |

| /rewrite-history | Rewrite branch with clean, narrative commit history |

Agents

Custom subagents for focused tasks. Claude Code delegates to these automatically when appropriate:

| Agent | Purpose |

|-------|---------|

| code-reviewer | Reviews changes for quality, security, and project conventions |

| debugger | Investigates failures through root cause analysis |

| refactorer | Restructures code with clean breaks and complete migrations |

| test-writer | Writes tests that verify correctness without gaming assertions |

Skills

Language and tool-specific best practices loaded automatically based on file context:

| Context | Skill |

|---------|-------|

| Python (.py, pyproject.toml) | python-best-practices |

| TypeScript (.ts, .tsx) | typescript-best-practices |

| React (.tsx, .jsx, @react imports) | react-best-practices |

| Go (.go, go.mod) | go-best-practices |

| Zig (.zig, build.zig) | zig-best-practices |

| Playwright (@playwright/test) | playwright-best-practices |

| Tamagui (@tamagui imports) | tamagui-best-practices |

| Tilt (Tiltfile) | tilt |

Core Principles

The CLAUDE.md guidelines emphasize:

  • Type-first development: Define types before implementing logic; make illegal states unrepresentable
  • Functional style: Prefer immutability, pure functions, and explicit data flow
  • Minimal changes: Impl

More from this repository10

🎯
react-best-practices🎯Skill

Guides React developers in writing clean, efficient components by providing best practices for hooks, effects, and component design.

🎯
python-best-practices🎯Skill

Guides Python developers in implementing type-first development with robust type checking, dataclasses, discriminated unions, and domain-specific type primitives.

🎯
tamagui-best-practices🎯Skill

Optimizes Tamagui configurations and styling patterns for high-performance, cross-platform React Native and web applications with v4 compiler settings.

🎯
playwright-best-practices🎯Skill

Provides Playwright test best practices for creating resilient, maintainable tests using user-facing locators, Page Object Models, and robust testing patterns.

🎯
go-best-practices🎯Skill

Enforces type-first Go development with custom types, interfaces, and patterns to create robust, self-documenting code with strong compile-time guarantees.

🎯
web-fetch🎯Skill

Fetches web content and converts HTML to clean markdown using intelligent content extraction and CSS selectors.

🎯
zig-best-practices🎯Skill

Enforces type-first development in Zig by leveraging tagged unions, explicit error sets, comptime validation, and type safety techniques.

🎯
typescript-best-practices🎯Skill

Enforces TypeScript best practices by guiding developers to create robust, type-safe code through compile-time validation, discriminated unions, and explicit type definitions.

🎯
gen-env🎯Skill

Generates environment configuration files or environment variables for development projects, ensuring consistent and reproducible setup across different environments.

🎯
zig-docs🎯Skill

Retrieves Zig language documentation from Codeberg sources, standard library files, and online references via CLI commands.