artemiroshnichenko/dsh-plugins--packages-dsh-env0

dsh-env

Environment facts for DeepSeek Harness — injects today, platform, os_version, and harness_version into system prompt variables

AI 分析

自动获取当前运行环境的元数据,并以变量形式供系统提示词模板引用。适合需要让 Agent 感知当前时间、操作系统及运行环境的自动化任务。

パッケージ
dsh-env
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/09/09

インストール

検証済み bundle がないか、互換性チェックに失敗しています。先にリポジトリの説明を読んでください。 README 全文を読む ↗

ドキュメント

README 全文を読む ↗

Configuration

Add to your ~/.dsh/cordis.patch.yml:

- insert:
    - id: env
      name: dsh-env
      config:
        includeToday: true
        includePlatform: true
        includeOsVersion: true
        includeHarnessVersion: true
        customVariables:
          environment: production

Usage in System Prompt Templates

Variables registered by dsh-env can be referenced directly in your persona templates:

Today: {{today}}
Platform: {{platform}}
OS: {{os_version}}
Harness: {{harness_version}}