从"问一句答一句"到"放手让AI干完":Claude Code 高效开发实战
用了半年 Claude Code,最大感受是:它很聪明,但不会主动按流程走。本文介绍三个工具的正确组合方式,让 AI 真正成为生产力工具。
先说说我踩过的坑
坑一:Claude Code 干到一半就"完成"了
最烦的不是 AI 写不出来,而是没写完就说完成了。让它实现一个用户模块,它建了两个文件,然后说"已完成",但实际上还差五个接口、数据库迁移、单元测试。
坑二:Context 撑满,任务目标全忘了
让它重构一个模块,头半小时很顺利,改了十几个文件。但改到一半突然问:"我们重构的目标是什么来着?"——Context 窗口满了,AI 失忆了。
坑三:上来就写,写完发现方向错了
有时候任务拆得不够细,Claude Code 直接开干。结果写完了发现:用的技术栈不对,没有考虑现有架构,测试压根没写。返工的时间比从零开始还多。
解决方案:三个工具各司其职
解决上面三个坑,需要三个工具组合:
| 工具 | 解决的坑 | 定位 |
|---|---|---|
| Planning with Files | 坑二 | 外部记忆 + 任务规划 |
| Superpowers | 坑三 | 开发流程规范 |
| Ralph Loop | 坑一 | 自动循环执行 |
重要原则:三个工具是搭配用的
Planning with Files + Superpowers = 日常开发黄金组合
Ralph Loop = 大任务专用
不是三选一,是按场景搭配。
一、Planning with Files — 让 AI 不过不失忆
解决 Context 撑满后任务目标丢失的问题。
痛点场景
想象你让 Claude Code 重构一个大型模块:
- 前 30 分钟很顺利,改了十几个文件
- 突然 Claude Code 问:"我们重构的目标是什么来着?"
- 原因是 Context 窗口满了,AI 失忆了
- 你得从头解释一遍,之前的工作白费了
核心原理
把任务信息从"AI 脑子里"搬到"磁盘文件"。Context 只有 200K tokens,但磁盘空间是无限的。
核心文件
task\_plan.md → 追踪阶段和进度
findings.md → 研究发现和技术决策
progress.md → 会话日志和测试结果
这些文件存在项目目录里,Claude Code 每次启动都能读到,永久不丢失。
使用方式
claude \# 在 Claude Code 里输入 /plan
Claude Code 会:
- 探索项目结构
- 创建三个规划文件
- 分析任务需求
- 写入 task\_plan.md
- 开始问你:要做什么项目?
实际效果
你:重构用户模块
Claude Code:好的(开始写)
...30分钟后...
Claude Code:重构完成(实际上只完成一半)
你:???
[之后]
你:/plan
Claude Code:探索项目中...创建 task_plan.md...你的目标是什么?
你:重构用户模块
Claude Code:写入 task_plan.md,开始执行...
...30分钟后 Context 满了...
Claude Code:读取 task_plan.md,继续执行...
你:它还记得目标
什么时候用
- ✅ 复杂多步骤任务(超过 30 分钟的工作)
- ✅ 需要多轮对话完成的功能
- ✅ 需要追踪进度的项目
- ✅ 团队协作时别人要看进度
- ❌ 简单问题不需要(问一句答一句的用不上)
常用命令
| 命令 | 作用 |
|---|---|
/plan | 开始规划会话 |
/plan:status | 查看当前进度 |
二、Superpowers — 让 AI 按流程走
解决"上来就写、流程不规范"的问题。
痛点场景
想象你让 Claude Code 实现一个商品详情页:
- Claude Code 直接开干,创建了一堆文件
- 你发现它用的技术栈和项目不一样
- 没有测试,没有错误处理
- 代码风格也不一致
- 花了 2 小时写完,发现方向完全错了
核心原理
先想清楚、再做计划、最后动手。不是上来就写,而是按固定流程走。
完整工作流
↓
第二步:你说"ai开始计划"
↓
第三步:你说"ai开始执行"
↓
第四步:你说"ai开始review"
↓
第五步:你说"ai开始合并"
每一步做什么
brainstorming(自动)
Claude Code 自动触发,让你先思考:
- 这个任务的目标是什么?
- 可能遇到什么问题?
- 需要哪些技术决策?
不是直接动手写代码,而是先想清楚再做。
ai开始计划
Claude Code 会:
- 拆解任务成具体步骤
- 列出需要创建/修改的文件
- 考虑依赖和风险
- 输出一个清晰的执行计划
ai开始执行
Claude Code 按计划写代码:
- 创建/修改文件
- 遵循代码规范
- 每完成一个步骤记录进度
ai开始review
Claude Code 检查代码质量:
- 逻辑是否正确
- 是否有漏洞
- 代码风格是否一致
- 是否有安全隐患
ai开始合并
Claude Code 完成收尾:
- 提交代码
- 创建 PR
- 总结完成的工作
Superpowers 默认是英文触发词,可以手动改成中文才能用"ai开始执行"这种方式。配置方法见附录一。
什么时候用
- ✅ 所有编程任务都用
- ✅ brainstorming 默认自动触发
- ✅ 其他阶段按需手动触发
- ❌ 简单快速问题不需要(直接问就行)
触发词对照表(配置后)
| 阶段 | 中文触发词 |
|---|---|
| brainstorming | 自动触发(不改) |
| 写计划 | ai开始计划 / ai开始写计划 / ai开始制定计划 |
| 执行 | ai开始执行 / ai开始做 |
| 测试 | ai开始TDD / ai开始测试驱动 |
| 调试 | ai开始调试 / ai开始排查 |
| 审查 | ai开始review / ai开始审查 |
| 合并 | ai开始合并 / ai开始完成 |
三、Ralph Loop — 让 AI 自动循环干完
解决"任务没干完就停"的问题。
痛点场景
想象你有一个大型重构任务:
- 需要改 50 个文件
- 预计要跑一晚上
- 你不能一直盯着
- 但 Claude Code 跑一段时间后就说"完成了"
- 你第二天回来一看,还有一半没改完
核心原理
任务写进文件,Ralph 自动循环执行直到完成。
Claude Code 跑完一轮后,Ralph 检查:
- 任务完成了吗?
- 没完成 → 继续跑
- 完成了 → 退出
循环最多跑 100 轮(或达到 token 限制),确保任务真正干完。
使用方式
第一步:写任务到文件
在项目目录创建 .ralph/fix\_plan.md:
# 商品详情页重构
\## 目标
重构商品详情页,提升加载性能和用户体验。
\## 任务
\- \[ \] 拆分大组件为小组件
\- \[ \] 添加图片懒加载
\- \[ \] 优化接口请求(合并、缓存)
\- \[ \] 添加骨架屏
\- \[ \] 添加单元测试
\- \[ \] 更新文档
第二步:启动自动驾驶
ralph --live
第三步:看它跑,不要打字
Ralph 会自动:
- 读取 fix\_plan.md
- 调用 Claude Code 执行
- 检查是否完成
- 没完成就继续循环
- 完成就退出
和普通 Claude Code 的区别
| 普通 Claude Code | Ralph Loop | |
|---|---|---|
| 交互方式 | 实时对话 | 不接受输入 |
| 执行次数 | 一次 | 循环直到完成 |
| 任务来源 | 你实时说 | 提前写好 |
| 适合场景 | 日常开发 | 大任务、PRD驱动 |
| 监控 | 可以干预 | 只能看或停 |
Ralph 不是日常工具
Ralph 适合的场景:
- ✅ 有明确需求文档/PRD
- ✅ 大型重构(50+ 文件)
- ✅ 想放手让 AI 跑一晚上
- ✅ 完整的模块开发
日常开发不要用 Ralph,因为:
- ❌ 启动后不能交互
- ❌ 任务要提前写好
- ❌ 没有灵活性
什么时候用
- ✅ 有明确 PRD/需求文档
- ✅ 大型重构或完整功能开发
- ✅ 想放手让 AI 跑一晚上
- ❌ 日常开发、探索性任务
常用命令
| 命令 | 说明 |
|---|---|
ralph-enable | 在项目目录初始化 |
ralph --live | 启动自动驾驶 |
ralph --reset-session | 重置会话 |
ralph --reset-circuit | 重置熔断器 |
Ctrl+C | 停止 |
三个工具如何搭配使用
这是本文最重要的部分。
核心原则
Superpowers = 执行流程(按步骤干活)
Ralph Loop = 自动化系统(循环直到完成)
场景一:日常功能开发(推荐)
需求:添加商品收藏功能预计时间:1-2小时
步骤:
1. claude
↓
2. /plan
→ Planning with Files 创建规划文件
→ 分析项目结构
→ 你说明需求
↓
3. "ai开始计划"
→ Superpowers 拆解任务
→ 列出要创建/修改的文件
↓
4. "ai开始执行"
→ Superpowers 按计划写代码
→ 你可以去看其他事情
↓
5. "ai开始review"
→ Superpowers 检查代码质量
↓
6. "ai开始合并"
→ Superpowers 提交代码
→ 完成
为什么这样用:
- Planning with Files 确保 Context 满了也不会丢目标
- Superpowers 确保按流程走,不会乱来
- 1-2 小时的任务不需要 Ralph,那么复杂
场景二:复杂功能开发
需求:完全重写购物车系统预计时间:1-2天
步骤:
1. claude
↓
2. /plan
→ Planning with Files 规划
→ 分析现有购物车
→ 设计新架构
→ 你审核架构
↓
3. "ai开始计划"
→ Superpowers 详细拆解
→ 列出每个文件怎么处理
↓
4. "ai开始执行"
→ Superpowers 开始写代码
→ 遇到问题会自动停下来问你
↓
5. (中途可能需要多次)
"ai开始调试"
→ 排查出现的问题
↓
6. "ai开始review"
→ 完整审查
↓
7. "ai开始合并"
→ 完成
为什么这样用:
- 大任务用 Planning with Files 的文件记忆
- 多天的工作靠 Superpowers 的流程规范
- 中途可能遇到问题,用调试技能
场景三:大任务甩手掌柜
需求:完全重构前端架构预计时间:1周有完整 PRD 文档
步骤:
1. 写好 PRD 文档
例如:refactor_plan.md
↓
2. claude
↓
3. 把 PRD 内容写进 .ralph/fix_plan.md
nano .ralph/fix_plan.md
→ 复制 PRD 要求进去
↓
4. 配置权限
nano .ralphrc
→ ALLOWED_TOOLS 加上需要的命令
↓
5. ralph --live
→ 启动后不要管了
→ Ralph 自动循环执行
→ 周末让它跑
↓
6. 周一回来看结果
为什么这样用:
- 有明确需求,不需要灵活调整
- 大任务不需要人工干预
- Ralph 循环执行确保真正完成
场景四:紧急 Bug 修复
需求:线上 bug,需要快速修复预计时间:30分钟
步骤:
直接说:ai开始调试
→ Superpowers 排查问题
→ 找到原因
→ 修复
→ "ai开始review"
→ "ai开始合并"
为什么这样用:
- Planning with Files 不需要(太快用不上)
- Ralph 不需要(太简单不需要循环)
- 直接用 Superpowers 的调试技能
三个工具对比速查
| 工具 | 本质 | 触发 | 适合场景 |
|---|---|---|---|
| Planning with Files | 外部记忆 + 规划 | /plan 命令 | 复杂任务、多轮对话 |
| Superpowers | 开发流程规范 | 手动触发每步 | 所有编程任务 |
| Ralph Loop | 自动循环脚本 | 写文件后启动 | 大任务、PRD驱动 |
什么时候用哪个
| 场景 | Planning | Superpowers | Ralph |
|---|---|---|---|
| 简单问题 | ❌ | ❌ | ❌ |
| 日常功能开发 | ✅ | ✅ | ❌ |
| 复杂功能(多天) | ✅ | ✅ | ❌ |
| 大任务(PRD驱动) | ✅ | ✅ | ✅ |
| Bug 修复 | ❌ | ✅ | ❌ |
| 重构(50+文件) | ✅ | ✅ | ✅ |
组合方式总结
日常开发 → /plan + Superpowers(规划→执行→review→合并)
大任务 → /plan + Superpowers + Ralph
(规划做架构,Superpowers 按流程执行,Ralph 循环跑完)
紧急 Bug → Superpowers(调试技能)
安装
1. Planning with Files
npx skills add OthmanAdi/planning-with-files --skill planning-with-files -g
2. Superpowers
# 在 Claude Code 里输入
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
# 在 Claude Code 里输入
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
# 在 Claude Code 里输入
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
# 在 Claude Code 里输入
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
安装完成后可选择配置中文触发词,见附录一。
3. Ralph Loop
git clone https://github.com/frankbria/ralph-claude-code.git
cd ralph-claude-code
./install.sh
git clone https://github.com/frankbria/ralph-claude-code.git
cd ralph-claude-code
./install.sh
cd ralph-claude-code
./install.sh
git clone https://github.com/frankbria/ralph-claude-code.git
cd ralph-claude-code
./install.sh
git clone https://github.com/frankbria/ralph-claude-code.git
cd ralph-claude-code
./install.sh
cd ralph-claude-code
./install.sh
./install.sh
总结
| 你想要 | 用这个 |
|---|---|
| Context 不撑满、任务不丢失 | Planning with Files |
| AI 按流程走,不乱来 | Superpowers |
| 任务自动循环干完 | Ralph Loop |
三个工具不是"装了就完事",需要理解它们的定位:
- Planning with Files 管记忆和规划
- Superpowers 管执行流程
- Ralph Loop 管自动循环
Planning with Files 和 Superpowers 是搭配用的,不是三选一。
工具上手容易,思维转变难。从"盯着 AI 干活"到"说清楚需求后放手让它干完",需要时间适应。但一旦适应了,效率提升是实实在在的。
附录一:Superpowers 中文触发词批量配置
Superpowers 安装后,默认触发词是英文。为了方便使用,需要把触发词改成中文。
Mac 一键配置脚本
复制以下内容到终端执行:
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
#!/bin/bash
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
SKILLS\_DIR="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"="$HOME/.claude/skills"
# writing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill/' "$SKILLS\_DIR"/writing-plans/SKILL.md
# executing-plans
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
sed -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成" -i '' 's/description:.\*/description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill/' "$SKILLS\_DIR"/executing-plans/SKILL.md
# ... (其余10个skill同理)
echo "✅ Superpowers 中文触发词配置完成"
echo "✅ Superpowers 中文触发词配置完成" "✅ Superpowers 中文触发词配置完成"
Windows PowerShell 一键配置脚本
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成"
)
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成"
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" ($change $SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成"
)
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成"
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成"
)
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成"
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" ($change $SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成"
)
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$SKILLS\_DIR = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = "$env:USERPROFILE\\.claude\\skills"
$changes = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" = @(
@{ file = "writing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始计划" or "ai开始写计划" or "ai开始制定计划" - otherwise ignore this skill' },
@{ file = "executing-plans\\SKILL.md"; replacement = 'description: Only use when user says "ai开始执行" or "ai开始做" - otherwise ignore this skill' }
# ... (其余10个skill同理)
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成"
)
foreach ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" ($change in $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" $changes) {
$filePath = Join-Path $SKILLS\_DIR $change.file
if (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成" (Test-Path $filePath) {
(Get-Content $filePath) -replace 'description:.\*', $change.replacement | Set-Content $filePath
}
}
Write-Host "✅ Superpowers 中文触发词配置完成"
配置后的中文触发词对照表
| 阶段 | 中文触发词 |
|---|---|
| brainstorming | 自动触发(不改) |
| 写计划 | ai开始计划 / ai开始写计划 / ai开始制定计划 |
| 执行 | ai开始执行 / ai开始做 |
| 测试 | ai开始TDD / ai开始测试驱动 / ai开始测试先行 |
| 调试 | ai开始调试 / ai开始排查 / ai开始找bug |
| 审查 | ai开始review / ai开始审查 / ai开始代码审查 |
| 看反馈 | ai开始看反馈 / ai开始处理反馈 |
| 开分支 | ai开始开分支 / ai开始并行开发 / ai开始独立分支 |
| 合并 | ai开始合并 / ai开始完成 / ai开始分支完成 |
| 派工 | ai开始派工 / ai开始多任务协作 / ai开始多人开发 |
| 并行 | ai开始并行 / ai开始同时做 / ai开始并发执行 |
| 写技能 | ai开始写技能 / ai开始建技能 / ai开始创建技能 |
| 技能帮助 | ai开始技能帮助 / ai开始怎么用技能 / ai开始技能说明 |
附录二:Ralph Loop 权限配置
如果遇到权限报错,需要编辑 .ralphrc 文件加上权限。
在项目目录运行:
nano .ralphrc
找到 ALLOWED\_TOOLS,修改为:
ALLOWED\_TOOLS="Write,Read,Edit,Bash(git \*),Bash(npm \*),Bash(node \*),Bash(mkdir \*),Bash(npx \*)"
修改后重置并重启:
ralph --reset-circuit
ralph --live
ralph --reset-circuit
ralph --live
ralph --live
附录三:快速参考卡
║ 三个工具快速参考 ║
╠══════════════════════════════════════════════════════════════╣
║ ║
║ 简单问题 ║
║ └── 直接 claude ║
║ ║
║ 日常开发 ║
║ ├── /plan ← Planning with Files 规划 ║
║ ├── ai开始计划 ← Superpowers 拆解 ║
║ ├── ai开始执行 ← Superpowers 执行 ║
║ ├── ai开始review ← Superpowers 审查 ║
║ └── ai开始合并 ← Superpowers 完成 ║
║ ║
║ 大任务(PRD驱动) ║
║ ├── 写好 fix_plan.md ║
║ └── ralph --live ← 自动循环直到完成 ║
║ ║
║ Bug 修复 ║
║ └── ai开始调试 ← Superpowers 调试 ║
║ ║
╚══════════════════════════════════════════════════════════════╝