DeepSeek Harness plugin

dsh-weather-sky

Weather & Sky: a hot-pluggable live weather overlay for the DeepSeek Harness web GUI (sun by day, moon with phases by night, clouds, rain, snow, fog, lightning).

Jump to install

Source facts

Repository
guoPhineas/dsh-weather-sky
Latest update
Aug 15, 2026
Category
Tools & Capabilities
GitHub stars
1
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/guoPhineas/dsh-weather-sky
Plugin: dsh-weather-sky
Author: guoPhineas

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.en.mdSource · read only
README language

dsh-weather-sky

中文

A DeepSeek Harness (DSH) Web GUI plugin that overlays a live weather & sky animation: sun by day, moon with real phases by night, plus clouds, rain (intensity-aware), snow, fog, and periodic lightning.

Weather is fetched in the browser from Open-Meteo (no API key), with location resolved via navigator.geolocation (falling back to ipwho.is).

![](./docs/1.png)

---

Features

CapabilityDescription
GeolocationBrowser geolocation first, IP geolocation (ipwho.is) fallback
Live weatherOpen-Meteo (no key): temperature, weather code, day/night, cloud, precipitation
Day / nightsun by day, moon + stars by night
Moon phasesnew → waxing crescent → first quarter → waxing gibbous → full → … → waning crescent
Celestial motionsun arcs east→zenith→west by solar time; moon arcs by time + phase
Weather visualsclouds, rain (scales with intensity), snow, fog, thunderstorm lightning (~6s)
Text-friendlypointer-events:none overlay, low opacity, translucent status chip

---

Weather-code mapping

WMOConditionVisual
0clearsun / moon
1–2partly-cloudysun + a few clouds
3cloudyclouds, no sun/moon
45/48fogdrifting fog
51–57drizzlelight rain
61/63/65light/moderate/heavy rainrain scales with intensity
71/73/75light/moderate/heavy snowsnow
80–82showers → downpourrain
85/86snow showerssnow
95–99thunderstormdark clouds + rain + lightning

---

Installation

Quick start

Tell your dsh:

Install this weather plugin: https://github.com/guoPhineas/dsh-weather-sky

CLI

git clone https://github.com/guoPhineas/dsh-weather-sky
cd <harness>
dsh plugin --profile web add ../dsh-weather-sky

---

Directory layout

src/
├── index.ts            # Host half (empty apply; browser-only plugin)
└── client/index.ts     # Client half: weather fetch + DOM/CSS animation layer
cordis.patch.yml        # bundle patch (inserts this package's dsh.client entry)
tsdown.config.ts        # build (tsdown)
package.json            # manifest: dsh.bundle.patch, dsh.client, peerDeps

---

Building

pnpm install
pnpm build   # tsdown

Output goes to lib/ (index.js host entry, client.js browser half).

---

Notes

  • This is a client-primary plugin: weather is fetched and rendered in the browser; the host half registers no model tools.
  • DSH external plugins depend on the published @deepseek-ai/cordis (^4.0.1) and are installed via dsh plugin --profile <name> add <path>, without modifying DSH source.
  • On a transient weather/geolocation failure, the overlay keeps the previous frame and retries on the next cycle (15s).

---

License

[MIT](./LICENSE)