用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/OmniStormX/SmartNPC --skill smartnpc-farm-evening-close命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | smartnpc-farm-evening-close |
| description | 傍晚收尾——最后一轮收割成熟作物、补种空地、存箱入库。{{NPC_NAME}} 为当天农场工作画上句号。 |
| version | 0.1.0 |
| author | SmartNPC Project |
| license | MIT |
| metadata | {"npc":{"[object Object]":null},"hermes":{"tags":["SmartNPC","farm","evening","workflow"]}} |
傍晚前的最后一轮:收割所有成熟作物 → 入库 → 补种空地。这是收尾轮——不翻新地、不清杂物、不浇水。
npc_inspect_object(what="farm_actions", radius=<inspect_radius>)
inspect_radius 从 workflow args 取,默认 30。harvest 和 plant 桶。条件:harvest.count > 0
工具:npc_harvest_crops(x1=harvest.bbox.x1, y1=harvest.bbox.y1, x2=harvest.bbox.x2, y2=harvest.bbox.y2)
条件:步骤 2 执行了 harvest
工具:npc_deposit_items(auto_find=true)
条件:plant.count > 0
工具:npc_plant_seeds(seed_id=<target_seed>, x1=plant.bbox.x1, y1=plant.bbox.y1, x2=plant.bbox.x2, y2=plant.bbox.y2)
target_seed 从 workflow args 取。默认 (O)472(防风草)。npc_deposit_items(auto_find=true)
npc_show_text_bubble(text="[今天干得不错,收工了]")
或
npc_express_emotion(emotion="happy")
npc_water_crops——新种子明天浇npc_till_soil——这是开垦轮的事npc_clear_debris——这是清理轮的事npc_break_resource——这是采集轮的事chat_say——玩家没跟你说话| 参数 | 来源 | 默认值 | 说明 |
|---|---|---|---|
inspect_radius | workflow args | 30 | 巡视半径 |
target_seed | workflow args | (O)472 | 补种种子 QID |
| 特质 | 影响 |
|---|---|
| 勤奋 | 一定补种(不空着地过夜) |
| 随性 | 可能跳过补种("明天再说") |
| 有条理 | harvest → deposit → plant 顺序不可变 |
性格不改变序列顺序,只影响是否跳过补种和收尾用 bubble 还是 emotion。