@koda-sl/baker-cli 0.141.0-dev.253d2418a → 0.141.0-dev.5c3f9a4ae
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/cli.js +11 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3013,7 +3013,7 @@ var createCommand = defineCommand3({
|
|
|
3013
3013
|
const hints = [];
|
|
3014
3014
|
if (looksScheduled(name, args.description ?? "")) {
|
|
3015
3015
|
hints.push(
|
|
3016
|
-
'This reads as recurring/scheduled work. If it should run on a cadence or a future date, create a Scheduled Action instead \u2014 baker scheduled-actions create --cron "0 9 * * MON" (or --run-at). Do NOT capture "set up a scheduled action" as a Work Action.'
|
|
3016
|
+
'This reads as recurring/scheduled work. If it should run on a cadence or a future date, create a Scheduled Action instead \u2014 baker scheduled-actions create --cron "0 9 * * MON" (or --run-at; guide: __tooling__/docs/tools/baker/scheduled-actions.md). Do NOT capture "set up a scheduled action" as a Work Action.'
|
|
3017
3017
|
);
|
|
3018
3018
|
}
|
|
3019
3019
|
hints.push(`Link dependencies: baker actions link --blocker <id> --blocked ${tempId}`);
|
|
@@ -26074,10 +26074,19 @@ A tool the user names that is NOT listed here is simply not connected yet.`
|
|
|
26074
26074
|
if (data.managedDisabled) {
|
|
26075
26075
|
hints.push("Managed integrations are disabled for this company \u2014 only custom MCP servers load.");
|
|
26076
26076
|
}
|
|
26077
|
+
if ([...data.managed, ...data.custom].some((e) => e.scope === "user" || e.scope === "user_org")) {
|
|
26078
|
+
hints.push(
|
|
26079
|
+
"user/user_org entries are personal: they belong to the current message sender and load only in their turns \u2014 other users in this chat won't have them."
|
|
26080
|
+
);
|
|
26081
|
+
}
|
|
26077
26082
|
hints.push(
|
|
26078
26083
|
"Not listed = not connected. Managed app (Slack, HubSpot, Attio, \u2026) \u2192 the user connects it in the dashboard: Brain \u2192 Integrations \u2192 Tools. Custom HTTPS MCP endpoint \u2192 `baker mcp add`."
|
|
26079
26084
|
);
|
|
26080
|
-
writeJson({
|
|
26085
|
+
writeJson({
|
|
26086
|
+
ok: true,
|
|
26087
|
+
data: { ...data.managedDisabled ? { managedDisabled: true } : {}, managed, custom },
|
|
26088
|
+
hints
|
|
26089
|
+
});
|
|
26081
26090
|
} catch (err) {
|
|
26082
26091
|
fail4(err);
|
|
26083
26092
|
}
|