@wildusk/dsh-backup 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/README.md +5 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,19 +25,13 @@ After a restore you may need to restart any running `dsh` processes.
|
|
|
25
25
|
|
|
26
26
|
## Install
|
|
27
27
|
|
|
28
|
-
The host loads `src/index.ts` directly (no build step).
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
```sh
|
|
33
|
-
git clone https://github.com/usertoandy/dsh-backup.git
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
2. Register the plugin with a profile (the bundles list is updated
|
|
37
|
-
automatically by `dsh plugin add`):
|
|
28
|
+
The host loads `src/index.ts` directly (no build step). Install straight
|
|
29
|
+
from the npm registry — `dsh plugin add` forwards the package name to pnpm
|
|
30
|
+
inside the profile directory, then activates the bundle automatically
|
|
31
|
+
(the bundles list is updated by the reconcile step):
|
|
38
32
|
|
|
39
33
|
```sh
|
|
40
|
-
dsh plugin --profile web add
|
|
34
|
+
dsh plugin --profile web add @wildusk/dsh-backup
|
|
41
35
|
```
|
|
42
36
|
|
|
43
37
|
Restart `dsh web` afterwards; `/backup`, `/backup-list` and `/backup-restore`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildusk/dsh-backup",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "DeepSeek Harness plugin: /backup, /backup-list and /backup-restore commands to back up, list and restore the DSH home directory. DeepSeek Harness 备份插件:一键备份 DSH 主目录(~/.dsh)为时间戳 tar.gz 归档、查看历史备份并恢复。",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|