180 lines
5.2 KiB
Markdown
180 lines
5.2 KiB
Markdown
# Claude Code Plugin Marketplace
|
|
|
|
Custom Claude Code plugins for development workflows, DevOps, and business operations.
|
|
|
|
## 🚀 Quick Start
|
|
|
|
### Add the Marketplace
|
|
|
|
```bash
|
|
/plugin marketplace add git@gitea.pipexerp.com:huangjun/claude-marketplace.git
|
|
```
|
|
|
|
Or using HTTPS (requires credential configuration):
|
|
```bash
|
|
/plugin marketplace add https://gitea.pipexerp.com/huangjun/claude-marketplace.git
|
|
```
|
|
|
|
### Install Plugins
|
|
|
|
```bash
|
|
# Install specific plugin
|
|
/plugin install ai-proj-plugin@coolbuy-claude-plugins
|
|
|
|
# List all available plugins
|
|
/plugin marketplace list coolbuy-claude-plugins
|
|
```
|
|
|
|
## 📦 Available Plugins (40 Total)
|
|
|
|
### 🚀 Development & Coding
|
|
- **ai-proj-plugin** - AI project management with MCP integration
|
|
- **dev-plugin** - General development workflows
|
|
- **dev-arch-plugin** - Software architecture and design
|
|
- **dev-coding-plugin** - Coding standards and best practices
|
|
- **dev-test-plugin** - Testing workflows and automation
|
|
- **frontend-design-plugin** - Frontend design and UI/UX
|
|
|
|
### 🔧 DevOps & Operations
|
|
- **ops-tools-plugin** - DevOps tools for deployment and monitoring
|
|
- **ops-servers-plugin** - Server management and SSH operations
|
|
- **enjoysa-deploy-plugin** - Enjoysa deployment automation
|
|
- **req-deploy-plugin** - Requirement deployment workflows
|
|
|
|
### 📋 Project & Requirements Management
|
|
- **req-plugin** - Requirement management workflows
|
|
- **req-dev-plugin** - Requirement development processes
|
|
- **req-prd-plugin** - PRD (Product Requirements Document) creation
|
|
- **req-commands-plugin** - Detailed command reference for /req
|
|
- **req-review-plugin** - PRD review methodology
|
|
- **req-workflow-plugin** - Complete requirement lifecycle workflow
|
|
- **requirement-plugin** - General requirement handling
|
|
- **executing-plans-plugin** - Plan execution and tracking
|
|
|
|
### 💼 Business Operations
|
|
- **biz-plan-plugin** - Business planning and proposals
|
|
- **biz-contract-plugin** - Contract drafting and management
|
|
- **finance-plugin** - Financial operations and reporting
|
|
|
|
### 🔗 Integrations
|
|
- **feishu-plugin** - Feishu/Lark integration (documents, spreadsheets)
|
|
- **feishu-bitable-plugin** - Feishu Bitable (multi-dimensional tables)
|
|
- **feishu-docx-plugin** - Feishu cloud documents
|
|
- **wecom-plugin** - WeChat Work integration
|
|
- **siyuan-plugin** - SiYuan note-taking integration
|
|
- **data-excel-plugin** - Excel data processing
|
|
- **doubao-voice-plugin** - Doubao Voice API (TTS, ASR, dialogue)
|
|
|
|
### 🏢 Project-Specific
|
|
- **coolbuy-legacy-plugin** - Coolbuy legacy system workflows
|
|
- **coolbuy-paas-plugin** - Coolbuy PaaS platform operations
|
|
- **coolbuy-platform-plugin** - Coolbuy platform development
|
|
- **enjoysa-plugin** - Enjoysa project workflows
|
|
|
|
### 🔄 Session Management
|
|
- **save-session-plugin** - Save Claude Code sessions
|
|
- **reload-session-plugin** - Reload saved sessions
|
|
- **read-session-plugin** - Read session data
|
|
- **search-sessions-plugin** - Search through sessions
|
|
|
|
### 🛠️ Utilities
|
|
- **pr-plugin** - Pull request creation and management
|
|
- **finishing-a-development-branch-plugin** - Branch finishing workflows
|
|
- **skill-manager-plugin** - Skill management utilities
|
|
- **qiudl-personal-plugin** - Personal productivity tools
|
|
|
|
## 📖 Usage Examples
|
|
|
|
### AI Project Management
|
|
```bash
|
|
/ai-proj-plugin:create-task "Implement user authentication"
|
|
/ai-proj-plugin:start-timer
|
|
```
|
|
|
|
### DevOps Operations
|
|
```bash
|
|
/ops-tools-plugin:deploy production
|
|
/ops-servers-plugin:check-status
|
|
```
|
|
|
|
### Development Workflow
|
|
```bash
|
|
/dev-coding-plugin:start-feature "user-profile"
|
|
/finishing-a-development-branch-plugin:create-pr
|
|
```
|
|
|
|
### Business Operations
|
|
```bash
|
|
/biz-contract-plugin:draft "Software Subscription Agreement"
|
|
/biz-plan-plugin:create-proposal
|
|
```
|
|
|
|
## 🔐 Private Repository Access
|
|
|
|
For background auto-updates, set authentication token:
|
|
|
|
```bash
|
|
# Add to ~/.zshrc or ~/.bashrc
|
|
export GITEA_TOKEN="your-gitea-token"
|
|
```
|
|
|
|
## 📝 Plugin Naming Convention
|
|
|
|
All plugins use namespaced commands to avoid conflicts:
|
|
- Format: `/plugin-name:command-name`
|
|
- Example: `/ai-proj-plugin:create-task`
|
|
|
|
## 🔄 Updates
|
|
|
|
Update the marketplace and plugins:
|
|
|
|
```bash
|
|
# Update marketplace catalog
|
|
/plugin marketplace update coolbuy-claude-plugins
|
|
|
|
# Update specific plugin
|
|
/plugin update ai-proj-plugin@coolbuy-claude-plugins
|
|
|
|
# Update all plugins from this marketplace
|
|
/plugin update-all
|
|
```
|
|
|
|
## 🏗️ Plugin Structure
|
|
|
|
Each plugin follows the official Claude Code plugin structure:
|
|
```
|
|
plugin-name-plugin/
|
|
├── .claude-plugin/
|
|
│ └── plugin.json # Plugin metadata
|
|
├── skills/
|
|
│ └── SKILL.md # Agent skills
|
|
└── [scripts, configs, etc.]
|
|
```
|
|
|
|
## 📚 Documentation
|
|
|
|
- [Official Claude Code Plugin Docs](https://code.claude.com/docs/en/plugins)
|
|
- [Plugin Marketplace Guide](https://code.claude.com/docs/en/plugin-marketplaces)
|
|
|
|
## 👤 Author
|
|
|
|
**Donglin Lai (qiudl)**
|
|
- Email: qiudl@zhiyuncai.com
|
|
- Organization: PipeX ERP
|
|
|
|
## 📄 License
|
|
|
|
Individual plugins may have their own licenses. Please check each plugin's documentation.
|
|
|
|
## 🤝 Contributing
|
|
|
|
To add or update plugins:
|
|
1. Clone this repository
|
|
2. Add/modify plugins in the `plugins/` directory
|
|
3. Regenerate `marketplace.json` using the provided scripts
|
|
4. Submit changes
|
|
|
|
---
|
|
|
|
**Repository**: git@gitea.pipexerp.com:huangjun/claude-marketplace.git
|