@deepseek-ai/dsh-experimental-agent-team 0.1.5-alpha.2

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.
Files changed (43) hide show
  1. package/LICENSE +21 -0
  2. package/README.i18n.yaml +6 -0
  3. package/README.md +220 -0
  4. package/README.zh.md +220 -0
  5. package/lib/index.js +1894 -0
  6. package/lib/invariant.js +361 -0
  7. package/lib/typert.host.d.ts +3 -0
  8. package/lib/typert.host.js +867 -0
  9. package/lib/typert.remote-client.d.ts +32 -0
  10. package/lib/typert.remote-client.js +210 -0
  11. package/lib/types/activity.d.ts +23 -0
  12. package/lib/types/activity.js +85 -0
  13. package/lib/types/client.d.ts +3 -0
  14. package/lib/types/client.js +3 -0
  15. package/lib/types/error.d.ts +13 -0
  16. package/lib/types/error.js +23 -0
  17. package/lib/types/index.d.ts +137 -0
  18. package/lib/types/index.js +313 -0
  19. package/lib/types/invariant.d.ts +9 -0
  20. package/lib/types/invariant.js +26 -0
  21. package/lib/types/journal.d.ts +39 -0
  22. package/lib/types/journal.js +63 -0
  23. package/lib/types/lifecycle.d.ts +33 -0
  24. package/lib/types/lifecycle.js +85 -0
  25. package/lib/types/mailbox.d.ts +78 -0
  26. package/lib/types/mailbox.js +292 -0
  27. package/lib/types/persisted.d.ts +20 -0
  28. package/lib/types/persisted.js +20 -0
  29. package/lib/types/projection.d.ts +48 -0
  30. package/lib/types/projection.js +260 -0
  31. package/lib/types/roster.d.ts +113 -0
  32. package/lib/types/roster.js +446 -0
  33. package/lib/types/session-message.d.ts +11 -0
  34. package/lib/types/session-message.js +23 -0
  35. package/lib/types/task-board.d.ts +62 -0
  36. package/lib/types/task-board.js +275 -0
  37. package/lib/types/task-graph.d.ts +21 -0
  38. package/lib/types/task-graph.js +62 -0
  39. package/lib/types/types.d.ts +206 -0
  40. package/lib/types/types.js +26 -0
  41. package/lib/types/validation.d.ts +16 -0
  42. package/lib/types/validation.js +33 -0
  43. package/package.json +88 -0
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@deepseek-ai/dsh-experimental-agent-team",
3
+ "description": "Implicit-root Agent Teams roster, durable peer mailbox, and shared task DAG",
4
+ "version": "0.1.5-alpha.2",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
11
+ "directory": "packages/experimental/agent-team"
12
+ },
13
+ "type": "module",
14
+ "main": "lib/index.js",
15
+ "types": "lib/types/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./lib/types/index.d.ts",
19
+ "default": "./lib/index.js"
20
+ },
21
+ "./invariant": {
22
+ "types": "./lib/types/invariant.d.ts",
23
+ "default": "./lib/invariant.js"
24
+ },
25
+ "./client": {
26
+ "types": "./lib/types/client.d.ts",
27
+ "default": "./lib/types/client.js"
28
+ },
29
+ "./types": {
30
+ "types": "./lib/types/types.d.ts",
31
+ "default": "./lib/types/types.js"
32
+ },
33
+ "./typert": {
34
+ "types": "./lib/typert.host.d.ts",
35
+ "default": "./lib/typert.host.js"
36
+ },
37
+ "./remote": {
38
+ "types": "./lib/typert.remote-client.d.ts",
39
+ "default": "./lib/typert.remote-client.js"
40
+ },
41
+ "./src/*": "./src/*",
42
+ "./package.json": "./package.json"
43
+ },
44
+ "files": [
45
+ "lib/index.js",
46
+ "lib/invariant.js",
47
+ "lib/types/**/*.js",
48
+ "lib/types/**/*.d.ts",
49
+ "lib/typert.host.js",
50
+ "lib/typert.host.d.ts",
51
+ "lib/typert.remote-client.js",
52
+ "lib/typert.remote-client.d.ts"
53
+ ],
54
+ "license": "MIT",
55
+ "dependencies": {
56
+ "zod": "^4.4.3",
57
+ "@deepseek-ai/schemastery": "^3.18.2",
58
+ "@deepseek-ai/dsh-brand": "^0.1.5-alpha.2"
59
+ },
60
+ "peerDependencies": {
61
+ "@deepseek-ai/cordis": "^4.0.2",
62
+ "@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
63
+ "@deepseek-ai/dsh-session": "^0.1.5-alpha.2",
64
+ "@deepseek-ai/dsh-session-persistence": "^0.1.5-alpha.2",
65
+ "@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
66
+ "@deepseek-ai/dsh-session-projection": "^0.1.5-alpha.2",
67
+ "@deepseek-ai/dsh-subagent": "^0.1.5-alpha.2",
68
+ "@deepseek-ai/dsh-typert-protocol": "^0.1.5-alpha.2",
69
+ "@deepseek-ai/dsh-invariants": "^0.1.5-alpha.2"
70
+ },
71
+ "devDependencies": {
72
+ "@deepseek-ai/cordis": "^4.0.2",
73
+ "@deepseek-ai/dsh-agent": "^0.1.5-alpha.2",
74
+ "@deepseek-ai/dsh-agent-loop": "^0.1.5-alpha.2",
75
+ "@deepseek-ai/dsh-agent-loop-testkit": "^0.1.5-alpha.2",
76
+ "@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
77
+ "@deepseek-ai/dsh-invariants": "^0.1.5-alpha.2",
78
+ "@deepseek-ai/dsh-session": "^0.1.5-alpha.2",
79
+ "@deepseek-ai/dsh-session-persistence": "^0.1.5-alpha.2",
80
+ "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.5-alpha.2",
81
+ "@deepseek-ai/dsh-session-projection": "^0.1.5-alpha.2",
82
+ "@deepseek-ai/dsh-session-query": "^0.1.5-alpha.2",
83
+ "@deepseek-ai/dsh-subagent": "^0.1.5-alpha.2",
84
+ "@deepseek-ai/dsh-subagent-fork-in-process": "^0.1.5-alpha.2",
85
+ "@deepseek-ai/dsh-subagent-spawn-in-process": "^0.1.5-alpha.2",
86
+ "@deepseek-ai/dsh-typert-protocol": "^0.1.5-alpha.2"
87
+ }
88
+ }