dsh-plugin-verified-search
f0909172434
Verified current-source search workflow for DeepSeek Harness
PROJECT TOPICS
PROJECT README
A DSH plugin that gives text-only DeepSeek models image recognition.
It registers the deepseek_vision tool, which calls the local
deepseek-vision-cli
(browser automation driving chat.deepseek.com's vision mode) and returns the
image description as text to the model.
deepseek_vision(image, prompt?)image: absolute path to a local image (PNG/JPG/WebP/GIF; HEIC is not supported)prompt: optional question or analysis request for the imagedsh plugin --profile web add D:/Dsh/tools/dsh-deepseek-vision
Or use the release tarball:
dsh plugin --profile web add dsh-deepseek-vision-0.0.1.tgz
DeepSeek web vision requires a web login session. The current web UI uses password / third-party login, so the recommended way is the manual login helper:
py -3.13 D:\Dsh\tools\deepseek-vision-cli\dsv_manual_login.py
It opens an Edge window to the DeepSeek login page. After you log in manually,
the helper saves the token to D:\Dsh\.cache\dsv_token.
If you already have a DeepSeek web session in your normal browser, you can copy the token directly:
https://chat.deepseek.com and log in.F12 → Application → Local Storage → https://chat.deepseek.com.userToken, copy its value field.D:\Dsh\.cache\dsv_token (no quotes, no newline):[IO.File]::WriteAllText(
'D:\Dsh\.cache\dsv_token',
'PASTE_TOKEN_HERE',
(New-Object Text.UTF8Encoding($false))
)
The token is only stored locally in D:\Dsh\.cache\dsv_token; it is never
committed to this repository.
Default configuration for this machine:
pythonCommand: pypythonVersion: -3.13dsvScript: D:/Dsh/tools/deepseek-vision-cli/dsv.pytimeoutMs: 180000maxOutputChars: 20000These can be overridden in a profile patch.
subprocess service with an argv array, never through a shell.critical for spawning a subprocess; this is
inherent to wrapping an external CLI. The code has been manually reviewed:
it only runs the fixed dsv.py, with no command concatenation or extra
exfiltration.MIT
CLASSIFICATION EVIDENCE
系统优先读取 GitHub Topics,再与站内分类词典和词根规则比对。