You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -158,8 +168,11 @@ See [examples/minimal-agent.ts](./examples/minimal-agent.ts) for a copy-paste st
158
168
159
169
## Talox CLI & Packaging
160
170
161
-
-`npx talox observe` starts the human-visible observe mode with headed browser, overlay, Markdown/HTML reporting, and the `window.__taloxEmit__` bridge so you can annotate interactions while the agent runs.
162
-
-`npx talox init` (aka the `create-talox-app` workflow) scaffolds a clean `talox-app` starter project with `PRESETS.observe`, `ts-node`/`typescript` tooling, Playwright install scripts, and `examples/browser-lab.ts`.
171
+
> **npm package coming soon.** Until then, run the CLI from the repo:
172
+
> `node dist/cli/talox.js observe --help`
173
+
174
+
-`node dist/cli/talox.js observe` starts the human-visible observe mode with headed browser, overlay, Markdown/HTML reporting, and the `window.__taloxEmit__` bridge so you can annotate interactions while the agent runs.
175
+
-`node dist/cli/talox.js init` (aka the `create-talox-app` workflow) scaffolds a clean `talox-app` starter project with `PRESETS.observe`, `ts-node`/`typescript` tooling, Playwright install scripts, and `examples/browser-lab.ts`.
163
176
- Exported presets (`ops`, `qa`, `observe`, `research`, `login-heavy`) live in `src/presets.ts` so you can reuse curated verbosity, headedness, and human-takeover posture with a single spread or merge.
164
177
- The practical tools from `getPracticalTools(talox)` demonstrate background tabs, API response capture, Markdown snapshot export, on-site search, and visible structured content extraction, so your packaged profiles already include actionable browser lab helpers.
165
178
@@ -169,7 +182,7 @@ See [examples/minimal-agent.ts](./examples/minimal-agent.ts) for a copy-paste st
169
182
170
183
- launches `PRESETS.observe` with headed overlay/recording enabled,
171
184
- exercises every practical tool (background tab, API capture, Markdown snapshot, search, structured content), and
172
-
- writes the generated Markdown/JSON report artifacts into `talox-sessions/` (useful as a sanity check after `npm install` + `npx playwright install chromium`).
185
+
- writes the generated Markdown/JSON report artifacts into `talox-sessions/` (useful as a sanity check after `npm install && npm run build` + `npx playwright install chromium`).
173
186
174
187
Run the demo to validate the packaged presets, tools, and reporting output in one headed experiment.
That command opens a headed Chromium session with the overlay + annotation buffer already armed, logs console/network errors, and writes JSON/Markdown reports. Run `talox observe --help` to tune the profile class, browser, verbosity, or report directory without touching code.
0 commit comments