Plugin creation kit

Agent Plugin Builder

Universal plugin creation for AI agents.

Install the builder as a skill, then scaffold shareable plugin repos with adapters, installers, docs, tests, and GitHub Pages.

Install first npx github:Kokoabassplayer/agent-plugin-builder install --target codex

How to use

Install the builder. Ask your agent. Generate plugins.

Install Agent Plugin Builder into your harness first. After that, ask your agent to use $agent-plugin-builder and it can scaffold plugin repos with skills, adapters, installers, docs, tests, and sponsor-ready project surfaces.

01

Install the builder skill

npx github:Kokoabassplayer/agent-plugin-builder install --target codex
02

Use it in your agent

Start a fresh agent session after installing, then invoke the builder skill by name.

Use $agent-plugin-builder to create a plugin repo for visual evidence comments.
03

Create a plugin repo directly

npx github:Kokoabassplayer/agent-plugin-builder create visual-evidence-kit --description "Capture proof for reviewers."
04

Install the generated skill

Run the target line for your harness from inside the generated repo.

cd visual-evidence-kit
node packages/installer/bin/install.mjs --target codex

Build the repo around the skill.

Works with every agent

One skill core. Multiple harnesses.

Keep the reusable behavior in the skill. Let generated adapter files explain how Codex, Claude Code, OpenClaw, Gemini CLI, and generic Agent Skills should pick it up.

CodexGlobal skill folder and repo-local guidance.
Claude CodeCompatible SKILL.md package structure.
OpenClawAdapter metadata for first-run discovery.
Gemini CLIGeneric instruction handoff for skill use.
Any harnessPlain scripts, docs, and predictable file layout.

Escape the one-off plugin repo.

Current builder outputs

Everything a public plugin repo needs.

The generated project is meant to be readable by humans, installable by users, and usable by multiple agent harnesses without rewriting the core idea.

01

Skill package

Creates a valid Agent Skill with room for scripts, references, examples, and assets.

02

Harness adapters

Documents the same capability for Codex, Claude Code, OpenClaw, Gemini CLI, and generic agents.

03

Installer package

Creates a Node CLI package plus shell and PowerShell wrapper paths for cross-platform use.

04

Docs site

Starts a GitHub Pages-ready documentation surface for install instructions and examples.

05

Verification loop

Adds smoke tests and package checks so users can trust the generated repo before publishing.

Generated plugin planning board
created files
skills/my-plugin/SKILL.md
packages/installer/
docs/index.html
.github/workflows/check.yml
Agent plugin builder workspace

Command builder

Create the terminal sequence before you leave the page.

Choose the plugin name, description, and target harnesses. The terminal sequence updates instantly and can be copied into any terminal.

Target harnesses
terminal
npx github:Kokoabassplayer/agent-plugin-builder create visual-evidence-kit --description "Capture proof for reviewers"
cd visual-evidence-kit
node packages/installer/bin/install.mjs --target codex
node packages/installer/bin/install.mjs --target claude-code
node packages/installer/bin/install.mjs --target openclaw

Plugins you can create

Start with workflows people already repeat.

Visual evidence comments

Capture, annotate, and post screenshots for technical review.

Finance review helper

Package workbook checks, visual evidence, and issue comment templates.

Release proof kit

Bundle smoke tests, screenshots, and PR-ready status updates.

Plugin builder skill

Use this repo to create the next repo generator workflow.