@keystrokehq/cli 0.1.76 → 0.1.78

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)
@@ -325,11 +325,9 @@ Invoke/inspect commands print JSON to stdout (exit 0 on success, 1 on failure)
325
325
 
326
326
  Docs are the source of truth — this guide only orients you. Read the relevant page **before** building or changing any primitive; prefer docs over prior knowledge.
327
327
 
328
- - **CLI:** `keystroke docs search "<query>"` to find pages; `keystroke docs query "cat /<path>.mdx"` to read. Docs commands need no auth, org, project, or config.
328
+ - **CLI:** `keystroke docs search "<query>"` to find pages; `keystroke docs query "cat /<path>"` to read (no file extension). Docs commands need no auth, org, project, or config.
329
329
  - **Index:** <https://keystroke.ai/docs/llms.txt>
330
- - **Pages:** `https://keystroke.ai/docs/<path>.md` — e.g. `Full detail: /learn/agents/build-agents` → `https://keystroke.ai/docs/learn/agents/build-agents.md`
331
-
332
- Non-`.md` URLs on keystroke.ai/docs are for humans; fetch `.md` only.
330
+ - **HTTP fetch:** `https://keystroke.ai/docs/<path>.md` — e.g. `/learn/agents/build-agents` → `https://keystroke.ai/docs/learn/agents/build-agents.md`. Non-`.md` URLs are for humans; fetch `.md` only.
333
331
 
334
332
  Key pages (every `Full detail:` pointer in this guide is also a docs path; the index has the rest):
335
333
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/cli",
3
- "version": "0.1.76",
3
+ "version": "0.1.78",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/keystrokehq/keystroke.git",
@@ -42,9 +42,9 @@
42
42
  "tsdown": "^0.22.0",
43
43
  "tsx": "^4.22.3",
44
44
  "@keystrokehq/oxlint-config": "0.0.4",
45
- "@keystrokehq/tsconfig": "0.0.3",
46
45
  "@keystrokehq/tsdown-config": "0.0.5",
47
- "@keystrokehq/vitest-config": "0.0.7"
46
+ "@keystrokehq/vitest-config": "0.0.7",
47
+ "@keystrokehq/tsconfig": "0.0.3"
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",