dsh-tacit 0.2.0
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/LICENSE +21 -0
- package/README.md +83 -0
- package/README.zh.md +77 -0
- package/client/client.js +1691 -0
- package/cordis.patch.yml +15 -0
- package/lib/analyze.js +893 -0
- package/lib/fold.js +300 -0
- package/lib/index.js +86 -0
- package/lib/routes.js +152 -0
- package/lib/schema.js +294 -0
- package/lib/service.js +1044 -0
- package/lib/store.js +219 -0
- package/package.json +104 -0
package/cordis.patch.yml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# dsh-tacit — bundle patch layer.
|
|
2
|
+
#
|
|
3
|
+
# One host row over the profile: this loads the package's main entry as the
|
|
4
|
+
# host half. Because the package declares dsh.client (platform: web), the web
|
|
5
|
+
# app also loads its ./client bundle as the browser half.
|
|
6
|
+
#
|
|
7
|
+
# The plugin's settings can be tuned from this layer's sibling user patch
|
|
8
|
+
# (~/.dsh/profiles/web/cordis.patch.yml) with an id-targeted override, e.g.:
|
|
9
|
+
# - id: tacit
|
|
10
|
+
# config:
|
|
11
|
+
# model: deepseek-v4-pro
|
|
12
|
+
# autoDailyBudget: 50
|
|
13
|
+
- insert:
|
|
14
|
+
- id: tacit
|
|
15
|
+
name: dsh-tacit
|