Sandbox
@buiducnhat/cobrew

Workflow skills for Codex and Claude Code

CoBrew ships a set of standardized workflow skills for agent coding. It works as a plugin bundle for Codex and Claude Code, and it also supports direct skills installation through the Vercel skills CLI for other agents.

48 stars3 forksHTMLUpdated 2mo ago
Who it's for

Builders who want their coding agent to follow repeatable workflows for planning, fixing, reviewing, and writing docs.

What it delivers

You can use the same project workflows across supported agents instead of rebuilding them in each repo.

What it does

Plugin installs for Codex and Claude Code

The repo publishes a marketplace bundle that can be added directly from GitHub with `codex plugin marketplace add buiducnhat/cobrew` or `claude plugin marketplace add buiducnhat/cobrew`.

Direct skills install for other agents

When plugin support is missing, the same skills can be installed with `npx skills add buiducnhat/cobrew`.

Ten workflow skills

It includes `ask`, `fix`, `review`, `brainstorm`, `docs`, `execute-plan`, `git-commit`, `quick-implement`, `visualize`, and `write-plan`.

Context-loading guidance

Each skill includes project context-loading guidance and uses `docs/SUMMARY.md` as the entry point when present.

Workflow sequences

The README lays out recommended flows like `brainstorm → write-plan → execute-plan`, `write-plan → execute-plan`, and `quick-implement` for small tasks.

How to get it

  1. 1Install the CoBrew plugin marketplace directly from GitHub
    codex plugin marketplace add buiducnhat/cobrew
  2. 2Install the CoBrew plugin marketplace directly from GitHub
    claude plugin marketplace add buiducnhat/cobrew
  3. 3Inside an interactive Claude Code session, use the slash command form
    /plugin marketplace add buiducnhat/cobrew
  4. 4For agents outside the plugin path, install the CoBrew skills directly
    npx skills add buiducnhat/cobrew

README

CoBrew

Install standardized AI workflow skills for coding agents.

Use the CoBrew plugin for the best Codex and Claude Code experience. For other agents or environments without plugin support, install the skills directly with the Vercel skills CLI.


Languages: English | Tiếng Việt


What it does

CoBrew ships first-party workflow skills through two supported paths:

  1. Plugin bundles for Codex and Claude Code expose self-contained workflow skills directly through each agent's plugin system.
  2. Direct skills CLI install uses the Vercel skills CLI to install the same skills into other supported agents.

Installation

Codex plugin (recommended for Codex)

Install the CoBrew plugin marketplace directly from GitHub:

codex plugin marketplace add buiducnhat/cobrew

Claude Code plugin (recommended for Claude Code)

Install the CoBrew plugin marketplace directly from GitHub:

claude plugin marketplace add buiducnhat/cobrew

Inside an interactive Claude Code session, use the slash command form:

/plugin marketplace add buiducnhat/cobrew

Other agents

For agents outside the plugin path, install the CoBrew skills directly:

npx skills add buiducnhat/cobrew

Plugin bundle maintenance

This repository maintains plugin-ready skill content directly under plugins/cobrew/skills/.

plugins/cobrew/ is the checked-in plugin bundle for both Codex and Claude Code. It includes the Codex manifest (.codex-plugin/plugin.json), the Claude Code manifest (.claude-plugin/plugin.json), skill files, references, and plugin assets.

The Codex marketplace at .agents/plugins/marketplace.json and the Claude Code marketplace at .claude-plugin/marketplace.json both point at ./plugins/cobrew. There is no separate root skills/ source tree and no sync script.

Each workflow skill includes its own project context-loading guidance and uses docs/SUMMARY.md as the entry point when present.

Repository workflow skills

This repository currently defines ten first-party workflow skills in plugins/cobrew/skills/:

SkillDescription
askAsk clarifying questions to gather requirements and context
fixDiagnose and resolve bugs with root-cause analysis and verification
reviewReview uncommitted changes with codebase context and severity levels
brainstormExplore ideas and break down complex problems before planning
docsCreate or refresh project documentation based on the current repo
execute-planExecute written plans systematically with checkpoints
git-commitCreate conventional commit messages from staged or unstaged changes
quick-implementRapid implementation for small, well-scoped changes
visualizeCreate source-adjacent HTML visualizations for docs, markdown, plans, and context using fixed templates and Mermaid
write-planCreate detailed implementation plans with phases and tasks

Recommended workflow sequences


Init documentations

/docs

Complex or ambiguous tasks

brainstorm → write-plan → execute-plan

Use when requirements are unclear or multiple approaches are possible.

# Step 1 — explore and define the design
/brainstorm add dark mode support

# Agent clarifies requirements, proposes approaches, writes:
#   docs/.brainstorms/260306-1430-dark-mode/SUMMARY.md
# Then prompts: "Proceed to write-plan?"

# Step 2 — create a phased implementation plan
/write-plan

# Agent reads the brainstorm, writes:
#   docs/.plans/260306-1445-dark-mode/SUMMARY.md
#   docs/.plans/260306-1445-dark-mode/phase-01-tokens.md
#   docs/.plans/260306-1445-dark-mode/phase-02-components.md
# Ends with: "Use /clear then /execute-plan docs/.plans/... to execute"

# Step 3 — execute the approved plan in a fresh context
/clear
/execute-plan docs/.plans/260306-1445-dark-mode/SUMMARY.md

Well-defined features or large refactors

write-plan → execute-plan

Use when the task is clear but too large or risky to implement without a plan.

# Step 1 — plan the work
/write-plan migrate auth to JWT

# Agent writes:
#   docs/.plans/260306-1020-jwt-auth/SUMMARY.md
#   docs/.plans/260306-1020-jwt-auth/phase-01-schema.md
#   docs/.plans/260306-1020-jwt-auth/phase-02-middleware.md
# Ends with: "Use /clear then /execute-plan docs/.plans/... to execute"

# Step 2 — execute in a fresh context
/clear
/execute-plan docs/.plans/260306-1020-jwt-auth/SUMMARY.md

Small tasks and quick fixes

quick-implement

Use for small, well-scoped changes where a formal plan would be overhead.

# Implement directly — no plan needed
/quick-implement add a tooltip to the submit button

Bug fixes

fix

Use when you have a concrete error, failing test, or unexpected behavior to diagnose.

/fix TypeError: Cannot read properties of undefined at checkout.ts:42

# For simple bugs: agent diagnoses, applies fix, verifies
# For complex bugs: agent stops and routes to write-plan

Visualizations

visualize

Use when docs, plans, markdown, or context would be easier to understand as a source-adjacent HTML diagram.

/visualize docs/.plans/260306-1020-jwt-auth/SUMMARY.md

# Agent creates:
#   docs/.plans/260306-1020-jwt-auth/visualize.html
#   docs/.plans/260306-1020-jwt-auth/visualize-assets/

Supported agents

View all 40 supported agents

AdaL, Amp, Antigravity, Augment, Claude Code, Cline, CodeBuddy, Codex, Command Code, Continue, Cortex Code, Crush, Cursor, Droid, Gemini CLI, GitHub Copilot, Goose, iFlow CLI, Junie, Kilo Code, Kimi Code CLI, Kiro CLI, Kode, MCPJam, Mistral Vibe, Mux, Neovate, OpenClaw, OpenCode, OpenHands, Pi, Pochi, Qoder, Qwen Code, Replit, Roo Code, Trae, Trae CN, Windsurf, Zencoder

Requirements

  • Node.js 18+
  • Network access for plugin marketplace or skills CLI installation

Documentation

Files in the repo

Repository payload11 top-level entries
  • .agents
  • .claude-plugin
  • .vscode
  • docs
  • plugins
  • .gitignore
  • biome.json
  • bun.lock
  • package.json
  • README.md
  • README.vi.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k