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 Analysis

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

Package
dsh-env
Version
0.1.0
License
MIT
Last updated
Sep 9, 2026

Install

This plugin has no verified bundle, or compatibility checks failed. Read the repository notes first. Read the full 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}}