@interactive-inc/claude-funnel 0.30.0 → 0.31.0

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
@@ -213,7 +213,7 @@ fnl gateway listeners live registry (alive / dead)
213
213
  fnl status overall status (channels / profiles / gateway / clients)
214
214
  fnl schema print the JSON Schema for funnel.json (pipe to a file for editor support)
215
215
  fnl update `bun i -g @interactive-inc/claude-funnel`
216
- fnl (no args) launch the OpenTUI dashboard
216
+ fnl (no args) show help
217
217
 
218
218
  fnl --version
219
219
  fnl --help every subcommand has --help; verb-without-arg also returns help
@@ -442,16 +442,6 @@ console.log(await res.text())
442
442
 
443
443
  `cliApp` is the same app pre-wired to `new Funnel()` for callers who just want the default. The middleware sets the chosen Funnel onto `c.var.funnel`; the matching `Env` type is exported for composing custom routes that share the same context variable.
444
444
 
445
- ### Launching the TUI
446
-
447
- `launchTui(funnel)` boots the OpenTUI dashboard against any `Funnel` instance — pass `Funnel.inMemory()` to drive it against a fake state, or your production funnel for a live view.
448
-
449
- ```ts
450
- import { Funnel, launchTui } from "@interactive-inc/claude-funnel"
451
-
452
- await launchTui(new Funnel())
453
- ```
454
-
455
445
  ### Validating connector configs
456
446
 
457
447
  Each connector type publishes its Zod schema, so consumers can parse external configs (JSON files, API payloads, etc.) before handing them to `addConnector`. The discriminated union `connectorConfigSchema` covers the whole set.