@jango-blockchained/hoox-cli 0.9.4 → 0.9.5
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 +29 -30
- package/dist/index.js +1585 -1563
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -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
|
|
106
|
-
| `hoox
|
|
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
|
|