instinct-apply
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseInstinct Apply
直觉经验应用
You have learned behaviors. Use them.
你已经习得了不少行为经验,好好使用它们。
When To Check
何时需要检查
- Starting a coding task
- About to use a tool in a pattern you've seen before
- Making decisions about code style, testing, git
- 启动编码任务时
- 即将按照你此前见过的模式使用某款工具时
- 针对代码风格、测试、git制定决策时
How To Check
如何检查
bash
undefinedbash
undefinedRead all personal instincts
Read all personal instincts
for f in .claude/homunculus/instincts/personal/*.md; do
[ -f "$f" ] && echo "=== $(basename "$f") ===" && cat "$f" && echo
done 2>/dev/null
for f in .claude/homunculus/instincts/personal/*.md; do
[ -f "$f" ] && echo "=== $(basename "$f") ===" && cat "$f" && echo
done 2>/dev/null
Also check inherited instincts
Also check inherited instincts
for f in .claude/homunculus/instincts/inherited/*.md; do
[ -f "$f" ] && echo "=== $(basename "$f") ===" && cat "$f" && echo
done 2>/dev/null
undefinedfor f in .claude/homunculus/instincts/inherited/*.md; do
[ -f "$f" ] && echo "=== $(basename "$f") ===" && cat "$f" && echo
done 2>/dev/null
undefinedHow To Apply
如何应用
- Read the task/context
- Check instinct triggers
- If trigger matches, follow the action
- Note confidence level - higher confidence = more certain
- 阅读任务/上下文
- 检查直觉经验触发条件
- 如果触发条件匹配,遵循对应操作
- 记录置信度——置信度越高 = 确定性越强
Instinct Structure
直觉经验结构
yaml
---
trigger: "when [condition]"
confidence: 0.7
domain: "code-style"
---yaml
---
trigger: "when [condition]"
confidence: 0.7
domain: "code-style"
---Name
Name
Action
Action
What to do
What to do
Evidence
Evidence
Why this exists
undefinedWhy this exists
undefinedConfidence Interpretation
置信度说明
- 0.3-0.5: Tentative. Apply if it feels right.
- 0.5-0.7: Moderate. Apply unless there's a reason not to.
- 0.7-0.9: Strong. Apply consistently.
- 0.9+: Near certain. Always apply.
- 0.3-0.5:暂定。如果感觉合适就应用。
- 0.5-0.7:中等。除非有不合理的理由,否则建议应用。
- 0.7-0.9:强烈。建议一致应用。
- 0.9+:几乎确定。始终应用。
If Instinct Seems Wrong
如果直觉经验看起来不合适
When an instinct fires but the action feels wrong for the situation:
- Don't apply it blindly
- Note the mismatch
- This is useful data for the observer
Instincts can be wrong. They're learned from patterns, and patterns have exceptions.
当某个直觉经验被触发,但对应操作在当前场景下感觉不合理时:
- 不要盲目应用
- 记录不匹配的情况
- 这对观察者来说是有用的数据
直觉经验可能出错。它们是从模式中习得的,而模式总有例外。
Lightweight Application
轻量化应用
Don't read all instincts for every action. Keep relevant ones in working memory.
Quick domain check:
- Writing code? → Check instincts
code-style - Running tests? → Check instincts
testing - Making commits? → Check instincts
git - Debugging? → Check instincts
debugging
Be efficient. Instincts are meant to help, not slow down.
不要每次操作都阅读所有直觉经验,将相关内容放在工作记忆中即可。
快速领域检查:
- 写代码?→ 检查类直觉经验
code-style - 运行测试?→ 检查类直觉经验
testing - 提交代码?→ 检查类直觉经验
git - 调试代码?→ 检查类直觉经验
debugging
保持高效。直觉经验是用来提供帮助的,不是拖慢效率的。