teamwork-os 2.0.3 → 2.1.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/bin/teamos.js +8 -0
- package/package.json +1 -1
- package/packages/gateway/dist/index.js +362 -158
- package/packages/gateway/package.json +1 -1
package/bin/teamos.js
CHANGED
|
@@ -1164,6 +1164,10 @@ var DEFAULT_SETTINGS = {
|
|
|
1164
1164
|
channels: {
|
|
1165
1165
|
directory: {},
|
|
1166
1166
|
mcp: {}
|
|
1167
|
+
// `mcpDefault` is deliberately ABSENT rather than set to a value. Absent
|
|
1168
|
+
// is the default grant — strict, no servers — so an existing install that
|
|
1169
|
+
// never heard of this key behaves exactly as before. Setting it is the
|
|
1170
|
+
// opt-in that opens every unnamed channel at once.
|
|
1167
1171
|
},
|
|
1168
1172
|
slack: {
|
|
1169
1173
|
enabled: true,
|
|
@@ -1179,6 +1183,10 @@ var DEFAULT_SETTINGS = {
|
|
|
1179
1183
|
historyLimit: 20,
|
|
1180
1184
|
allowUnmappedChannels: false,
|
|
1181
1185
|
dmAllowlist: [],
|
|
1186
|
+
// On by default: the cost of the block is one paragraph on one turn per
|
|
1187
|
+
// channel, and the thing it explains (channels.directory) is the setting
|
|
1188
|
+
// a new channel is most likely to be missing.
|
|
1189
|
+
onboardNewChannels: true,
|
|
1182
1190
|
// The deny universe for claude.ai account connectors — see
|
|
1183
1191
|
// SlackSettings.knownConnectors. Deny mode can only subtract a name it
|
|
1184
1192
|
// knows, so an unlisted connector is inherited by every deny-mode
|
package/package.json
CHANGED