A plugin library for Claude Code, Gemini, and Codex, providing specialized agents, skills, and commands for enhanced development workflows.
claude plugin marketplace add borkweb/bork-aiThen install individual plugins:
claude plugin install bork
claude plugin install matt
claude plugin install team- In Claude Code, click the + button in the Plugins panel
- Select Browse plugins
- Click the marketplace dropdown and select Add marketplace from GitHub
- Enter
borkweb/bork-ai - Click Sync
The plugins will appear in your marketplace and can be installed from there.
Some skills, such as bork: council, can use Claude Code Agent Teams for delegated multi-agent analysis when the runtime supports it. To enable Agent Teams, add this to ~/.claude/settings.json:
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}Restart Claude Code after changing the setting. Skills that support Agent Teams should still work without this setting by running internally in a single assistant response.
Codex manifests live alongside each plugin package:
bork/.codex-plugin/plugin.jsonteam/.codex-plugin/plugin.jsonmatt/.codex-plugin/plugin.json
This repo also includes a repo-owned Codex marketplace bundle at .agents/bork-ai/.
The Codex marketplace definition lives at .agents/bork-ai/codex.marketplace.json and is intended to be symlinked to ~/.agents/bork-ai/marketplace.json so the marketplace definition and plugin wiring stay versioned in this repository.
Setup:
mkdir -p ~/.agents/bork-ai
ln -sfn /Users/matt/git/bork-ai/.agents/bork-ai/plugins ~/.agents/bork-ai/plugins
ln -sfn /Users/matt/git/bork-ai/.agents/bork-ai/codex.marketplace.json ~/.agents/bork-ai/marketplace.jsonThen enable the plugins in ~/.codex/config.toml:
[plugins."bork@bork-ai"]
enabled = true
[plugins."team@bork-ai"]
enabled = true
[plugins."matt@bork-ai"]
enabled = trueRestart Codex after updating the symlinks and config.
| Plugin | Description |
|---|---|
| bork | General development tools — agents, skills, and commands for everyday workflows. |
| matt | Personal voice profile and writing style configuration. |
| team | Development workflow skills — planning, review, QA, shipping, and retrospectives. |
MIT