用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/SimHacker/moollm --skill simulation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | simulation |
| description | Abstract base for runtime state — adventure, city-sim, ecosystem all inherit from this |
| license | MIT |
| tier | 1 |
| allowed-tools | ["read_file","write_file"] |
| related | ["adventure","society-of-mind","time","party","character","needs","buff","action-queue","prototype","speed-of-light","exit","memory-palace","simulator-effect"] |
| tags | ["moollm","runtime","state","turns","engine"] |
Abstract base for runtime state management. Concrete simulations (adventure, city-sim, ecosystem) inherit from this.
Motto: "The simulation is the world. The world is the simulation."
[!IMPORTANT] This is the abstract base. Don't create
SIMULATION.ymldirectly. UseADVENTURE.yml(for narrative exploration) or create your own concrete type. The concrete file INCLUDES all simulation properties plus type-specific ones.
| Parameter | Default | Chat Command |
|---|---|---|
paused | false | PAUSE / RESUME |
advancement | normal | SET TIME ADVANCEMENT [none|slow|normal|fast] |
turn | 0 | TICK [n] / REWIND [n] |
| Parameter | Default | Chat Command |
|---|---|---|
auto_commit | false | SET AUTO COMMIT [on|off] |
auto_push | false | SET AUTO PUSH [on|off] |
git_remote | origin | SET GIT REMOTE [name] |
git_branch | main | SET GIT BRANCH [name] |
| Parameter | Default | Chat Command |
|---|---|---|
narration_level | normal | SET NARRATION [minimal|normal|verbose] |
show_mechanics | false | SET SHOW MECHANICS [on|off] |
debug_mode | false | DEBUG [on|off] |
| Parameter | Default | Chat Command |
|---|---|---|
write_to_chat | true | SET CHAT OUTPUT [on|off] |
write_to_transcript | true | SET TRANSCRIPT [on|off] |
transcript_path | ./README.md | SET TRANSCRIPT PATH [path] |
include_yaml_islands | true | SET YAML ISLANDS [on|off] |
include_links | true | SET LINKS [on|off] |
link_format | markdown | SET LINK FORMAT [markdown|plain|none] |
Transcript paths are relative to adventure directory:
./README.md (default)./logs/session-log.md./narrative/chapter-1.mdExample output with all flags ON:
You're in the pub with Marieke.
You examine the lamp:
object: id: brass-lamp state: lit oil: 75% # Warm. Faithful. Flickering slightly.
| Parameter | Default | Chat Command |
|---|---|---|
difficulty | normal | SET DIFFICULTY [easy|normal|hard] |
simulation:
turn: 47
paused: false
parameters:
git:
auto_commit: true
auto_push: false
gameplay:
difficulty: normal
permadeath: false
display:
show_mechanics: false
player:
character: characters/don-hopkins/
location: pub/
party:
members: [characters/don-hopkins/, pub/cat-cave/terpie.yml]
selection:
targets: []
active_buffs: []
world_state: {}
flags: {}
| Command | Effect |
|---|---|
STATUS | Current simulation state |
SHOW SETTINGS | List all parameters |
SET [param] [value] | Configure parameter |
GET [param] | Query parameter value |
PAUSE / RESUME | Time control |
TICK [n] | Force advance turns |
SAVE / LOAD | Persistence |
With auto_commit: true, every turn is a git commit:
# Commits look like:
Turn 47: Entered pub
Turn 48: Ordered Monkey's Blessing
Turn 49: Pet Terpie (+Serenity buff)
Time travel commands:
REWIND [n] — Go back n turnsBRANCH [name] — Create alternate timelineTIMELINES — List all branchesMERGE TIMELINE [branch] — Merge narratives