DeepSeek Harness plugin

dsh-photo-skins

Photo skins for the dsh web GUI: import your own photos as UI skins (backdrop layer + auto accent extraction)

Jump to install

Source facts

Repository
frankxxxxue/dsh-photo-skins
Latest update
Aug 19, 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/frankxxxxue/dsh-photo-skins
Plugin: dsh-photo-skins
Author: frankxxxxue

Check the source files

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

File explorer4 files
README.mdSource · read only
README language

🪄 dsh-photo-skins

中文 | English

Import once. Auto-accent once. Turn any photo into a skin for the DSH Web GUI.

![Photo skins demo](screenshots/Interface_1.png) Photo skins for the DSH Web GUI: import your own photos and turn them into the interface skin. The photo paints the backdrop behind the GUI, and the accent colors are extracted from the photo automatically (dominant color as the accent, photo-tinted light/dark readability veils). Rendering controls: fit (cover/contain), blur (0-100px, global or split empty/content), dim (0-100%) and the auto-accent toggle.

A standalone cordis plugin: settings card + host routes + settings namespace + client layer controller.

✨ Core Feature

📥 Import photos three ways

![Photo skins demo](screenshots/Plugin_Path.png)

  • File picker, drag-and-drop, or paste — pick whichever you like
  • Supports PNG / JPG / WebP / GIF, up to 25MB each

👗 Try on / apply / remove

  • Manage everything from the first-level "Photo skins" settings section
  • "Try on" previews temporarily without touching the applied photo
  • "Apply" writes the skin in one click; "Remove" clears the local copy

🎨 Automatic accent extraction

  • The photo's dominant color becomes the interface accent
  • Derives light/dark scrim tints so the readability veils pick up the photo's own tone
  • Exposes CSS variables --dsw-photo-accent / --dsw-photo-accent-soft / --dsw-photo-accent-contrast

🖼️ Rendering controls

![Photo skins demo](screenshots/Interface_chat.png)

  • Fit: cover / contain
  • Blur: 0–100px, global or split
  • Dim: 0–100%, keeping foreground content readable
  • Accent-from-photo: toggle on/off anytime

💾 Local persistence

  • The applied photo persists through the photo-skins settings namespace and survives reloads
  • Files stay on this machine — nothing is uploaded or shared

🚀 Install

From npm:

dsh plugin --profile web add dsh-photo-skins

From this repository (development):

pnpm install && pnpm build
dsh plugin --profile web add link:.

Then refresh the running Web GUI (restart dsh web if the new section does not appear).

Storage

Photos are stored under <DSH_HOME>/photo-skins/<id>/ (original.<ext> plus a manifest.json with the display name, type, size and import time). Nothing is uploaded or shared; removal deletes the local copy.

🔒 Security model

  • All routes (/api/photo-skins/*) sit behind a same-origin fence

(Sec-Fetch-Site / Origin): cross-site webpages cannot read, import or delete your photos.

  • Uploads are validated by file magic bytes, not by name or declared

content-type — a renamed SVG or executable is rejected (415). SVG is deliberately unsupported (script risk).

  • Uploads are capped at 25MB (413) and written atomically (tmp + rename).
  • Stored ids are generated and validated against a whitelist regex, so no

path can escape the store directory.

🛠️ Development

Requirements: Node.js ^22.19 || >=24, pnpm

pnpm install
pnpm typecheck   # tsc --noEmit
pnpm test        # vitest run
pnpm build       # tsdown -> lib/ (host) + lib/client.js (browser bundle)

License

BSD-3-Clause. See THIRD_PARTY_NOTICES.md for attribution of incorporated portions.