@tianshu-ai/tianshu 0.3.20 → 0.3.21

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 (42) hide show
  1. package/node_modules/@tianshu-ai/plugin-sdk/dist/manifest.d.ts +19 -0
  2. package/node_modules/@tianshu-ai/plugin-sdk/dist/manifest.d.ts.map +1 -1
  3. package/node_modules/@tianshu-ai/plugin-sdk/src/manifest.ts +19 -0
  4. package/package.json +1 -1
  5. package/packages/plugin-sdk/dist/manifest.d.ts +19 -0
  6. package/packages/plugin-sdk/dist/manifest.d.ts.map +1 -1
  7. package/packages/server/builtinConfig/plugins/files/manifest.json +11 -11
  8. package/packages/server/builtinConfig/plugins/microsandbox/manifest.json +8 -8
  9. package/packages/server/builtinConfig/plugins/web-search/manifest.json +1 -1
  10. package/packages/server/builtinConfig/plugins/workboard/manifest.json +13 -13
  11. package/packages/server/dist/chat/flush-tool-delta.d.ts +18 -0
  12. package/packages/server/dist/chat/flush-tool-delta.d.ts.map +1 -0
  13. package/packages/server/dist/chat/flush-tool-delta.js +132 -0
  14. package/packages/server/dist/chat/flush-tool-delta.js.map +1 -0
  15. package/packages/server/dist/chat/handler.d.ts.map +1 -1
  16. package/packages/server/dist/chat/handler.js +12 -0
  17. package/packages/server/dist/chat/handler.js.map +1 -1
  18. package/packages/server/dist/chat/messages.d.ts.map +1 -1
  19. package/packages/server/dist/chat/messages.js +12 -3
  20. package/packages/server/dist/chat/messages.js.map +1 -1
  21. package/packages/server/dist/chat/tool-delta.d.ts +56 -0
  22. package/packages/server/dist/chat/tool-delta.d.ts.map +1 -0
  23. package/packages/server/dist/chat/tool-delta.js +141 -0
  24. package/packages/server/dist/chat/tool-delta.js.map +1 -0
  25. package/packages/server/dist/core/migrations/009-session-app-version.d.ts +4 -0
  26. package/packages/server/dist/core/migrations/009-session-app-version.d.ts.map +1 -0
  27. package/packages/server/dist/core/migrations/009-session-app-version.js +38 -0
  28. package/packages/server/dist/core/migrations/009-session-app-version.js.map +1 -0
  29. package/packages/server/dist/core/migrations/index.d.ts.map +1 -1
  30. package/packages/server/dist/core/migrations/index.js +2 -0
  31. package/packages/server/dist/core/migrations/index.js.map +1 -1
  32. package/packages/server/dist/core/plugins/registry.d.ts +14 -0
  33. package/packages/server/dist/core/plugins/registry.d.ts.map +1 -1
  34. package/packages/server/dist/core/plugins/registry.js +33 -0
  35. package/packages/server/dist/core/plugins/registry.js.map +1 -1
  36. package/packages/web/dist/assets/{index-xU4lYYqY.css → index-Cs0x5xVe.css} +1 -1
  37. package/packages/web/dist/assets/{index-CEIw68Su.js → index-DIiIMU7-.js} +2 -2
  38. package/packages/web/dist/index.html +2 -2
  39. package/plugins/files/manifest.json +11 -11
  40. package/plugins/microsandbox/manifest.json +8 -8
  41. package/plugins/web-search/manifest.json +1 -1
  42. package/plugins/workboard/manifest.json +13 -13
@@ -5,8 +5,8 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>Tianshu — AI agent platform</title>
7
7
  <meta name="description" content="An open AI agent platform with a sidecar browser. Built in public." />
8
- <script type="module" crossorigin src="/assets/index-CEIw68Su.js"></script>
9
- <link rel="stylesheet" crossorigin href="/assets/index-xU4lYYqY.css">
8
+ <script type="module" crossorigin src="/assets/index-DIiIMU7-.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/assets/index-Cs0x5xVe.css">
10
10
  </head>
11
11
  <body class="bg-slate-950 text-slate-100">
12
12
  <div id="root"></div>
@@ -55,17 +55,17 @@
55
55
  { "method": "POST", "path": "/upload", "handler": "upload" }
56
56
  ],
57
57
  "tools": [
58
- { "id": "list_dir", "module": "ListDirTool" },
59
- { "id": "read_file", "module": "ReadFileTool" },
60
- { "id": "write_file", "module": "WriteFileTool" },
61
- { "id": "edit_file", "module": "EditFileTool" },
62
- { "id": "glob", "module": "GlobTool" },
63
- { "id": "tenant_config_list", "module": "TenantConfigListTool" },
64
- { "id": "tenant_config_read", "module": "TenantConfigReadTool" },
65
- { "id": "tenant_config_write", "module": "TenantConfigWriteTool" },
66
- { "id": "tenant_config_edit", "module": "TenantConfigEditTool" },
67
- { "id": "tenant_config_delete", "module": "TenantConfigDeleteTool" },
68
- { "id": "tenant_config_glob", "module": "TenantConfigGlobTool" }
58
+ { "id": "list_dir", "module": "ListDirTool", "since": "0.1.0" },
59
+ { "id": "read_file", "module": "ReadFileTool", "since": "0.1.0" },
60
+ { "id": "write_file", "module": "WriteFileTool", "since": "0.1.0" },
61
+ { "id": "edit_file", "module": "EditFileTool", "since": "0.1.0" },
62
+ { "id": "glob", "module": "GlobTool", "since": "0.1.0" },
63
+ { "id": "tenant_config_list", "module": "TenantConfigListTool", "since": "0.1.0" },
64
+ { "id": "tenant_config_read", "module": "TenantConfigReadTool", "since": "0.1.0" },
65
+ { "id": "tenant_config_write", "module": "TenantConfigWriteTool", "since": "0.1.0" },
66
+ { "id": "tenant_config_edit", "module": "TenantConfigEditTool", "since": "0.1.0" },
67
+ { "id": "tenant_config_delete", "module": "TenantConfigDeleteTool", "since": "0.1.0" },
68
+ { "id": "tenant_config_glob", "module": "TenantConfigGlobTool", "since": "0.1.0" }
69
69
  ],
70
70
  "skills": [
71
71
  { "id": "workspace-layout", "path": "skills/files-workspace-layout.md" }
@@ -45,14 +45,14 @@
45
45
  }
46
46
  ],
47
47
  "tools": [
48
- { "id": "exec", "module": "ExecTool" },
49
- { "id": "reset_sandbox", "module": "ResetSandboxTool" },
50
- { "id": "get_sandbox_status", "module": "GetSandboxStatusTool" },
51
- { "id": "update_sandbox_config", "module": "UpdateSandboxConfigTool" },
52
- { "id": "build_sandbox", "module": "BuildSandboxTool" },
53
- { "id": "list_sandbox_builds", "module": "ListSandboxBuildsTool" },
54
- { "id": "use_sandbox_build", "module": "UseSandboxBuildTool" },
55
- { "id": "browser_health_check", "module": "BrowserHealthCheckTool" }
48
+ { "id": "exec", "module": "ExecTool", "since": "0.1.0" },
49
+ { "id": "reset_sandbox", "module": "ResetSandboxTool", "since": "0.1.0" },
50
+ { "id": "get_sandbox_status", "module": "GetSandboxStatusTool", "since": "0.1.0" },
51
+ { "id": "update_sandbox_config", "module": "UpdateSandboxConfigTool", "since": "0.1.0" },
52
+ { "id": "build_sandbox", "module": "BuildSandboxTool", "since": "0.1.0" },
53
+ { "id": "list_sandbox_builds", "module": "ListSandboxBuildsTool", "since": "0.1.0" },
54
+ { "id": "use_sandbox_build", "module": "UseSandboxBuildTool", "since": "0.1.0" },
55
+ { "id": "browser_health_check", "module": "BrowserHealthCheckTool", "since": "0.1.0" }
56
56
  ],
57
57
  "toolsets": [
58
58
  { "id": "browser", "module": "BrowserToolset", "displayName": "Playwright (Browser)" }
@@ -9,7 +9,7 @@
9
9
  "server": { "entry": "@tianshu-builtin/plugin-web-search/server" },
10
10
  "contributes": {
11
11
  "tools": [
12
- { "id": "web_search", "module": "WebSearchTool" }
12
+ { "id": "web_search", "module": "WebSearchTool", "since": "0.1.0" }
13
13
  ],
14
14
  "skills": [
15
15
  {
@@ -45,19 +45,19 @@
45
45
  }
46
46
  ],
47
47
  "tools": [
48
- { "id": "task_list", "module": "TaskListTool" },
49
- { "id": "task_create", "module": "TaskCreateTool" },
50
- { "id": "task_update", "module": "TaskUpdateTool" },
51
- { "id": "task_move", "module": "TaskMoveTool" },
52
- { "id": "task_delete", "module": "TaskDeleteTool" },
53
- { "id": "task_get_history", "module": "TaskGetHistoryTool" },
54
- { "id": "task_complete", "module": "TaskCompleteTool" },
55
- { "id": "task_continue", "module": "TaskContinueTool" },
56
- { "id": "task_retry_fresh", "module": "TaskRetryFreshTool" },
57
- { "id": "task_extend_timeout", "module": "TaskExtendTimeoutTool" },
58
- { "id": "task_abort", "module": "TaskAbortTool" },
59
- { "id": "model_list", "module": "ModelListTool" },
60
- { "id": "worker_analytics", "module": "WorkerAnalyticsTool" }
48
+ { "id": "task_list", "module": "TaskListTool", "since": "0.1.0" },
49
+ { "id": "task_create", "module": "TaskCreateTool", "since": "0.1.0" },
50
+ { "id": "task_update", "module": "TaskUpdateTool", "since": "0.1.0" },
51
+ { "id": "task_move", "module": "TaskMoveTool", "since": "0.1.0" },
52
+ { "id": "task_delete", "module": "TaskDeleteTool", "since": "0.1.0" },
53
+ { "id": "task_get_history", "module": "TaskGetHistoryTool", "since": "0.1.0" },
54
+ { "id": "task_complete", "module": "TaskCompleteTool", "since": "0.1.0" },
55
+ { "id": "task_continue", "module": "TaskContinueTool", "since": "0.1.0" },
56
+ { "id": "task_retry_fresh", "module": "TaskRetryFreshTool", "since": "0.1.0" },
57
+ { "id": "task_extend_timeout", "module": "TaskExtendTimeoutTool", "since": "0.1.0" },
58
+ { "id": "task_abort", "module": "TaskAbortTool", "since": "0.1.0" },
59
+ { "id": "model_list", "module": "ModelListTool", "since": "0.1.0" },
60
+ { "id": "worker_analytics", "module": "WorkerAnalyticsTool", "since": "0.3.20" }
61
61
  ],
62
62
  "skills": [
63
63
  { "id": "workboard-howto", "path": "skills/workboard-howto.md" },