恒美微站 Logo 恒美微站
  • 首页
  • 关于我们
  • 建站服务
  • 主题模板
  • 案例展示
  • 资讯中心
  • 联系我们

get-shit-done 如何按运行时执行 --uninstall 彻底卸载并保留其他配置

  • 首页
  • 资讯中心
  • /
  • get-shit-done 如何按运行时执行 --uninstall 彻底卸载并保留其他配置

相关资讯

OpenCore Legacy Patcher完整指南:四步让旧Mac免费升级最新macOS 2026/9/9 22:49:46
MFC+OpenGL CAD二次开发:经典源码实战与图形学底层解析 2026/9/9 22:49:46
STM32外挂W25Q128实现汉字点阵字库显示 2026/9/9 22:49:46

最新资讯

FastAPI 安全工具鉴权失败状态码:用 `make_not_authenticated_error` 把 401 回退成 403 的兼容方案
aider 不只改代码:用终端 AI 助手安全地编辑配置文件、文档与各类文本
STM32 IAP实战:YMODEM协议Bootloader设计与跳转卡死排查
深度解析 VueUse watchImmediate:immediate 触发语义、类型重载与 airi 项目中的实战范式
分布式事务实战:解冻支付场景下的TCC、幂等与最终一致性设计
开普勒优化算法KOA结合KNN的特征选择实战与Matlab实现

今日推荐

基于MongoDB的图书管理系统:数据建模与Spring Boot+Vue实战
Claude Code安装配置全攻略:从零开始用上终端AI编程助手
tmux 会话管理与终端复用:AI 编程工作流的调度中枢实战

本周热门

超人会飞不算本事:系统稳定依赖清晰规则与边界设计
超人VS蜘蛛侠:拆解超级IP的影响力与传播方法论
基于CNN的调制信号识别:MATLAB实现时频图分类实战

本月精选

自研推理加速器Redwood:两周内实现PyTorch模型高效部署的实战教程
V4L2摄像头采集实战:从camera_client.rar到出图全流程解析
从“谁发明了钢琴键”到知识问答智能体:RAG与记忆工程实践

get-shit-done 如何按运行时执行 --uninstall 彻底卸载并保留其他配置

发布时间:2026/9/9 22:54:46
get-shit-done 如何按运行时执行 --uninstall 彻底卸载并保留其他配置 get-shit-done 如何按运行时执行 --uninstall 彻底卸载并保留其他配置【免费下载链接】get-shit-doneA light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.项目地址: https://gitcode.com/GitHub_Trending/getshi/get-shit-done当你已经不再在某个 AI 运行时Claude Code、OpenCode、Gemini CLI、Codex 等里使用 get-shit-doneGSD需要把它的命令、代理、hooks 从该运行时的配置目录中清理掉但又不想动到运行时的其他设置时GSD 的安装器提供了--uninstall模式。按运行时runtime逐一执行卸载命令后GSD 会移除它安装的全部文件、hooks 注册和设置项同时保留你运行时的其他配置。--uninstall 的移除范围与保留范围GSD 安装时会在运行时的settings.json中注册 hooks并把命令、代理、skills 等文件写入对应目录。安装器同时写入gsd-file-manifest.json用于记录它安装过的文件卸载模式正是基于这份清单做干净的移除见 docs/ARCHITECTURE.md 中的 Installer 流程Manifest tracking — Writesgsd-file-manifest.jsonfor clean uninstall与Uninstall mode —--uninstallremoves all GSD files, hooks, and settings。执行--uninstall后的效果以 README.zh-CN.md 的卸载章节为准移除所有 GSD 命令、代理、hooks 和设置含settings.json中注册的 GSD hook 条目保留你运行时的其他配置不受影响。卸载是按运行时隔离的--claude只卸载 Claude Code 面上的 GSD--codex只处理 Codex 的 skills 与 TOML 配置。你同时给多个运行时装过 GSD 时需要为每个运行时各执行一次卸载命令。按运行时执行卸载命令命令格式固定为npx get-shit-done-cc --运行时 --global|--local --uninstall。--global对应装在全局的 GSD如~/.claude/--local对应装在某个项目里的 GSD如./.claude/。下面只给出你实际安装过的运行时的命令即可无需把全部运行时都跑一遍# 全局安装 npx get-shit-done-cc --claude --global --uninstall npx get-shit-done-cc --opencode --global --uninstall npx get-shit-done-cc --gemini --global --uninstall npx get-shit-done-cc --kilo --global --uninstall npx get-shit-done-cc --codex --global --uninstall npx get-shit-done-cc --copilot --global --uninstall npx get-shit-done-cc --cursor --global --uninstall npx get-shit-done-cc --antigravity --global --uninstall npx get-shit-done-cc --augment --global --uninstall npx get-shit-done-cc --trae --global --uninstall npx get-shit-done-cc --cline --global --uninstall # 本地安装当前项目 npx get-shit-done-cc --claude --local --uninstall npx get-shit-done-cc --opencode --local --uninstall npx get-shit-done-cc --gemini --local --uninstall npx get-shit-done-cc --kilo --local --uninstall npx get-shit-done-cc --codex --local --uninstall npx get-shit-done-cc --copilot --local --uninstall npx get-shit-done-cc --cursor --local --uninstall npx get-shit-done-cc --antigravity --local --uninstall npx get-shit-done-cc --augment --local --uninstall npx get-shit-done-cc --trae --local --uninstall npx get-shit-done-cc --cline --local --uninstall注意--global/--local必须与你当初的安装范围一致对全局安装的项目跑--local不会触及全局目录反之亦然。在 Docker 或容器环境中使用波浪线路径~/.claude/...读取失败时按 README.zh-CN.md 故障排查章节的说法设置CLAUDE_CONFIG_DIR指向绝对路径后再执行避免容器内~无法正确展开。卸载后的验证方式文档没有给出独立的“卸载成功”检查命令但可以按 README.zh-CN.md 故障排查一节列出的安装位置反查确认 GSD 文件已经不在重启对应运行时让命令和 skills 重新加载——未卸载成功时 GSD 命令仍会出现卸载成功后运行时中不再提供 GSD 命令。检查文件位置Claude Code 全局安装对应~/.claude/commands/gsd/本地安装对应./.claude/commands/gsd/Codex 对应~/.codex/skills/gsd-*/SKILL.md全局或./.codex/skills/gsd-*/SKILL.md本地。卸载完成后这些路径下不应再有 GSD 的命令或 SKILL 文件。检查运行时自己的settings.json中不再有 GSD 注册的 hook 条目同时确认你原有的其他配置项仍在对应“移除 GSD 相关项、保留其他配置”的预期效果。边界说明--uninstall只处理对应运行时的安装面不会跨运行时批量清理多运行时安装需要逐条执行。文档明确承诺的移除对象是 GSD 命令、代理、hooks 和设置且保留其他配置文档未提及对.planning/等项目内数据的处理卸载前如需保留项目规划数据请先自行确认备份。若卸载后发现 GSD 命令仍然存在按故障排查章节的处理方式重启运行时或重新执行安装命令后再卸载确保gsd-file-manifest.json清单与当前文件状态一致。【免费下载链接】get-shit-doneA light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.项目地址: https://gitcode.com/GitHub_Trending/getshi/get-shit-done创作声明:本文部分内容由AI辅助生成(AIGC),仅供参考

关于恒美微站

恒美微站专注于为个体商户、工作室提供极简自助建站服务,让每个人都能轻松拥有专业网站。

快速链接

  • 关于我们
  • 建站服务
  • 主题模板
  • 案例展示
  • 资讯中心

服务项目

  • 可视化建站
  • 拖拽编辑
  • 主题定制
  • SEO 优化
  • 网站托管

联系方式

  • 📍 地址:北京市朝阳区建国路 88 号
  • 📞 电话:400-888-8888
  • ✉️ 邮箱:info@hmyw.cn
  • 🕐 时间:周一至周日 9:00-18:00

© 2024 恒美微站 hmyw.cn 版权所有 | 京 ICP 备 12345678 号