From 26290bf85dfb81058cf2e53dee73182915d3a784 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 15:31:23 +0000 Subject: [PATCH] chore: sync docs + api reference for core@1.32.1 --- public/llms-full.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/llms-full.txt b/public/llms-full.txt index 39a2fc5..b155c01 100644 --- a/public/llms-full.txt +++ b/public/llms-full.txt @@ -4888,10 +4888,15 @@ interface YarnTasksApi `@zuke/cmd` — generic command execution for Zuke builds: the fallback for tools that have no dedicated wrapper package. +Check the package catalogue in `llms.txt` before reaching for it. A tool with +a `@zuke/` wrapper should be driven through that wrapper — running it +here instead gives up typed flags and the wrapper's tool resolution, so the +example below deliberately uses a tool Zuke does not wrap. + ```ts import { CmdTasks } from "jsr:@zuke/cmd"; -await CmdTasks.exec("git", (s) => s.args("rev-parse", "HEAD")); +await CmdTasks.exec("shellcheck", (s) => s.args("--severity", "warning")); ``` @module