core-web.cordis.yml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. # Opt-in two-tool profile over the shipped Web composition. The default native
  2. # model surface is exactly persistent `bash` plus `str_replace_editor`; the
  3. # Web host, browser shell, workspace, persistence, and permission stack remain.
  4. # Disable every model-facing consumer in the base/Web tree. plan-mode owns the
  5. # always-registered exit_plan_mode tool even while the session is not planning.
  6. - id: tool-bash
  7. disabled: true
  8. - id: tool-tasks
  9. disabled: true
  10. - id: tool-fs
  11. disabled: true
  12. - id: tool-fs-search
  13. disabled: true
  14. - id: tool-web
  15. disabled: true
  16. - id: tool-skill
  17. disabled: true
  18. - id: plan-mode
  19. disabled: true
  20. - id: tool-subagent-control
  21. disabled: true
  22. - id: tool-subagent-list-agents
  23. disabled: true
  24. - id: tool-subagent
  25. disabled: true
  26. - id: tool-subagent-fork
  27. disabled: true
  28. - id: tool-workflow
  29. disabled: true
  30. - id: tool-todo
  31. disabled: true
  32. # These consumers are shared defaults on the ordinary shipped surfaces, but
  33. # this opt-in profile keeps exactly its two named tools.
  34. - id: tool-goal
  35. disabled: true
  36. - id: tool-ralph
  37. disabled: true
  38. - id: tool-str-replace-editor
  39. disabled: true
  40. # The matching browser controls must not offer host tools that this profile
  41. # omits. ui-question's host half owns the ask_user_question registration.
  42. - id: ui-plan
  43. disabled: true
  44. - id: ui-question
  45. disabled: true
  46. - insert:
  47. - id: pty
  48. name: '@deepseek-ai/dsh-pty'
  49. # This backend consumes the existing Web sandbox and permission policy.
  50. # It loads only on Linux/macOS; Windows and other platforms fail at boot.
  51. # Its 300s send wait matches the persistent Bash command timeout instead of
  52. # pty-local's 30s default. An open persistent shell fences permission-mode
  53. # changes until it closes.
  54. - id: pty-local
  55. name: '@deepseek-ai/dsh-pty-local'
  56. config:
  57. timeoutMs: 300000
  58. - id: persistent-bash
  59. name: '@deepseek-ai/dsh-tool-bash-persistent'
  60. config:
  61. timeoutMs: 300000
  62. # The editor consumes the Web fs-sandbox provider and therefore retains
  63. # the selected session permission mode.
  64. - id: str-replace-editor
  65. name: '@deepseek-ai/dsh-tool-str-replace-editor'
  66. config:
  67. maxOutputChars: 16000