Add whatsapp-claude-plugin to Plugins & Extensions#35
Add whatsapp-claude-plugin to Plugins & Extensions#35Rich627 wants to merge 1 commit intojmanhype:mainfrom
Conversation
Review Summary by QodoAdd whatsapp-claude-plugin to Plugins & Extensions
WalkthroughsDescription• Adds whatsapp-claude-plugin to Plugins & Extensions table • Updates plugin count from 4 to 5 • Plugin enables WhatsApp integration with Claude via Baileys Diagramflowchart LR
A["Plugins & Extensions Table"] -- "add new entry" --> B["whatsapp-claude-plugin"]
C["Plugin Count"] -- "increment" --> D["5 plugins"]
File Changes1. README.md
|
Code Review by Qodo
|
| ## Automation DevOps | ||
|
|
||
| | Plugin | Marketplace | Description | Author | Version | | ||
| |--------|-------------|-------------|--------|---------| | ||
| | [deployment-engineer](https://github.com/ccplugins/awesome-claude-code-plugins/tree/main/plugins/deployment-engineer) | awesome-claude-code-plugins | Use this agent when setting up CI/CD pipelines, configuring Docker containers, deploying applications to cloud platforms, setting up Kubernetes clu... | Jure Šunić | 1.0.0 | | ||
| | [devops-automator](https://github.com/ccplugins/awesome-claude-code-plugins/tree/main/plugins/devops-automator) | awesome-claude-code-plugins | Use this agent when setting up CI/CD pipelines, configuring cloud infrastructure, implementing monitoring systems, or automating deployment process... | Michael Galpert | 1.0.0 | | ||
| | [infrastructure-maintainer](https://github.com/ccplugins/awesome-claude-code-plugins/tree/main/plugins/infrastructure-maintainer) | awesome-claude-code-plugins | Use this agent when monitoring system health, optimizing performance, managing scaling, or ensuring infrastructure reliability. This agent excels a... | Michael Galpert | 1.0.0 | | ||
| | [monitoring-observability-specialist](https://github.com/ccplugins/awesome-claude-code-plugins/tree/main/plugins/monitoring-observability-specialist) | awesome-claude-code-plugins | Use this agent when you need to implement comprehensive monitoring, observability, and alerting systems for enterprise B2B applications. This agent... | Alysson Franklin | 1.0.0 | | ||
| | [n8n-workflow-builder](https://github.com/ccplugins/awesome-claude-code-plugins/tree/main/plugins/n8n-workflow-builder) | awesome-claude-code-plugins | Use this agent when you need to design, build, or validate n8n automation workflows. This agent specializes in creating efficient n8n workflows usi... | Jure Šunić | 1.0.0 | |
There was a problem hiding this comment.
1. Readme plugin list format changed 📘 Rule violation ⚙ Maintainability
The updated README.md uses large multi-column tables and descriptions that do not match the repository’s documented listing format and punctuation conventions. This deviates from established project patterns and makes the list harder to maintain consistently across contributions.
Agent Prompt
## Issue description
`README.md` content does not follow the repository’s established listing style/patterns (as documented in `contributing.md`), including the required entry format and period-terminated descriptions.
## Issue Context
The repo’s contribution guidelines specify how plugin entries should be formatted, which helps keep the list consistent and maintainable.
## Fix Focus Areas
- contributing.md[5-10]
- README.md[110-118]
- README.md[135-140]
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
| - Plugin compatibility can break across Claude Code versions. | ||
| - Not all MCP servers have been tested against the latest release. | ||
| - Community editor integrations vary in maturity and maintenance cadence. | ||
| 1. Install CAM: `curl -fsSL https://raw.githubusercontent.com/Chat2AnyLLM/code-assistant-manager/main/install.sh | bash` |
There was a problem hiding this comment.
2. Unsafe curl|bash install 🐞 Bug ⛨ Security
README instructs users to execute a remote script via curl ... | bash, which allows arbitrary code execution if the fetched content is compromised. Additionally, in typical shells the pipeline exit status is from bash, so a failed curl can still look like a successful install (empty stdin).
Agent Prompt
## Issue description
The README currently recommends installing by piping a downloaded script directly into `bash` ("curl | bash"). This is a well-known security footgun because it executes unverified remote content.
## Issue Context
This is user-facing documentation; readers will copy/paste these commands.
## Fix Focus Areas
- README.md[9-23]
## Suggested change
- Replace the one-liner with safer steps, e.g.:
1) download to a file
2) instruct the user to inspect it
3) optionally verify checksum/signature
4) then execute it explicitly (e.g. `bash install.sh`).
- If you keep a one-liner, at minimum provide an alternative “inspect first” flow and avoid implying this is the recommended secure approach.
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
Summary
Plugin: WhatsApp channel plugin for Claude Code — officially published on the Anthropic Plugin Marketplace. Connects as a linked device via Baileys v7 with bidirectional messaging, full media support, voice transcription, permission relay, and access control.
Author: Richie Liu (Rich627)
Checklist