tovuk 0.1.73 → 0.1.75
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 +16 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ npm install -g tovuk
|
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
```sh
|
|
10
|
-
tovuk
|
|
10
|
+
tovuk new hello-service --template worker-static-rust-tanstack
|
|
11
11
|
cd hello-service/web && bun install && cd ..
|
|
12
12
|
tovuk check --json
|
|
13
13
|
tovuk deploy --dry-run --json
|
|
@@ -27,13 +27,13 @@ TypeScript checks, native linting such as `oxlint`, `biome check`, or
|
|
|
27
27
|
`deno lint`, and Fallow dead-code, semantic duplicate-code, and health gates.
|
|
28
28
|
|
|
29
29
|
From a worker-static repo root, the same deploy command reads one root
|
|
30
|
-
`tovuk.toml`, builds the worker and frontend
|
|
31
|
-
with `/api/*` routed to the Rust worker.
|
|
30
|
+
`tovuk.toml`, reads explicit `[capabilities]`, builds the worker and frontend
|
|
31
|
+
roots, and returns one service URL with `/api/*` routed to the Rust worker.
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
Check before deploying:
|
|
34
34
|
|
|
35
35
|
```sh
|
|
36
|
-
tovuk
|
|
36
|
+
tovuk check
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
Agent repair loop:
|
|
@@ -51,11 +51,11 @@ fix the first actionable log error, rerun check, then redeploy.
|
|
|
51
51
|
Agents can create service SQLite databases, KV namespaces, queues, cron triggers,
|
|
52
52
|
State namespaces, service bindings, and usage caps through the CLI.
|
|
53
53
|
|
|
54
|
-
Agents can also inspect
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
54
|
+
Agents can also inspect pricing, usage, services, service summaries, deploys,
|
|
55
|
+
builds, service/deploy/build logs, env metadata, custom domains, domain
|
|
56
|
+
verification, service storage files and media, billing checkout links, billing
|
|
57
|
+
portal links, service deletion, and support ticket create/list/resolve actions
|
|
58
|
+
through the same CLI.
|
|
59
59
|
|
|
60
60
|
Before high-throughput work, read pricing and set hard caps:
|
|
61
61
|
|
|
@@ -63,15 +63,18 @@ Before high-throughput work, read pricing and set hard caps:
|
|
|
63
63
|
tovuk pricing --json
|
|
64
64
|
tovuk usage --json
|
|
65
65
|
tovuk deploy --dry-run --json
|
|
66
|
-
tovuk
|
|
66
|
+
tovuk service resources service_1 --json
|
|
67
|
+
tovuk service builds service_1 --json
|
|
68
|
+
tovuk limits set worker_requests --period month --value 10000000 --json
|
|
67
69
|
```
|
|
68
70
|
|
|
69
71
|
The pricing response includes plan pricing and product meter metadata, so agents
|
|
70
72
|
can choose the correct product and cap the right meters in one flow.
|
|
71
73
|
The usage response includes `billingEstimate.lineItems` for current-month cost
|
|
72
74
|
estimates.
|
|
73
|
-
The deploy dry-run response combines `tovuk.toml`,
|
|
74
|
-
|
|
75
|
+
The deploy dry-run response combines `tovuk.toml`, explicit enabled and disabled
|
|
76
|
+
capabilities, quality checks, capability meters, account limits, and
|
|
77
|
+
`billingEstimate` before deploy, without creating a build.
|
|
75
78
|
|
|
76
79
|
Manage service files and media without dashboard access:
|
|
77
80
|
|