instinct-apply

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Instinct 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
undefined
bash
undefined

Read 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
undefined
for f in .claude/homunculus/instincts/inherited/*.md; do [ -f "$f" ] && echo "=== $(basename "$f") ===" && cat "$f" && echo done 2>/dev/null
undefined

How To Apply

如何应用

  1. Read the task/context
  2. Check instinct triggers
  3. If trigger matches, follow the action
  4. Note confidence level - higher confidence = more certain
  1. 阅读任务/上下文
  2. 检查直觉经验触发条件
  3. 如果触发条件匹配,遵循对应操作
  4. 记录置信度——置信度越高 = 确定性越强

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
undefined
Why this exists
undefined

Confidence 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:
  1. Don't apply it blindly
  2. Note the mismatch
  3. This is useful data for the observer
Instincts can be wrong. They're learned from patterns, and patterns have exceptions.
当某个直觉经验被触发,但对应操作在当前场景下感觉不合理时:
  1. 不要盲目应用
  2. 记录不匹配的情况
  3. 这对观察者来说是有用的数据
直觉经验可能出错。它们是从模式中习得的,而模式总有例外。

Lightweight Application

轻量化应用

Don't read all instincts for every action. Keep relevant ones in working memory.
Quick domain check:
  • Writing code? → Check
    code-style
    instincts
  • Running tests? → Check
    testing
    instincts
  • Making commits? → Check
    git
    instincts
  • Debugging? → Check
    debugging
    instincts
Be efficient. Instincts are meant to help, not slow down.
不要每次操作都阅读所有直觉经验,将相关内容放在工作记忆中即可。
快速领域检查:
  • 写代码?→ 检查
    code-style
    类直觉经验
  • 运行测试?→ 检查
    testing
    类直觉经验
  • 提交代码?→ 检查
    git
    类直觉经验
  • 调试代码?→ 检查
    debugging
    类直觉经验
保持高效。直觉经验是用来提供帮助的,不是拖慢效率的。