dsh-capyreporter 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cordis.patch.yml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
# dsh-capyreporter bundle patch — mounts the persistent CapyReporter desktop-pet plugin.
|
|
2
2
|
# The host half is lib/index.js (exported as a Cordis plugin); the package.json
|
|
3
3
|
# "dsh.client" declaration makes the browser half available at /plugins/dsh-capyreporter/client.js.
|
|
4
4
|
- insert:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
{
|
|
2
2
|
"name": "dsh-capyreporter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CapyReporter — an always-on-top capybara task reporter for the DeepSeek Harness Web UI. A transparent floating pet that narrates each trajectory step in a speech bubble, tells you which project is reporting, alerts you when a task completes while you are away, and lets you upload your own pet art.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dsh",
|
|
@@ -42,6 +42,10 @@
|
|
|
42
42
|
"README.zh.md",
|
|
43
43
|
"LICENSE"
|
|
44
44
|
],
|
|
45
|
+
"scripts": {
|
|
46
|
+
"verify": "node scripts/verify.mjs",
|
|
47
|
+
"prepack": "node scripts/check-bom.mjs"
|
|
48
|
+
},
|
|
45
49
|
"dsh": {
|
|
46
50
|
"bundle": {
|
|
47
51
|
"patch": "./cordis.patch.yml"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
// dsh-capyreporter desktop helper - Electron main process.
|
|
2
2
|
// One transparent, frameless, always-on-top window showing CapyReporter + a speech bubble.
|
|
3
3
|
// The renderer fetches data from the DSH host over HTTP (/dsh-capyreporter/*) - no stdin IPC.
|
|
4
4
|
//
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
// renderer for the always-on-top CapyReporter window. Fetches image + activity from the
|
|
2
2
|
// DSH host over HTTP; drags to move; left-click opens DSH; right-click shows a menu.
|
|
3
3
|
//
|
|
4
4
|
// Bubble UX: compact by default (headline + latest status line); single click
|