tovuk 0.1.72 → 0.1.74

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 (2) hide show
  1. package/README.md +15 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,10 +7,10 @@ npm install -g tovuk
7
7
  ```
8
8
 
9
9
  ```sh
10
- tovuk init hello-service --template worker-static-rust-tanstack
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
- tovuk plan --json
13
+ tovuk deploy --dry-run --json
14
14
  tovuk deploy --wait --json
15
15
  ```
16
16
 
@@ -30,17 +30,17 @@ From a worker-static repo root, the same deploy command reads one root
30
30
  `tovuk.toml`, builds the worker and frontend roots, and returns one service URL
31
31
  with `/api/*` routed to the Rust worker.
32
32
 
33
- Preview before deploying:
33
+ Check before deploying:
34
34
 
35
35
  ```sh
36
- tovuk preview
36
+ tovuk check
37
37
  ```
38
38
 
39
39
  Agent repair loop:
40
40
 
41
41
  ```sh
42
42
  tovuk check --json
43
- tovuk plan --json
43
+ tovuk deploy --dry-run --json
44
44
  tovuk deploy --wait --json
45
45
  tovuk logs --build job_1 --json
46
46
  ```
@@ -51,26 +51,28 @@ 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 API capabilities, account identity, usage, account
55
- activity, services, complete service overviews, deploys, builds, service/deploy/build logs,
56
- env metadata, custom domains, domain verification, service storage files and media,
57
- pricing, billing checkout links, billing portal links, service deletion, and
58
- support ticket create, list, and resolve actions through the same CLI.
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
 
62
62
  ```sh
63
63
  tovuk pricing --json
64
64
  tovuk usage --json
65
- tovuk plan --json
66
- tovuk limit set worker_requests --period month --value 10000000 --json
65
+ tovuk deploy --dry-run --json
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 plan response combines `tovuk.toml`, quality checks, capability meters,
75
+ The deploy dry-run response combines `tovuk.toml`, quality checks, capability meters,
74
76
  account limits, and `billingEstimate` before deploy, without creating a build.
75
77
 
76
78
  Manage service files and media without dashboard access:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tovuk",
3
- "version": "0.1.72",
3
+ "version": "0.1.74",
4
4
  "description": "Deploy Rust workers, static frontends, and worker-static services to Tovuk.",
5
5
  "type": "module",
6
6
  "bin": {