@keystrokehq/cli 0.1.171 → 0.1.172

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/README.md CHANGED
@@ -216,10 +216,13 @@ Upload local working-tree changes to the shared draft (`ks/draft`), fetch the pi
216
216
  ```bash
217
217
  keystroke deploy
218
218
  keystroke deploy --accept-impact --filter workflows/ping --filter agents/world
219
+ keystroke deploy --build-from-workspace
219
220
  ```
220
221
 
221
222
  `--filter` accepts workflow/agent resource keys (`workflows/…`, `agents/…`). Deploy analyzes shared dependency impact locally. In non-TTY environments, pass `--accept-impact` when filtered expansion requires confirmation — otherwise deploy prints the impact and fails fast without hanging.
222
223
 
224
+ For a Keystroke project nested in a package-manager monorepo, `--build-from-workspace` permits `workspace:`, `link:`, and local `file:` dependencies by building against the current checkout and its installed dependencies. It is full-deploy only and intentionally non-reproducible from Keystroke's managed source because local package sources are not uploaded. Prefer published package versions when possible.
225
+
223
226
  ### `pull`
224
227
 
225
228
  Fetches the shared unpublished draft tip (`ks/draft`) with a short-lived read-only remote and merges it into the local checkout (preserving local edits). Managed draft state lives in `.keystroke/git` (work tree = project root) so your own `.git` / GitHub `origin` are never modified. Git-less directories are bootstrapped into that sidecar. Requires `keystroke auth login` and a linked project (or `--project <slug>`).