@jango-blockchained/hoox-cli 0.9.4 → 0.10.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.
Files changed (3) hide show
  1. package/README.md +30 -31
  2. package/dist/index.js +7038 -5774
  3. package/package.json +5 -2
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  > **Runtime requirement:** Bun ≥ 1.2. The bin shebang and bundle target are Bun-only; `npm install -g` will install the package but the CLI will not run under Node.js.
8
8
 
9
- **v0.9.3** — 28 top-level command groups, 800+ unit tests. Modern-minimal visual refresh, completion footer, did-you-mean suggestions, custom help, hop-level `perf fastpath` observability. **v0.9.0** had a banner version-lookup bug in global installs fixed in 0.9.1.
9
+ **v0.10.0** — operator security plane: fail-closed `tui --remote`, transport profile (Bearer + Access), `doctor --security`, `tunnel check`, management `/v1/*` contract. **v0.9.x** shipped hop-level `perf fastpath` observability and reliability fixes.
10
10
 
11
11
  ## Features
12
12
 
@@ -75,36 +75,35 @@ hoox perf fastpath run --n 50
75
75
 
76
76
  ## Available Commands
77
77
 
78
- | Command | Description |
79
- | ----------------- | ----------------------------------------------------------------------------- |
80
- | `hoox onboard` | **Recommended entry point.** One-shot full bootstrap (init + setup) |
81
- | `hoox init` | Interactive setup wizard (writes `wrangler.jsonc`, collects secrets) |
82
- | `hoox setup` | Auto-bootstrap infrastructure (auth, keys, D1, secrets, dashboard) |
83
- | `hoox clone` | Clone worker repositories as git submodules |
84
- | `hoox dev` | Start local development environment for all workers |
85
- | `hoox deploy` | Deploy workers, dashboard, telegram webhook, and KV config |
86
- | `hoox infra` | Manage infrastructure (D1, KV, R2, Queues, Vectorize, Analytics) |
87
- | `hoox config` | Manage `wrangler.jsonc` configuration |
88
- | `hoox secrets` | Manage Cloudflare Worker secrets |
89
- | `hoox keys` | Manage internal auth keys |
90
- | `hoox check` | Validate setup, prerequisites, and worker health |
91
- | `hoox db` | Manage D1 databases (apply, migrate, query, export, reset) |
92
- | `hoox monitor` | Monitor trades, logs, kill switch, queue, backup |
93
- | `hoox workers` | Per-worker operations (list, dev, logs) |
94
- | `hoox repair` | Diagnose and repair the system (check, rebuild, per-component) |
95
- | `hoox schema` | Manage D1 schema and migrations |
96
- | `hoox update` | Self-update the CLI and check wrangler versions |
97
- | `hoox logs` | Stream and filter Cloudflare Worker logs |
98
- | `hoox test` | Run tests and CI pipeline |
99
- | `hoox waf` | Manage Cloudflare WAF rules and policies |
100
- | `hoox dashboard` | Dashboard operations (`dev`, `deploy`) |
101
- | `hoox tui` | Launch the OpenTUI terminal dashboard |
102
- | `hoox agent` | AI agent operations (health probe) |
103
- | `hoox trace` | Query Cloudflare Workers Observability (events, metrics, traces) |
104
- | `hoox perf` | Performance measurement tools (`fastpath` probe-based latency) |
105
- | `hoox pine` | Pine Script tooling (download data, backtest, export chart data, bundle libs) |
106
- | `hoox disclaimer` | Display legal disclaimer |
107
- | `hoox completion` | Generate shell completion script (bash, zsh, fish) |
78
+ | Command | Description |
79
+ | ----------------- | -------------------------------------------------------------------- |
80
+ | `hoox onboard` | **Recommended entry point.** One-shot full bootstrap (init + setup) |
81
+ | `hoox init` | Interactive setup wizard (writes `wrangler.jsonc`, collects secrets) |
82
+ | `hoox setup` | Auto-bootstrap infrastructure (auth, keys, D1, secrets, dashboard) |
83
+ | `hoox clone` | Clone worker repositories as git submodules |
84
+ | `hoox dev` | Start local development environment for all workers |
85
+ | `hoox deploy` | Deploy workers, dashboard, telegram webhook, and KV config |
86
+ | `hoox infra` | Manage infrastructure (D1, KV, R2, Queues, Vectorize, Analytics) |
87
+ | `hoox config` | Manage `wrangler.jsonc` configuration |
88
+ | `hoox secrets` | Manage Cloudflare Worker secrets |
89
+ | `hoox keys` | Manage internal auth keys |
90
+ | `hoox check` | Validate setup, prerequisites, and worker health |
91
+ | `hoox db` | Manage D1 databases (apply, migrate, query, export, reset) |
92
+ | `hoox monitor` | Monitor trades, logs, kill switch, queue, backup |
93
+ | `hoox workers` | Per-worker operations (list, dev, logs) |
94
+ | `hoox repair` | Diagnose and repair the system (check, rebuild, per-component) |
95
+ | `hoox schema` | Manage D1 schema and migrations |
96
+ | `hoox update` | Self-update the CLI and check wrangler versions |
97
+ | `hoox logs` | Stream and filter Cloudflare Worker logs |
98
+ | `hoox test` | Run tests and CI pipeline |
99
+ | `hoox waf` | Manage Cloudflare WAF rules and policies |
100
+ | `hoox dashboard` | Dashboard operations (`dev`, `deploy`) |
101
+ | `hoox tui` | Launch the OpenTUI terminal dashboard |
102
+ | `hoox agent` | AI agent operations (health probe) |
103
+ | `hoox trace` | Query Cloudflare Workers Observability (events, metrics, traces) |
104
+ | `hoox perf` | Performance measurement tools (`fastpath` probe-based latency) |
105
+ | `hoox disclaimer` | Display legal disclaimer |
106
+ | `hoox completion` | Generate shell completion script (bash, zsh, fish) |
108
107
 
109
108
  ### Global Options
110
109