@iniesta8888/agent-live-dsh-adapter 0.3.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/README.md +23 -0
- package/cordis.patch.yml +3 -0
- package/lib/client.js +539 -0
- package/lib/index.js +1342 -0
- package/lib/types/dsh/src/adapter.d.ts +53 -0
- package/lib/types/dsh/src/client.d.ts +4 -0
- package/lib/types/dsh/src/creator.d.ts +14 -0
- package/lib/types/dsh/src/frame-runtime.d.ts +1046 -0
- package/lib/types/dsh/src/index.d.ts +4 -0
- package/lib/types/src/content/compiler.d.ts +30 -0
- package/lib/types/src/content/graph-validator.d.ts +55 -0
- package/lib/types/src/content/library.d.ts +3 -0
- package/lib/types/src/content/registry.d.ts +33 -0
- package/lib/types/src/content/runtime-content.d.ts +62 -0
- package/lib/types/src/content/schema.d.ts +141 -0
- package/lib/types/src/content/validator.d.ts +34 -0
- package/lib/types/src/core/limits.d.ts +14 -0
- package/lib/types/src/core/mapping.d.ts +16 -0
- package/lib/types/src/core/protocol.d.ts +104 -0
- package/lib/types/src/creator/commands.d.ts +18 -0
- package/lib/types/src/creator/mode.d.ts +9 -0
- package/lib/types/src/creator/service.d.ts +198 -0
- package/lib/types/src/runtime/content-service.d.ts +74 -0
- package/package.json +89 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Agent Live for DeepSeek Harness
|
|
2
|
+
|
|
3
|
+
Native, session-scoped Agent Live view for DeepSeek Harness `0.1.5-rc.1`.
|
|
4
|
+
|
|
5
|
+
The package registers an `Agent Live` entry in DSH's `conversation.view` slot.
|
|
6
|
+
It observes DSH's public Session, Conversation, model-selection and subagent
|
|
7
|
+
projections, maps them to `OfficeEvent`, and renders the standard Tech Open
|
|
8
|
+
Office inside the View. It does not start an Agent Live HTTP server, SSE
|
|
9
|
+
connection, subprocess, or controller.
|
|
10
|
+
|
|
11
|
+
DSH remains responsible for prompts, stop, model selection and approvals. The
|
|
12
|
+
View observes the current Session only. Unmounting the View destroys its
|
|
13
|
+
sandboxed render document, animation loop and in-memory event journal.
|
|
14
|
+
|
|
15
|
+
## Development
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install
|
|
19
|
+
npm run check
|
|
20
|
+
dsh plugin --profile web add ./plugins/agent-live/dsh
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
The published package contains DSH's required lazy-CJS `lib/client.js` bundle.
|
package/cordis.patch.yml
ADDED