# good-plugins-share **Repository Path**: sweetwisdom/good-plugins-share ## Basic Information - **Project Name**: good-plugins-share - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-07 - **Last Updated**: 2026-03-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # good-plugins-share 个人分享的 Claude Code 插件集合,基于 Claude Code 插件体系构建。 ## 安装方式 ### 方式一:在线安装 ```bash # 添加 marketplace 源(全局配置,一次添加即可) claude plugin marketplace add https://gitee.com/sweetwisdom/good-plugins-share.git # 举例:安装插件 claude plugin install get-all-permissions ``` ## 使用 插件通过关键词或命令触发。具体触发方式见各插件说明。 ## 已有插件 ### 1. get-all-permissions 为 Claude Code 生成最高权限配置文件,免除重复手动确认。 - **触发条件**:用户提到 "开启全部权限"、"跳过确认"、"免确认"、"最高权限"、"get-all-permissions" - **功能**:写入 `.claude/settings.local.json`,开启所有操作权限 - **注意**:使用前需确认,存在安全风险 ### 2. record-docs 从已完成的开发任务生成结构化项目文档。 - **触发条件**:显式命令 - `/record` - `/record-task` - `/record-feature` - **功能**: - 分析对话,提取任务上下文 - 自动分类文档类型(Feature、Architecture、Bug Fix、Performance 等) - 生成结构化文档到 `docs/` 目录 - 更新 CHANGELOG ## 更新 ```bash # 更新指定 marketplace 源(拉取最新插件列表) claude plugin marketplace update good-plugins-share # 更新所有 marketplace 源 claude plugin marketplace update # 更新插件到最新版本(更新后需重启 Claude Code 生效) claude plugin update get-all-permissions --scope project ``` ## 卸载 ```bash # 卸载项目级插件 claude plugin uninstall get-all-permissions --scope project # 移除 marketplace 源 claude plugin marketplace remove good-plugins-share ``` ## 禁用 / 启用(不卸载) ```bash # 临时禁用插件 claude plugin disable get-all-permissions --scope project # 重新启用 claude plugin enable get-all-permissions --scope project ```