A curated collection of Claude Code workflow plugins by Encentral Solutions. Some we author; some are well-regarded community plugins we vet and pin to a known-good release. Either way you add one marketplace and install what you want.
This repository is a Claude Code marketplace — you add the marketplace once, then install any plugin from it.
| Plugin | Adds | What it does |
|---|---|---|
| compound-engineering | /ce-* skills |
The full Every "compound engineering" toolkit — brainstorm, plan, debug, review, and compound learnings with AI agents (ce-brainstorm, ce-plan, ce-code-review, ce-compound, ce-debug, and more). Vetted and pinned to a specific release. |
| office-hours | /office-hours |
A YC-style forcing-question brainstorm for a product idea or design decision — demand reality, the real status-quo competitor, the narrowest paying wedge, future-fit — then saves a one-page design doc. |
| design-review | /design-review |
Designer's-eye QA of a live UI — consistency, spacing, hierarchy, AI-slop patterns, interaction feel — fixing issues atomically in source with before/after evidence. |
| security-review | /security-review |
An adversarial security pass over a change — OWASP Top 10, STRIDE threat modeling, secrets hygiene, and supply-chain risk — with a concrete exploit path per finding. |
The three ESL-authored plugins each ship a command plus a matching skill
(skills/<name>/SKILL.md) that Claude can invoke on its own. compound-engineering
is referenced from its upstream repository, pinned to a reviewed commit, so installing
it brings the complete upstream plugin with every skill and agent.
Add the marketplace, then install the plugins you want:
# Add this marketplace (once)
claude plugin marketplace add encentrals/esl-plugins
# Install a plugin
claude plugin install compound-engineering@esl-plugins
claude plugin install office-hours@esl-plugins
claude plugin install design-review@esl-plugins
claude plugin install security-review@esl-pluginsThen, in a Claude Code session, run /office-hours, /design-review, or
/security-review — or just describe the task and let the matching skill kick in.
Keep them current with:
claude plugin marketplace update esl-pluginsesl-plugins/
├── .claude-plugin/marketplace.json # the marketplace manifest (lists the plugins)
├── office-hours/
│ ├── .claude-plugin/plugin.json # the plugin manifest
│ ├── commands/office-hours.md # the /office-hours slash command
│ └── skills/office-hours/SKILL.md # the skill
├── design-review/ …
└── security-review/ …
See PLUGIN_SPEC.md for the plugin format and how to add a new one, and AGENTS.md for contributor/agent guidance.
office-hours and design-review are adapted from the open-source
gstack skills (MIT), rewritten to be self-contained.
security-review is original, following the OWASP Top 10 and the STRIDE threat-modeling
framework. These three are released under the MIT License.
compound-engineering is not ours — it is the
compound-engineering-plugin
by Kieran Klaassen and Trevin Chow (Every), MIT-licensed. We reference it here, pinned to
a specific reviewed commit; its code and license remain in its own repository.