YohtHill/dsh-plugin-greeter ↗★ 0
dsh-plugin-greeter
A DeepSeek Harness (dsh) plugin that greets the user at the start of every session with varied wording, learns their name on first use, and greets them personally afterward.
AI 분석
核心用途是提供个性化的会话开场问候。适合希望提升人机交互温度、定制个性化欢迎语的 DSH Web 用户。
설치
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:YohtHill/dsh-plugin-greeterConfiguration (optional)
- insert:
- id: greeter
name: 'dsh-plugin-greeter'
config:
style: engineering # greeting tone: minimal | warm | practical | engineering | playful | calm
language: zh # fixed greeting language (omit to mirror the user)
greetings: # optional custom phrase pool (one picked per session)
- '早上好,{name}!今天想让我帮你做什么?'
- '嗨,{name},欢迎回来!👋'
nameFile: 'my-name.json' # custom storage filename inside the dsh home
By default the greeting is adaptive: the model improvises fresh, conversational wording every session, mirrors the language you write in (English in → English greeting), and draws a random tone each time. The options below are optional overrides:
style— fix the greeting tone:minimal(clean & short),warm(enthusiastic),practical(down to business),engineering(terse, technical, build-log vibe),playful, orcalm. Omit for a random tone each session.language— force a fixed greeting language (e.g.zh,en,ja) instead of mirroring the user.greetings— an explicit pool of greeting phrases; the plugin rotates through them so consecutive sessions never repeat. Use{name}as a placeholder for the user's name.nameFile— custom storage filename inside the dsh home.
The config is validated with a Schemastery schema — invalid values fail plugin load loudly instead of being silently ignored.