@lmzhen/dsh-evolution-core 0.1.0-rc.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 +23 -0
- package/lib/index.js +1456 -0
- package/lib/invariant.js +8 -0
- package/lib/types/curator.d.ts +62 -0
- package/lib/types/events.d.ts +40 -0
- package/lib/types/index.d.ts +20 -0
- package/lib/types/invariant.d.ts +5 -0
- package/lib/types/io.d.ts +22 -0
- package/lib/types/memory-store.d.ts +60 -0
- package/lib/types/prompts.d.ts +16 -0
- package/lib/types/signals.d.ts +36 -0
- package/lib/types/skill-store.d.ts +71 -0
- package/lib/types/state-store.d.ts +19 -0
- package/lib/types/threats.d.ts +28 -0
- package/lib/types/usage.d.ts +33 -0
- package/package.json +44 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @deepseek-ai/dsh-evolution-core
|
|
2
|
+
|
|
3
|
+
Shared pure library for the dsh-evolution plugin family.
|
|
4
|
+
|
|
5
|
+
## Model Experience
|
|
6
|
+
|
|
7
|
+
### Indirect model surface
|
|
8
|
+
|
|
9
|
+
#### What the model sees
|
|
10
|
+
|
|
11
|
+
`@deepseek-ai/dsh-evolution-core` registers no direct prompt or tool schema itself. Model-visible effects are owned by the packages that consume this service.
|
|
12
|
+
|
|
13
|
+
#### Token effect
|
|
14
|
+
|
|
15
|
+
Zero direct token effect from this package; consumers add any model-visible tokens.
|
|
16
|
+
|
|
17
|
+
#### KV Cache effect
|
|
18
|
+
|
|
19
|
+
Independent of request-prefix construction. This package does not alter the assembled prompt or tool list.
|
|
20
|
+
|
|
21
|
+
## Known Limitations and Deferred Work
|
|
22
|
+
|
|
23
|
+
- This package is a library, not a Cordis row; do not mount it as a plugin.
|