switchroom 0.14.5 → 0.14.7
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/dist/agent-scheduler/index.js +95 -81
- package/dist/auth-broker/index.js +95 -81
- package/dist/cli/drive-write-pretool.mjs +10 -10
- package/dist/cli/notion-write-pretool.mjs +97 -83
- package/dist/cli/skill-validate-pretool.mjs +72 -72
- package/dist/cli/switchroom.js +373 -359
- package/dist/host-control/main.js +163 -149
- package/dist/vault/approvals/kernel-server.js +97 -83
- package/dist/vault/broker/server.js +98 -84
- package/examples/switchroom.yaml +1 -1
- package/package.json +1 -1
- package/skills/switchroom-status/SKILL.md +1 -1
- package/telegram-plugin/dist/bridge/bridge.js +112 -112
- package/telegram-plugin/dist/gateway/gateway.js +219 -193
- package/telegram-plugin/dist/server.js +160 -160
package/examples/switchroom.yaml
CHANGED
|
@@ -248,7 +248,7 @@ agents:
|
|
|
248
248
|
# topic_emoji: "💻"
|
|
249
249
|
# bot_token: "vault:telegram-dev-bot-token" # its own bot
|
|
250
250
|
# extends: coder # inherits from inline profile above
|
|
251
|
-
# model: claude-opus-4-
|
|
251
|
+
# model: claude-opus-4-8 # override defaults.model for this agent
|
|
252
252
|
# memory:
|
|
253
253
|
# collection: coding
|
|
254
254
|
# cli_args: ["--effort", "high"] # escape hatch: extra exec claude flags
|
package/package.json
CHANGED