Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By buiducnhat
Structured workflow skills for coding agents: clarify ambiguous requirements, create design briefs, generate and refresh project documentation, execute implementation plans with scope control, diagnose and fix bugs, commit changes with conventional messages, review uncommitted changes, and visualize repository docs as HTML diagrams.
npx claudepluginhub buiducnhat/cobrew --plugin cobrewStructured clarification and requirements gathering through focused dialogue or with dry code. Use when a task is ambiguous, underspecified, or requires user input before any action can be taken. Do not plan or implement anything—only ask questions to collect the information needed.
Collaborative discovery and design framing for ambiguous or high-risk work. Use when requirements are unclear, multiple approaches are possible, or you need to turn an idea into a validated design brief before planning or coding.
Create or refresh project documentation in `docs/`. Use when a project needs docs initialized or existing docs synced to the current codebase.
Execute an approved implementation plan exactly and safely. Use for ExecPlan-style plan execution, resumable phase checklists, multi-hour implementation work, migrations, significant refactors, and plans that require verification checkpoints, status tracking, and final reporting.
Diagnose and fix bugs with root-cause analysis and verification. Use when you have a concrete issue report, failing behavior, runtime error, or test regression that should be resolved safely. Stop and escalate to brainstorm when scope or risk grows.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Corca Workflow Framework — consolidated hooks and skill orchestration for structured development sessions
No description provided.
Non-technical progress summaries for Claude Code work (hides diffs/log noise).
Claude Code settings and skills for spec-driven development workflows
Curated skills for Claude Code and Codex power users - tool selection, workflow optimization, and productivity
Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Works with Claude Code, Kiro, Clawd CLI, Gemini CLI, Cursor, Continue, Hermes, and 17+ AI coding assistants. Now with Arabic, German, Spanish, and Chinese (Simplified & Traditional) support.
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
CoBrew ships the same first-party workflow skills through two supported paths:
Install the CoBrew plugin marketplace directly from GitHub:
codex plugin marketplace add buiducnhat/cobrew
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
For agents outside the plugin path, install the CoBrew skills directly:
npx skills add buiducnhat/cobrew
This repository treats the root skills/ directory and plugins/cobrew/.codex-plugin/plugin.json as the authoring metadata source for plugin bundles.
bun run sync:plugin generates a self-contained plugin bundle at plugins/cobrew/, including both Codex (.codex-plugin/plugin.json) and Claude Code (.claude-plugin/plugin.json) manifests.
It also rewrites the Codex marketplace at .agents/plugins/marketplace.json and the Claude Code marketplace at .claude-plugin/marketplace.json so both point at ./plugins/cobrew.
Each workflow skill includes its own project context-loading guidance and uses docs/SUMMARY.md as the entry point when present.
This repository currently defines ten first-party workflow skills and also pins additional upstream skills in skills-lock.json:
| Skill | Description |
|---|---|
ask | Ask clarifying questions to gather requirements and context |
fix | Diagnose and resolve bugs with root-cause analysis and verification |
review | Review uncommitted changes with codebase context and severity levels |
brainstorm | Explore ideas and break down complex problems before planning |
docs | Create or refresh project documentation based on the current repo |
execute-plan | Execute written plans systematically with checkpoints |
git-commit | Create conventional commit messages from staged or unstaged changes |
quick-implement | Rapid implementation for small, well-scoped changes |
visualize | Create source-adjacent HTML visualizations for docs, markdown, plans, and context using fixed templates and Mermaid |
write-plan | Create detailed implementation plans with phases and tasks |
/docs
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
write-plan → execute-plan
Use when the task is clear but too large or risky to implement without a plan.