tovuk 0.1.73 → 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 +11 -9
  2. 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 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
13
  tovuk deploy --dry-run --json
@@ -30,10 +30,10 @@ 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:
@@ -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 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
 
@@ -63,7 +63,9 @@ 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 limit set worker_requests --period month --value 10000000 --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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tovuk",
3
- "version": "0.1.73",
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": {