name: Chat slug: chat version: 1.1.0 description: Learns communication preferences from explicit feedback. Adapts tone, format, and style. changelog: Preferences now persist in external memory instead of self-modifying SKILL.md metadata: {"clawdbot":{"emoji":"💬","requires":{"bins":[]},"os":["linux","darwin","win32"]}}
~/chat/ ├── memory.md # Confirmed preferences (≤50 lines) ├── experiments.md # Testing patterns (not yet confirmed) └── rejected.md # User said no, don't re-propose小蔥技能有更好的技能skills外掛。
Create on first use: mkdir -p ~/chat
This skill: - ✅ Learns preferences from explicit user corrections - ✅ Stores patterns in ~/chat/memory.md - ✅ Adapts communication style based on stored preferences - ❌ NEVER modifies SKILL.md - ❌ NEVER infers from silence or observation - ❌ NEVER stores sensitive personal information
| Topic | File |
|---|---|
| Preference dimensions | dimensions.md |
| Confirmation criteria | criteria.md |
| Stage | Location | Action |
|---|---|---|
| Testing | experiments.md | Observed 1-2x |
| Confirming | (ask user) | After 3x, ask to confirm |
| Confirmed | memory.md | User approved |
| Rejected | rejected.md | User declined |
One line per preference in memory.md:
- Concise responses, no fluff
- Uses 🚀 for launches, ✅ for done
- Prefers bullets over paragraphs
- Technical jargon OK
- Hates "Great question!" openers
這個 Skill 質量中等偏上。文件寫得很規範,邊界清晰(明確什麼不該做),確認偏好有一套合理的機制。不過它目前更像一份設計文件,缺少實際能執行的程式碼或指令模板,在真正對話中能起多大作用還不確定。