Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ Third-party plugins built by the community. [PRs welcome](#contributing)!
- [GrayMatter](https://github.com/ValkyrLabs/GrayMatter) - Durable memory and shared graph state for Codex and OpenClaw agents, with live ValkyrAI schema awareness.
- [HOL Guard Plugin](https://github.com/hashgraph-online/hol-guard-plugin) - AI antivirus workflow for Codex, Claude Code, Cursor, Gemini, OpenCode, MCP servers, skills, and plugin release checks with local approvals and receipts.
- [HOTL Plugin](https://github.com/yimwoo/hotl-plugin) - Human-on-the-Loop AI coding workflow plugin for Codex, Claude Code, and Cline with structured planning, review, and verification guardrails.
- [Mpi-Kanban](https://github.com/MadPonyInteractive/mpi-kanban) - Claude Code and Codex workflow plugin for per-project kanban planning, handoffs, multi-agent coordination, and session lifecycle workflows.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The new plugin has been added to the README.md file, but the plugins.json file (which is described in line 255 as a compatibility export for existing automation) has not been updated. To ensure the plugin is included in the machine-readable registry, please add an entry for Mpi-Kanban to the plugins array in plugins.json and increment the total count on line 6.

Example entry for plugins.json:

{
  "name": "Mpi-Kanban",
  "url": "https://github.com/MadPonyInteractive/mpi-kanban",
  "owner": "MadPonyInteractive",
  "repo": "mpi-kanban",
  "description": "Claude Code and Codex workflow plugin for per-project kanban planning, handoffs, multi-agent coordination, and session lifecycle workflows.",
  "category": "Development & Workflow",
  "source": "awesome-codex-plugins",
  "install_url": "https://raw.githubusercontent.com/MadPonyInteractive/mpi-kanban/HEAD/.codex-plugin/plugin.json"
}

- [Personal Data Protection](https://github.com/AltByteSG/personal-data-protection-skill) - Engineer-facing personal-data-protection compliance reference — Singapore PDPA, Thailand PDPA, Indonesia UU PDP, Malaysia PDPA (Act 709 + 2024 Amendments), Philippines DPA — organised by where in the stack each obligation lands, with checklists, breach-response runbook, and a developer-view divergence table across all five.
- [PR Storyteller](./plugins/mturac/pr-storyteller) - PR title + body + test plan from commits and diff vs base branch.
- [Praxis](https://github.com/ouonet/praxis) - Intent-driven workflow skills for coding agents: describe what done looks like, not the steps. Triage-first design keeps token costs low across design, TDD, debug, review, and release.
Expand Down
12 changes: 11 additions & 1 deletion plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "awesome-codex-plugins",
"version": "1.0.0",
"last_updated": "2026-05-20",
"total": 82,
"total": 83,
"categories": [
"Development & Workflow",
"Tools & Integrations"
Expand Down Expand Up @@ -239,6 +239,16 @@
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/yimwoo/hotl-plugin/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Mpi-Kanban",
"url": "https://github.com/MadPonyInteractive/mpi-kanban",
"owner": "MadPonyInteractive",
"repo": "mpi-kanban",
"description": "Claude Code and Codex workflow plugin for per-project kanban planning, handoffs, multi-agent coordination, and session lifecycle workflows.",
"category": "Development & Workflow",
"source": "awesome-codex-plugins",
"install_url": "https://raw.githubusercontent.com/MadPonyInteractive/mpi-kanban/HEAD/.codex-plugin/plugin.json"
},
{
"name": "Personal Data Protection",
"url": "https://github.com/AltByteSG/personal-data-protection-skill",
Expand Down