plugins marketplace
← All plugins

openui-forge

v1.2.0

Build generative UI with OpenUI — any LLM provider, any backend language. Scaffold, integrate, validate.

Claude Code14 skills

by OthmanAdiMIT20updated 6 days ago

Source

git clone https://github.com/OthmanAdi/openui-forge

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

openui-forge/
├── .claude-plugin/plugin.json
├── skills/openui-forge/SKILL.md
├── skills/openui-forge-anthropic/SKILL.md
├── skills/openui-forge-csharp/SKILL.md
├── skills/openui-forge-elixir/SKILL.md
├── skills/openui-forge-go/SKILL.md
├── skills/openui-forge-java/SKILL.md
├── skills/openui-forge-langchain/SKILL.md
├── skills/openui-forge-openai/SKILL.md
├── skills/openui-forge-php/SKILL.md
├── skills/openui-forge-python/SKILL.md
├── skills/openui-forge-ruby/SKILL.md
├── skills/openui-forge-rust/SKILL.md
├── skills/openui-forge-vercel/SKILL.md
└── skills/openui-forge-zh/SKILL.md

Skills14

openui-forgeskills/openui-forge/SKILL.md

Build generative UI with OpenUI — any LLM provider, any backend language. Scaffold, integrate, validate.

openui-forge-anthropicskills/openui-forge-anthropic/SKILL.md

OpenUI generative UI with Anthropic Claude SDK backend. Stream conversion to OpenAI NDJSON format.

openui-forge-csharpskills/openui-forge-csharp/SKILL.md

OpenUI generative UI with C# ASP.NET Core Minimal API backend. Direct OpenAI API SSE streaming via HttpClient on .NET 10.

openui-forge-elixirskills/openui-forge-elixir/SKILL.md

OpenUI generative UI with Elixir Phoenix backend. Chunked SSE streaming via Plug.Conn and Req.

openui-forge-goskills/openui-forge-go/SKILL.md

OpenUI generative UI with Go (net/http) backend. Direct OpenAI API streaming via HTTP.

openui-forge-javaskills/openui-forge-java/SKILL.md

OpenUI generative UI with a Java Spring Boot (WebFlux) backend. Streams the OpenAI API directly via WebClient as SSE.

openui-forge-langchainskills/openui-forge-langchain/SKILL.md

OpenUI generative UI with LangChain/LangGraph backend. Supports ChatOpenAI and ChatAnthropic.

openui-forge-openaiskills/openui-forge-openai/SKILL.md

OpenUI generative UI with OpenAI SDK backend. Streaming chat completions with gpt-5.5 (or any current OpenAI-compatible model).

openui-forge-phpskills/openui-forge-php/SKILL.md

OpenUI generative UI with a PHP (Laravel 13.x) backend. Forwards OpenAI's SSE stream verbatim via response()->stream().

openui-forge-pythonskills/openui-forge-python/SKILL.md

OpenUI generative UI with Python FastAPI backend. OpenAI and Anthropic SDK variants.

openui-forge-rubyskills/openui-forge-ruby/SKILL.md

OpenUI generative UI with a Ruby on Rails backend. SSE streaming via ActionController::Live, forwarding the OpenAI API stream with Net::HTTP.

openui-forge-rustskills/openui-forge-rust/SKILL.md

OpenUI generative UI with Rust Axum backend. Async SSE streaming with reqwest and async-stream.

openui-forge-vercelskills/openui-forge-vercel/SKILL.md

OpenUI generative UI with Vercel AI SDK. streamText, toUIMessageStreamResponse, and tools support.

openui-forge-zhskills/openui-forge-zh/SKILL.md

使用 OpenUI 构建生成式 UI 应用 — 支持任意 LLM 提供商、任意后端语言。脚手架、集成、验证。

Manifests1

.claude-plugin/plugin.json
{
  "name": "openui-forge",
  "version": "1.2.0",
  "description": "Build generative UI with OpenUI — any LLM provider, any backend language. Scaffold, integrate, validate.",
  "author": {
    "name": "OthmanAdi",
    "url": "https://github.com/OthmanAdi"
  },
  "repository": "https://github.com/OthmanAdi/openui-forge",
  "license": "MIT",
  "keywords": [
    "openui",
    "generative-ui",
    "genui",
    "streaming-ui",
    "react",
    "claude",
    "openai",
    "anthropic",
    "langchain",
    "vercel-ai",
    "python",
    "go",
    "rust",
    "agent-skill",
    "claude-code",
    "cursor",
    "codex",
    "gemini",
    "ai-ui",
    "llm-ui"
  ]
}