Raphaelutumn/dsh-mood1

@dsh-external/dsh-mood

A tiny behavioral mood ring for your AI coding agent: observes session behavior and shows a four-state mood status light in the session header

包名
@dsh-external/dsh-mood
版本
0.1.0
许可证
MIT
最近更新
2026年8月27日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Raphaelutumn/dsh-mood

Configuration

FieldDefaultMeaning
confusedRepeatThreshold3consecutive occurrences of one tool that mean CONFUSED
frustratedFailureThreshold3consecutive failures that mean FRUSTRATED
overwhelmedSignalCount3whether high activity + failure + repetition are all present for OVERWHELMED
stableSuccessesToRecover2consecutive successes required to return to GOOD
changeCooldownMs60000how long before the same reason stops re-surfacing
repetitionWindow12recent tool calls kept for repeat detection
highActivityThreshold4window length treated as "high activity"

Override in the profile's cordis.patch.yml:

- id: mood
  config:
    frustratedFailureThreshold: 5
    stableSuccessesToRecover: 3
    changeCooldownMs: 30000

All config values must be positive integers. Invalid config fails plugin load loudly rather than silently weakening behavior.