@rudderhq/cli 0.3.6-canary.10 → 0.3.6-canary.12

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 CHANGED
@@ -985,6 +985,7 @@ var init_chat = __esm({
985
985
  name: z4.string().trim().min(1).max(80).optional(),
986
986
  icon: z4.string().trim().min(1).max(24).optional().nullable(),
987
987
  collapsed: z4.boolean().optional(),
988
+ pinned: z4.boolean().optional(),
988
989
  sortOrder: z4.number().int().min(0).optional()
989
990
  });
990
991
  reorderMessengerCustomGroupsSchema = z4.object({
@@ -7302,7 +7303,7 @@ var RUDDER_AGENT_OPERATING_CONTRACT = [
7302
7303
  "- `library:projects/<project-key>/...` is the Rudder product locator for those files, not the Markdown link syntax and not a reason to route ordinary local edits through the CLI.",
7303
7304
  '- When you create or update a durable Library file, always include a user-visible Markdown link to that file in your final chat reply or issue comment. Use `rudder library file ref "$RUDDER_PROJECT_LIBRARY_PATH/<relative-file>" --json` and paste the returned `markdownLink`; do not pass the absolute `$RUDDER_PROJECT_LIBRARY_ROOT/...` path to `ref`, and do not hand-write `library-entry://...` or `library-file://...` links.',
7304
7305
  '- If `$RUDDER_PROJECT_LIBRARY_ROOT` is unset or inaccessible, use `rudder library file get/put "$RUDDER_PROJECT_LIBRARY_PATH/<relative-file>"` as the remote or restricted runtime fallback.',
7305
- "- Use `/tmp` only for transient scratch files and temporary verification files; do not put durable work product there.",
7306
+ "- Use `$RUDDER_RUNTIME_TMPDIR` for transient scratch files and temporary verification files when it is set; otherwise use `/tmp`. Do not put durable work product there.",
7306
7307
  "- 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.",
7307
7308
  "",
7308
7309
  "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.",