openai-agents
π―Skillfrom jezweb/claude-skills
Generates and configures OpenAI agent workflows, providing pre-built templates and integration patterns for creating AI-powered agents using OpenAI's APIs.
Installation
npx skills add https://github.com/jezweb/claude-skills --skill openai-agentsSkill Details
Overview
# Claude Code Skills
87 production-ready skills for Claude Code CLI β Cloudflare, React, AI integrations, and more.
~60% token savings | 400+ errors prevented | Auto-discovered by Claude
---
Quick Install
Marketplace (Recommended)
```bash
/plugin marketplace add https://github.com/jezweb/claude-skills
/plugin install cloudflare-worker-base@claude-skills
```
Manual
```bash
git clone https://github.com/jezweb/claude-skills.git ~/Documents/claude-skills
cd ~/Documents/claude-skills
./scripts/install-skill.sh cloudflare-worker-base # or ./scripts/install-all.sh
```
---
Skills by Category
| Category | Skills | Highlights |
|----------|--------|------------|
| Cloudflare | 16 | Workers, D1, R2, KV, Agents, MCP Server, Durable Objects |
| AI/ML | 12 | Vercel AI SDK, OpenAI Agents, Claude API, Gemini |
| Frontend | 12 | Tailwind v4 + shadcn, TanStack (Query/Router/Table), Zustand |
| Python | 2 | FastAPI, Flask |
| Database | 4 | Drizzle, Neon Postgres, Vercel KV/Blob |
| Auth | 2 | Clerk, Better Auth |
| Planning | 5 | Project workflow, session management |
| MCP/Tools | 4 | FastMCP, TypeScript MCP |
| CMS | 3 | TinaCMS, Sveltia, WordPress |
| Developer Workflow | 1 | Developer Toolbox (7 agents for code review, debugging, testing) |
π Full list: [SKILLS_CATALOG.md](SKILLS_CATALOG.md)
---
How It Works
Claude Code automatically discovers skills in ~/.claude/skills/ and suggests them when relevant:
```
You: "Set up a Cloudflare Worker with D1"
Claude: "Found cloudflare-worker-base and cloudflare-d1 skills. Use them?"
You: "Yes"
β Production-ready setup, zero errors
```
---
Bundled Agents
Some skills include sub-agents that can be invoked via the Task tool for specialized tasks:
| Bundle | Agents | Purpose |
|--------|--------|---------|
| design | a11y-auditor, favicon-crafter, image-prompter | Accessibility audits, favicon generation, image prompts |
| cloudflare | cloudflare-deploy, cloudflare-debug, d1-migration, worker-scaffold | Deployment, debugging, migrations |
Note: Agents require manual installation to ~/.claude/agents/:
```bash
# List available agents
./scripts/install-skill-agents.sh list
# Install agents from a bundle
./scripts/install-skill-agents.sh design
./scripts/install-skill-agents.sh cloudflare
# Install all agents
./scripts/install-skill-agents.sh all
# Restart Claude Code to discover new agents
```
After installation, agents appear in the Task tool's available agents.
---
Request a Skill
Want a skill we don't have? [Open an issue](https://github.com/jezweb/claude-skills/issues/new?template=skill_request.md&title=Skill+Request:+) with the technology/framework and we'll build it.
Popular requests get prioritized. No need to build it yourself unless you want to.
---
Your Own Skills Repo
Want your own skills ecosystem with your own authorship? Fork this repo or use it as a template:
- Fork β customize skills with your preferences
- Use our QA agents (
content-accuracy-auditor,code-example-validator,version-checker) to maintain currency - Pull upstream updates when useful
This works well if you maintain skills across multiple machines or want to publish your own collection.
---
Creating Skills
Quick start:
```bash
cp -r templates/skill-skeleton/ skills/my-skill/
# Edit SKILL.md and README.md
./scripts/install-skill.sh my-skill
```
Guides: [CONTRIBUTING.md](CONTRIBUTING.md) | [templates/](templates/) | [ONE_PAGE_CHECKLIST.md](ONE_PAGE_CHECKLIST.md)
---
Token Efficiency
| Metric | Manual | With Skills |
|--------|--------|-------------|
| Tokens | 12-15k | 4-6k (~50% less) |
| Errors | 2-4 | 0 (prevented) |
| Time | 2-4 hours | 15-45 min |
---
Documentation
- [CONTRIBUTING.md](CONTRIBUTING.md) β How to contribute
- [CLAUDE.md](CLAUDE.md) β Project context
- [docs/SKILLS_CATALOG.md](docs/SKILLS_CATALOG.md) β Full skill details
- [docs
More from this repository10
Generates production-ready TanStack Query (React Query) boilerplate and configuration for efficient data fetching and state management in React applications.
Generates reusable, optimized Tailwind CSS component patterns and design system utilities for rapid frontend development.
Generates a production-ready Tailwind CSS v4 configuration with shadcn/ui components, providing a streamlined setup for modern, accessible React UI development.
Generates production-ready Next.js project scaffolding with pre-configured TypeScript, Tailwind CSS, and recommended best practices.
Generates boilerplate code and provides templates for setting up Zustand state management in React applications with best practices and efficient configuration.
Scrapes and extracts web content from URLs using the Firecrawl API, enabling efficient web data collection and parsing for various applications.
Provides a flexible, enhanced authentication solution with improved security features and easier implementation for web applications.
Generates type-safe React form validation and handling code using React Hook Form and Zod schema validation, ensuring robust form management with automatic type inference.
Generates website favicon images automatically, creating multiple sizes and formats for cross-browser and device compatibility.
Generates and configures a Sveltia CMS project setup with best practices, enabling rapid content management system development for Svelte-based websites.