@keystrokehq/cli 0.1.76 → 0.1.77

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.
@@ -103,7 +103,7 @@ Read `src/` first — existing agents, workflows, actions, and triggers are your
103
103
  To discover apps/integrations and their actions, query the live catalog with the CLI via `exec_command` (the docs integration index is unreliable):
104
104
 
105
105
  ```bash
106
- keystroke apps search <query> # find an app and its slug in the full catalog — start here
106
+ keystroke apps search "{query}" # find an app and its slug in the full catalog — start here
107
107
  keystroke apps list # apps registered/connectable in your org
108
108
  keystroke apps actions list <app> --search <q> # actions an app exposes
109
109
  keystroke apps actions get <app> <tool> # schema + how to run/import one action
@@ -249,7 +249,7 @@ Think about testing as you build. Local tests don't link cloud credentials or th
249
249
 
250
250
  ```bash
251
251
  keystroke apps list # all registered apps
252
- keystroke apps search <query> # find an app + slug in the full catalog
252
+ keystroke apps search "{query}" # find an app + slug in the full catalog
253
253
  keystroke apps actions list <app> --search <q> # actions an app exposes
254
254
  keystroke apps actions get <app> <tool> # schema + how to run/import one action
255
255
  keystroke apps execute <app> <tool> --input '{...}' # run a connected catalog action (no server)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/cli",
3
- "version": "0.1.76",
3
+ "version": "0.1.77",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/keystrokehq/keystroke.git",
@@ -43,8 +43,8 @@
43
43
  "tsx": "^4.22.3",
44
44
  "@keystrokehq/oxlint-config": "0.0.4",
45
45
  "@keystrokehq/tsconfig": "0.0.3",
46
- "@keystrokehq/tsdown-config": "0.0.5",
47
- "@keystrokehq/vitest-config": "0.0.7"
46
+ "@keystrokehq/vitest-config": "0.0.7",
47
+ "@keystrokehq/tsdown-config": "0.0.5"
48
48
  },
49
49
  "scripts": {
50
50
  "build": "tsdown && node scripts/copy-templates.mjs && node scripts/copy-skills-bundle.mjs && node scripts/copy-configs.mjs",