# claude-code-local-plugins **Repository Path**: 88joel/claude-code-local-plugins ## Basic Information - **Project Name**: claude-code-local-plugins - **Description**: Claude Code插件管理工具,支持本地安装和路径更新 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-28 - **Last Updated**: 2026-03-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Everything Claude Code - Gitee Edition This repository contains a collection of Claude Code skills and agents designed to enhance your development workflow. These skills can be installed as a local marketplace or published to Gitee for sharing with others. ## Features ### /install-local-plugin - Install Claude Code plugins from local directories - Bypass network connection issues - Automatic plugin structure validation - Supports placeholder prompts ### /update-local-marketplace - Update source path of existing plugin marketplaces - Applies to plugin directory movement scenarios - Maintains plugin installation status automatically - Supports placeholder prompts ### /gitee-publisher - Publish Claude Code skills to Gitee (码云) - Update existing published skills - Initialize new Gitee repositories - List available skills for publishing ### /ecc - Everything Claude Code Shortcuts Provides short aliases for common Everything Claude Code skills: - `/ecc plan` → `/everything-claude-code:plan` - `/ecc tdd` → `/everything-claude-code:tdd` - `/ecc docs` → `/everything-claude-code:docs` - `/ecc architect` → `/everything-claude-code:architect` - `/ecc review` → `/everything-claude-code:code-review` - `/ecc security` → `/everything-claude-code:security-review` - `/ecc go-review` → `/everything-claude-code:go-review` - `/ecc rust-review` → `/everything-claude-code:rust-review` - `/ecc python-review` → `/everything-claude-code:python-review` - `/ecc cpp-review` → `/everything-claude-code:cpp-review` - `/ecc kotlin-review` → `/everything-claude-code:kotlin-review` - `/ecc e2e` → `/everything-claude-code:e2e` - And many more! ## Installation ### Method 1: Direct Installation from Gitee (Recommended) ```bash claude plugin marketplace add your_gitee_username/claude-code-local-plugins claude plugin install claude-code-local-plugins ``` ### Method 2: Local Installation 1. Download or clone this repository to your local machine 2. Use the `/install-local-plugin` skill to install from the local directory: ``` /install-local-plugin /path/to/this/repository ``` ### Method 3: Update Marketplace Path If you need to update the source path of an existing marketplace: ``` /update-local-marketplace ``` ## Directory Structure ``` ├── agents/ # AI agents (future use) ├── skills/ # Custom skills │ ├── install-local-plugin/ # Local plugin installation skill │ ├── update-local-marketplace/ # Marketplace path update skill │ ├── gitee-publisher/ # Gitee publishing skill │ └── ecc/ # ECC shortcuts skill ├── hooks/ # Custom hooks (future use) ├── rules/ # Custom rules (future use) ├── .claude-plugin/ # Plugin configuration │ ├── plugin.json # Plugin metadata │ ├── marketplace.json # Marketplace configuration │ └── manifest.json # Plugin manifest ├── setup.sh # One-click deployment script ├── README.md # Main documentation ├── USAGE.md # Detailed usage instructions ├── STRUCTURE.md # Project structure explanation ├── PUBLISHING.md # Publishing guide └── LICENSE # MIT License ``` ## Usage After installation, you can use any of the skills included in this marketplace. The ECC skill provides convenient shortcuts for common development tasks, while the Gitee Publisher skill helps you share your own skills with others. ### Quick Reference | Skill | Command | Purpose | |-------|---------|---------| | Install Local Plugin | `/install-local-plugin ` | Install plugins from local directories | | Update Marketplace | `/update-local-marketplace ` | Update marketplace source paths | | ECC Shortcuts | `/ecc ` | Short aliases for ECC skills | | Gitee Publisher | `/gitee-publisher ` | Publish skills to Gitee | ### Common Tasks #### Installing a Plugin from Local Directory ```bash /install-local-plugin /path/to/local/plugin/directory ``` #### Updating Marketplace Path ```bash /update-local-marketplace marketplace-name /new/path/to/directory ``` #### Using ECC Shortcuts ```bash /ecc plan # Instead of /everything-claude-code:plan /ecc review # Instead of /everything-claude-code:code-review /ecc tdd # Instead of /everything-claude-code:tdd # ... and many more ``` #### Publishing to Gitee ```bash /gitee-publisher list # List available skills /gitee-publisher init my-repo # Initialize new Gitee repo /gitee-publisher publish skill-name # Publish a skill /gitee-publisher update skill-name # Update published skill ``` For complete usage instructions, see the [USER_MANUAL.md](USER_MANUAL.md) file. ## Publishing to Gitee This repository is designed to be published to Gitee (码云). To publish: 1. Create a new repository on Gitee (https://gitee.com) 2. Clone this repository to your local machine 3. Add your SSH key to Gitee account (recommended) or configure Git to use HTTPS 4. Update the manifest and README with your specific information 5. Push to your Gitee repository See PUBLISHING.md for detailed instructions. ## Contributing This package is designed to make it easy to share Claude Code skills with others, especially in environments where GitHub access might be restricted. The Gitee Publisher skill allows you to publish your own custom skills to Gitee for distribution. ## License MIT License - Feel free to modify and distribute as needed.