YohtHill/dsh-plugin-greeter0

dsh-plugin-greeter

一个在每次会话开始时以不同措辞问候用户、并在首次使用后记住用户名字进行个性化问候的 DeepSeek Harness 插件。

AI 分析

核心用途是提供个性化的会话开场问候。适合希望提升人机交互温度、定制个性化欢迎语的 DSH Web 用户。

套件
dsh-plugin-greeter
版本
0.1.0
最近更新
2026年8月14日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:YohtHill/dsh-plugin-greeter

Configuration (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, or calm. 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.