@rudderhq/cli 0.7.4 → 0.7.5
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/index.js +3 -4
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2049,10 +2049,8 @@ var init_chat = __esm({
|
|
|
2049
2049
|
createSideChatSchema = z5.object({
|
|
2050
2050
|
sourceMessageId: z5.string().uuid(),
|
|
2051
2051
|
clientMutationId: z5.string().trim().min(1).max(120),
|
|
2052
|
-
preferredAgentId: z5.string().uuid().optional()
|
|
2053
|
-
|
|
2054
|
-
effortOverride: chatEffortOverrideSchema.optional()
|
|
2055
|
-
});
|
|
2052
|
+
preferredAgentId: z5.string().uuid().optional()
|
|
2053
|
+
}).strict();
|
|
2056
2054
|
addChatMessageSchema = z5.object({
|
|
2057
2055
|
body: z5.string().trim().max(2e4).default(""),
|
|
2058
2056
|
inlineAnnotations: chatInlineAnnotationsInputSchema.optional(),
|
|
@@ -15240,6 +15238,7 @@ var RUDDER_AGENT_OPERATING_CONTRACT = [
|
|
|
15240
15238
|
"- Local trusted runtimes may expose the host operator home as `$RUDDER_OPERATOR_HOME`; use it only when a local skill or script intentionally needs operator-owned desktop app or CLI state. Do not replace `$HOME` with it.",
|
|
15241
15239
|
"",
|
|
15242
15240
|
"When you create or copy a skill under `$AGENT_HOME/skills/<slug>/`, check the agent's Skills snapshot before claiming it will load in future runs. If it is installed but not enabled, say exactly that future runs will not load it until enabled, and offer to enable it with `rudder agent skills enable <agent-id> <selection-ref>` when you have permission.",
|
|
15241
|
+
"If there is an AGENTS.md file in the project you're working on, please read it first and follow the project's development guidelines.",
|
|
15243
15242
|
"",
|
|
15244
15243
|
"When you write issue comments or chat replies, match the language of the user's or board's most recent substantive message unless they explicitly ask for a different language.",
|
|
15245
15244
|
"When you mention a web page, issue URL, external dashboard, or other user-openable target in an issue comment or chat reply, write it as a clickable Markdown link with a descriptive label, for example `[NameSilo transfer page](https://www.namesilo.com/account_domain_manage_transfer.php)`. Do not put action URLs in backticks or code blocks unless you are showing literal code or a command.",
|