Skip to content

Commit 5482bc0

Browse files
authored
Merge pull request #225 from 1bananachicken/chore/update-skills
chore: 更新 skill 内容,同步当前代码结构
2 parents 70ca357 + 21019bd commit 5482bc0

3 files changed

Lines changed: 33 additions & 14 deletions

File tree

.claude/skills/maante-issue-log-analysis/KNOWLEDGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- `Furniture.json:9``Win32-Front`
1414
- `FountainCheckin.json:9``Win32-Front`
1515
- `ClaimRewards.json:9-10``Win32``Win32-Front`
16-
- `WithdrawMoney.json:12-13``Win32``Win32-Front`
16+
- `WithdrawMoney.json:13-14``Win32``Win32-Front`
1717
- 用户报告"功能比别人少"或"找不到某个任务"时,先检查控制器是否匹配。
1818
- 主页控制器切换按钮已知有 bug,用户必须在"设置 > 连接设置"中更改。
1919
- 前台控制器(`Seize`)抢占鼠标是 by design,不是 bug。

.claude/skills/pipeline-guide/SKILL.md

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,27 @@ description: MaaNTE Pipeline JSON 编写指南。基于 MaaFramework Pipeline
1616

1717
```
1818
assets/resource/base/pipeline/
19-
├── Common/ # 通用可复用节点(按钮、场景跳转等)
20-
├── Fish/ # 钓鱼任务流水线
21-
├── Furniture/ # 家具收取流水线
22-
├── Interface/ # 场景管理器接口节点
23-
├── Rhythm/ # 节奏任务流水线
24-
├── SceneManager/ # 场景管理内部节点
25-
├── SoundDodge/ # 闪避反击流水线
26-
├── Tetris/ # 俄罗斯方块流水线
27-
├── MakeCoffee.json # 冲咖啡任务
28-
├── ClaimRewards.json # 领取奖励
29-
├── WithdrawMoney.json # 补货取钱
19+
├── Common/ # 通用可复用节点(按钮、场景跳转等)
20+
├── DatasetCollection/ # 自动驾驶数据集采集
21+
├── Fish/ # 钓鱼任务流水线
22+
├── Furniture/ # 家具收取流水线
23+
├── Interface/ # 场景管理器接口节点
24+
├── Movement/ # 移动测试
25+
├── PinkPawHeist/ # 粉爪大劫案核心模块
26+
├── Rhythm/ # 节奏任务流水线
27+
├── SceneManager/ # 场景管理内部节点
28+
├── SoundDodge/ # 闪避反击流水线
29+
├── Tetris/ # 俄罗斯方块流水线
30+
├── WithdrawMoney/ # 补货取钱子模块
31+
├── realtime_assist/ # 实时辅助子模块
32+
├── AutoFScroll.json # 自动滚屏
33+
├── auto_piano.json # 自动钢琴
34+
├── ClaimRewards.json # 领取奖励
35+
├── FountainCheckin.json # 喷泉签到
36+
├── MakeCoffee.json # 冲咖啡任务
37+
├── PinkPawHeist.json # 粉爪大劫案入口
38+
├── realtime_assist.json # 实时辅助入口
39+
├── TestMovement.json # 移动测试
3040
└── ...
3141
```
3242

@@ -275,4 +285,4 @@ PrintT(context, "tetris.task_done")
275285

276286
- Pipeline 协议完整规范:[MaaFramework PipelineProtocol](https://github.com/MaaXYZ/MaaFramework/blob/main/docs/en_us/3.1-PipelineProtocol.md)
277287
- Python 自定义动作开发:`agent/custom/action/` 目录下的实现
278-
- 节点测试:`docs/zh_cn/developers/node-testing.md`
288+
- 节点测试:`docs/zh_cn/develop/`

.claude/skills/python-action-guide/SKILL.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,22 @@ agent/
3636
│ ├── SoundTrigger/ # 音频触发业务
3737
│ ├── Movement/ # 移动控制
3838
│ ├── auto_piano/ # 自动钢琴
39+
│ ├── pinkpaw/ # 粉爪大劫案
40+
│ ├── DatasetCollection/ # 数据集采集
3941
│ ├── auto_make_coffee.py # 单文件简单动作
4042
│ ├── auto_tetris.py # 俄罗斯方块入口
43+
│ ├── auto_f_scroll.py # 自动滚屏
4144
│ ├── furniture_claim.py # 家具收取
42-
│ └── realtime_task.py # 实时任务调度
45+
│ ├── realtime_task.py # 实时任务调度
46+
│ ├── withdraw_money_choose_item.py # 补货取钱物品选择
47+
│ └── __init__.py # 所有 CustomAction 的导入与注册
4348
└── utils/
49+
├── __init__.py # 子模块聚合导出
4450
├── logger.py # 日志系统(loguru/logging)
4551
├── pienv.py # PI 环境变量
52+
├── maafocus.py # 用户可见消息(Pipeline focus 协议)
53+
├── i18n.py # 多语言/翻译
54+
├── screen.py # 屏幕缩放/分辨率
4655
├── time.py # 时间工具
4756
└── win32_process.py # Win32 窗口查找
4857
```

0 commit comments

Comments
 (0)