@sparkelf/dsh-plus 0.2.0-rc.2 → 0.2.0-rc.20
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 +23 -11
- package/lib/bin.js +469 -20
- package/lib/types/bin.js +14 -0
- package/lib/types/standalone-capabilities.d.ts +109 -0
- package/lib/types/standalone-capabilities.js +332 -0
- package/lib/types/standalone-cli.js +136 -14
- package/lib/types/standalone-profile.d.ts +45 -1
- package/lib/types/standalone-profile.js +84 -5
- package/lib/types/standalone-server.js +2 -2
- package/package.json +77 -28
package/cordis.patch.yml
CHANGED
|
@@ -6,26 +6,31 @@
|
|
|
6
6
|
trustedHosts: !!js ctx.webRuntime.trustedHosts
|
|
7
7
|
browserAuthentication: disabled
|
|
8
8
|
|
|
9
|
+
# The derived index behind session history search. `first-search` builds it when a
|
|
10
|
+
# search first asks for it rather than delaying every start.
|
|
9
11
|
- id: session-query-sqlite
|
|
10
12
|
config:
|
|
11
13
|
path: !!js dshHomePath('storages/session-query.sqlite')
|
|
12
14
|
openAt: first-search
|
|
13
15
|
|
|
16
|
+
# The model-facing tools over that index: search, trace, and event read. The
|
|
17
|
+
# backend above answers only once something mounts the tools that call it, so a
|
|
18
|
+
# deployment carrying the backend alone has an index nothing asks for.
|
|
14
19
|
- insert:
|
|
20
|
+
- id: plus-session-query-tool
|
|
21
|
+
name: '@deepseek-ai/dsh-tool-session-query'
|
|
22
|
+
# The sidebar skill center. It reads the loaded skills through `ctx.skills`
|
|
23
|
+
# and registers its row and page into the shell's own slots, so the panel
|
|
24
|
+
# matches the official panels beside it.
|
|
25
|
+
- id: plus-skill-center
|
|
26
|
+
name: '@sparkelf/dsh-client-ui-skill-center'
|
|
27
|
+
|
|
15
28
|
- id: plus-backup
|
|
16
29
|
name: '@sparkelf/dsh-plugin-backup'
|
|
17
30
|
|
|
18
|
-
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
config:
|
|
22
|
-
baseUrl: !!js process.env.DSH_DATAOPS_BASE_URL
|
|
23
|
-
serverName: dataops
|
|
24
|
-
credentialRef: dataops_access_token
|
|
25
|
-
targetCredentialRef: dataops_target_ref
|
|
26
|
-
callbackOrigin: !!js process.env.DSH_DATAOPS_CALLBACK_ORIGIN
|
|
27
|
-
toolCallTimeoutMs: 60000
|
|
28
|
-
failOnStartupError: false
|
|
31
|
+
# DataOps tools belong to the DataOps-managed workspace profile only. A
|
|
32
|
+
# standalone profile must not carry DataOps identity or endpoint config, so
|
|
33
|
+
# this layer mounts no DataOps plugin.
|
|
29
34
|
|
|
30
35
|
# A disabled root node carries the package's Web Settings entry into the
|
|
31
36
|
# client inventory; the startup nodes below exclusively own Host schemas.
|
|
@@ -51,3 +56,10 @@
|
|
|
51
56
|
provider: fork
|
|
52
57
|
enabled: false
|
|
53
58
|
maxDepth: 0
|
|
59
|
+
|
|
60
|
+
# The first content search builds the whole index in one transaction, so it needs far
|
|
61
|
+
# more than a steady-state query. This row follows the insert above because a patch
|
|
62
|
+
# only reaches rows an earlier patch created.
|
|
63
|
+
- id: plus-session-query-tool
|
|
64
|
+
config:
|
|
65
|
+
searchTimeoutMs: 900000
|