用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/OmniStormX/SmartNPC --skill smartnpc-farm-cleanup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | smartnpc-farm-cleanup |
| description | 农场周边清理——清除杂物、砍树碎石、捡采集物。{{NPC_NAME}} 打扫农场及周边区域。 |
| version | 0.1.0 |
| author | SmartNPC Project |
| license | MIT |
| metadata | {"npc":{"[object Object]":null},"hermes":{"tags":["SmartNPC","farm","cleanup","workflow"]}} |
清除农场及周边的杂物(杂草、树枝、石头),砍树砸石,捡采集物。这是清理轮——不做任何耕种操作。
npc_inspect_object(what="farm_actions", radius=<inspect_radius>)
inspect_radius 从 workflow args 取,默认 30。clear / break / forage,每个有 count + bbox。条件:clear.count > 0
工具:npc_clear_debris(x1=clear.bbox.x1, y1=clear.bbox.y1, x2=clear.bbox.x2, y2=clear.bbox.y2)
条件:break.count > 0
工具:npc_break_resource(what="all", x1=break.bbox.x1, y1=break.bbox.y1, x2=break.bbox.x2, y2=break.bbox.y2)
what="all" 覆盖所有类型。count == 0 跳过此步。条件:forage.count > 0
工具:npc_forage_collect(x1=forage.bbox.x1, y1=forage.bbox.y1, x2=forage.bbox.x2, y2=forage.bbox.y2)
npc_deposit_items(auto_find=true)
npc_show_text_bubble(text="[清理干净了]")
npc_water_crops——这是养护轮的事npc_till_soil——这是开垦轮的事npc_plant_seeds——这是养护/开垦轮的事npc_harvest_crops——这是收获轮的事chat_say——玩家没跟你说话| 参数 | 来源 | 默认值 | 说明 |
|---|---|---|---|
inspect_radius | workflow args | 30 | 巡视半径 |
| 特质 | 影响 |
|---|---|
| 勤奋 | 更大半径(+5),三个动作全做 |
| 随性 | 更小半径(-3),可能跳过 break_resource |
| 有条理 | 一定先 clear 再 break,次序不可乱 |
性格不改变序列顺序,只影响半径大小和是否跳过 break_resource。