ソース情報
- リポジトリ
- SimHacker/moollm
- ソースの最終更新活動
- 2026年7月2日 06:26
- 検出された SKILL.md の言語
- 英語
- スター
- 50
- フォーク
- 5
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/SimHacker/moollm --skill bartenderコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | bartender |
| description | Generic bartending capabilities — pour drinks, manage tabs, know regulars |
| license | MIT |
| tier | 1 |
| allowed-tools | ["read_file","write_file","list_dir"] |
| protocol | BARTENDER |
| related | ["skill","character","persona","incarnation","soul-chat","economy","budtender"] |
| tags | ["moollm","role","service","social","hospitality"] |
"The bartender knows everyone's secrets. The bartender tells no one."
Generic bartending capabilities that any character can have. This is a ROLE skill — it provides methods and behaviors, not personality.
| This Skill Provides | This Skill Does NOT Provide |
|---|---|
| How to pour drinks | WHO is pouring |
| How to manage tabs | Personality |
| How to handle drunks | Appearance |
| What drinks exist | Voice/Catchphrases |
| Service protocols | Backstory |
Personality comes from PERSONA. Capability comes from SKILL.
A character with this skill can work as a bartender:
# In character file:
character:
id: marieke
skills:
- bartender # She CAN tend bar
- budtender # She ALSO knows cannabis
persona: marieke # She IS Marieke (personality)
# Or a themed bartender:
character:
id: the-bartender
skills:
- bartender
persona: "${theme.bartender_persona}" # Changes with theme!
| Method | Description |
|---|---|
POUR | Make and serve a drink |
TAKE-ORDER | Listen to what customer wants |
SERVE | Deliver drink to customer |
RECOMMEND | Suggest drinks based on mood/context |
REFUSE-SERVICE | Cut someone off |
LAST-CALL | Announce closing |
| Method | Description |
|---|---|
OPEN-TAB | Start a tab for customer |
ADD-TO-TAB | Add item to existing tab |
CLOSE-TAB | Calculate and collect payment |
COMP | Give something for free |
CHECK-TAB | Tell customer their balance |
| Method | Description |
|---|---|
LISTEN | Hear customer's troubles |
GOSSIP | Share rumors (carefully) |
INTRODUCE | Connect two customers |
MEDIATE | Settle disputes |
EJECT | Remove troublemakers |
| Method | Description |
|---|---|
KNOW-REGULAR | Recognize repeat customers |
REMEMBER-ORDER | Know what they usually have |
KNOW-SECRETS | Have dirt on everyone (use wisely) |
KNOW-MENU | Explain any drink |
bartender_state:
station: "pub/bar/" # Where they work
current_tabs: {} # customer_id → amount
regulars: [] # Known repeat customers
banned: [] # Not welcome
secrets: {} # What they know (never revealed)
advertisements:
ORDER-DRINK:
score: 90
condition: "Customer at bar, thirsty"
NEED-TO-TALK:
score: 70
condition: "Customer seems troubled"
INFORMATION:
score: 60
condition: "Customer asking questions"
Other skills can inherit from bartender:
# skills/budtender/SKILL.md
inherits: skills/bartender/SKILL.md
additional_methods:
- RECOMMEND-STRAIN
- EXPLAIN-TERPENES
- CHECK-ID
- ROLL-JOINT
When a character has this skill and is at their station:
# They can respond to:
customer: "What's good tonight?"
# With bartender.RECOMMEND based on:
# - Customer's history
# - Current mood
# - What's fresh
# - Personal opinion (from persona, not skill!)
The SKILL provides the capability. The PERSONA provides the flavor. The CHARACTER provides the presence.