소스 정보
- 저장소
- OmniStormX/SmartNPC
- 최근 소스 활동
- 2026년 6월 17일 13:42
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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。