Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
"Objects don't wait to be used — they announce what they can do."
What Is It?
Advertisement is The Sims-style object interaction: every object in a room broadcasts its available actions, scored by relevance to the current context.
Instead of the user memorizing commands, objects advertise what's possible:
You approach the workbench.
Available actions (sorted by relevance):
⭐ CRAFT tool (you have materials)
• EXAMINE blueprints
• ORGANIZE parts
• MORE options...
The Sims Connection
In The Sims, objects have "advertisements" — each interaction scores based on:
The Sim's current needs (hunger, fun, social)
Object properties (a fridge scores high for hunger)
Context (can't use stove if broken)
This extensible object architecture was key to The Sims' massive success:
User-created objects — anyone could make new furniture, appliances, characters
Expansion packs — just drop in new objects with their advertisements
No code changes — objects self-describe their behaviors
Infinite variety — the community created millions of objects
The same YAML file that defines what an object is also defines what it can do. Plug-in architecture for free.
MOOLLM applies this to any object:
# workbench.ymltype:objectadvertisements:-action:CRAFTscore_if:"has_materials AND has_skill"satisfies: [productivity, creativity]
-action:EXAMINEscore_if:"always"satisfies: [curiosity]
-action:MOREscore_if:"always"satisfies: [exploration]
How It Works
1. Objects Broadcast
Every object in the room has an advertisements list:
Top actions:
1. ANALYZE_SAMPLE at microscope (90) — you have a sample!
2. WRITE_NOTES at notebook (75) — observations pending
3. BREW at coffee_maker (65) — you're a bit tired
First handler that responds wins. Unhandled events can:
Log a warning
Trigger POSTEL (charitable interpretation)
Invoke a default handler
Example: Custom Behavior
# workshop/ROOM.ymlhandles:CRAFT:|
# Room-level craft handler
Check if character has required skill.
Check if materials available in room.
If conditions met, delegate to object.
Otherwise, suggest where to get materials.
The room intercepts CRAFT before it reaches the object, adding room-specific logic.
ADVERTISEMENT — Objects announce available actions
AUTONOMOUS-SELECTION — Agent picks based on scores
SIMANTICS — The Sims behavioral model
PIE-MENU — Radial display of options
FLY-UNDER-RADAR — Normalize through defaults
PROCEDURAL-RHETORIC — Rules carry ideology
"The Sims' AI isn't centralized — it's distributed throughout objects.""A refrigerator knows it offers food. A bed knows it offers sleep.""The Sim chooses from what's advertised nearby."
This IS MOOLLM's architecture. Objects self-describe. The coherence engine orchestrates. Intelligence is distributed throughout the world.