@tencent-ai/agent-sdk 0.3.206 → 0.3.210

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 (38) hide show
  1. package/cli/CHANGELOG.md +61 -0
  2. package/cli/builtin/workflows/deep-research.workflow.js +77 -20
  3. package/cli/dist/codebuddy-headless.js +294 -246
  4. package/cli/dist/web-ui/assets/index-CH6e4vvI.css +32 -0
  5. package/cli/dist/web-ui/assets/index-GcU4pZms.js +1102 -0
  6. package/cli/dist/web-ui/index.html +2 -2
  7. package/cli/dist/web-ui/sw.js +1 -1
  8. package/cli/package.json +4 -4
  9. package/cli/product.cloudhosted.json +2 -2
  10. package/cli/product.internal.json +2 -2
  11. package/cli/product.ioa.json +2 -2
  12. package/cli/product.json +3 -3
  13. package/cli/product.selfhosted.json +2 -2
  14. package/cli/vendor/native-builds.json +18 -0
  15. package/cli/vendor/shim/broker-ipc-client.cjs +158 -0
  16. package/cli/vendor/shim/brokered-bin/codebuddy-toybox-dispatch +381 -0
  17. package/cli/vendor/shim/brokered-sandbox-bash-env.sh +10 -0
  18. package/cli/vendor/shim/genie-safe-delete.cjs +4 -781
  19. package/cli/vendor/shim/native/binding.gyp +13 -0
  20. package/cli/vendor/shim/native/brokered_sandbox_native.c +293 -0
  21. package/cli/vendor/shim/native/darwin-arm64/brokered-sandbox-native.node +0 -0
  22. package/cli/vendor/shim/native/darwin-x64/brokered-sandbox-native.node +0 -0
  23. package/cli/vendor/shim/node-brokered-fs-shim.cjs +932 -0
  24. package/cli/vendor/shim/node-language-shim.cjs +35 -0
  25. package/cli/vendor/shim/node-safe-delete-shim.cjs +810 -0
  26. package/cli/vendor/shim/safe-bin/safe-delete-bash-env.sh +1 -1
  27. package/cli/vendor/shim/safe-bin/safe-delete-common.sh +95 -34
  28. package/cli/vendor/shim/safe-delete-broker-delete.cjs +166 -0
  29. package/cli/vendor/shim/shell-runtime-bash-env.sh +8 -0
  30. package/cli/vendor/shim/sitecustomize.py +551 -22
  31. package/cli/vendor/toybox-macos/LICENSE +12 -0
  32. package/cli/vendor/toybox-macos/toybox +0 -0
  33. package/cli/vendor/toybox-macos/toybox.sb +19 -0
  34. package/cli/vendor/zsh-macos/LICENSE +37 -0
  35. package/cli/vendor/zsh-macos/bin/zsh +0 -0
  36. package/package.json +1 -1
  37. package/cli/dist/web-ui/assets/index-BZjhFKbY.js +0 -1051
  38. package/cli/dist/web-ui/assets/index-C5EhSt3C.css +0 -32
@@ -0,0 +1,19 @@
1
+ ;; WorkBuddy brokered shell sandbox profile for bundled macOS toybox/zsh.
2
+ (version 1)
3
+ (deny default)
4
+
5
+ (allow process*)
6
+ (allow signal)
7
+ (allow sysctl-read)
8
+ (allow mach-lookup)
9
+ (allow iokit-open)
10
+
11
+ ;; Broker IPC and runtime loading.
12
+ (allow ipc-posix-shm)
13
+ (allow network-outbound (local unix))
14
+ (allow system-socket)
15
+ (allow file-read* (subpath "/"))
16
+ (allow file-write* (subpath "/dev") (subpath "/private/var/folders"))
17
+
18
+ (allow file-read* (extension "com.workbuddy.sandbox.read"))
19
+ (allow file-read* file-write* (extension "com.workbuddy.sandbox.read-write"))
@@ -0,0 +1,37 @@
1
+ Unless otherwise noted in the header of specific files, files in this
2
+ distribution have the licence shown below.
3
+
4
+ However, note that certain shell functions are licensed under versions
5
+ of the GNU General Public Licence. Anyone distributing the shell as a
6
+ binary including those files needs to take account of this. Search
7
+ shell functions for "Copyright" for specific copyright information.
8
+ None of the core functions are affected by this, so those files may
9
+ simply be omitted.
10
+
11
+ --
12
+
13
+ The Z Shell is copyright (c) 1992-2017 Paul Falstad, Richard Coleman,
14
+ Zoltán Hidvégi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and
15
+ others. All rights reserved. Individual authors, whether or not
16
+ specifically named, retain copyright in all changes; in what follows, they
17
+ are referred to as `the Zsh Development Group'. This is for convenience
18
+ only and this body has no legal status. The Z shell is distributed under
19
+ the following licence; any provisions made in individual files take
20
+ precedence.
21
+
22
+ Permission is hereby granted, without written agreement and without
23
+ licence or royalty fees, to use, copy, modify, and distribute this
24
+ software and to distribute modified versions of this software for any
25
+ purpose, provided that the above copyright notice and the following
26
+ two paragraphs appear in all copies of this software.
27
+
28
+ In no event shall the Zsh Development Group be liable to any party for
29
+ direct, indirect, special, incidental, or consequential damages arising out
30
+ of the use of this software and its documentation, even if the Zsh
31
+ Development Group have been advised of the possibility of such damage.
32
+
33
+ The Zsh Development Group specifically disclaim any warranties, including,
34
+ but not limited to, the implied warranties of merchantability and fitness
35
+ for a particular purpose. The software provided hereunder is on an "as is"
36
+ basis, and the Zsh Development Group have no obligation to provide
37
+ maintenance, support, updates, enhancements, or modifications.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tencent-ai/agent-sdk",
3
- "version": "0.3.206",
3
+ "version": "0.3.210",
4
4
  "description": "CodeBuddy Code SDK for JavaScript/TypeScript",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",