tovuk 0.1.71 → 0.1.73
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 +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,8 +9,8 @@ npm install -g tovuk
|
|
|
9
9
|
```sh
|
|
10
10
|
tovuk init hello-service --template worker-static-rust-tanstack
|
|
11
11
|
cd hello-service/web && bun install && cd ..
|
|
12
|
-
tovuk
|
|
13
|
-
tovuk
|
|
12
|
+
tovuk check --json
|
|
13
|
+
tovuk deploy --dry-run --json
|
|
14
14
|
tovuk deploy --wait --json
|
|
15
15
|
```
|
|
16
16
|
|
|
@@ -39,14 +39,14 @@ tovuk preview
|
|
|
39
39
|
Agent repair loop:
|
|
40
40
|
|
|
41
41
|
```sh
|
|
42
|
-
tovuk
|
|
43
|
-
tovuk
|
|
42
|
+
tovuk check --json
|
|
43
|
+
tovuk deploy --dry-run --json
|
|
44
44
|
tovuk deploy --wait --json
|
|
45
45
|
tovuk logs --build job_1 --json
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
Fix the first failed `agent_instruction`. If a build fails, inspect build logs,
|
|
49
|
-
fix the first actionable log error, rerun
|
|
49
|
+
fix the first actionable log error, rerun check, then redeploy.
|
|
50
50
|
|
|
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.
|
|
@@ -62,7 +62,7 @@ Before high-throughput work, read pricing and set hard caps:
|
|
|
62
62
|
```sh
|
|
63
63
|
tovuk pricing --json
|
|
64
64
|
tovuk usage --json
|
|
65
|
-
tovuk
|
|
65
|
+
tovuk deploy --dry-run --json
|
|
66
66
|
tovuk limit set worker_requests --period month --value 10000000 --json
|
|
67
67
|
```
|
|
68
68
|
|
|
@@ -70,7 +70,7 @@ The pricing response includes plan pricing and product meter metadata, so agents
|
|
|
70
70
|
can choose the correct product and cap the right meters in one flow.
|
|
71
71
|
The usage response includes `billingEstimate.lineItems` for current-month cost
|
|
72
72
|
estimates.
|
|
73
|
-
The
|
|
73
|
+
The deploy dry-run response combines `tovuk.toml`, quality checks, capability meters,
|
|
74
74
|
account limits, and `billingEstimate` before deploy, without creating a build.
|
|
75
75
|
|
|
76
76
|
Manage service files and media without dashboard access:
|
|
@@ -104,7 +104,7 @@ tovuk billing checkout --json
|
|
|
104
104
|
When Tovuk support is needed, include enough evidence for a support agent:
|
|
105
105
|
|
|
106
106
|
```sh
|
|
107
|
-
tovuk support create "Deploy failed" "Agent retried deploy after
|
|
107
|
+
tovuk support create "Deploy failed" "Agent retried deploy after check." --service service_1 --build job_1 --deploy deploy_1 --failing-command "tovuk deploy --wait --json" --first-log-line "cargo check failed in src/main.rs" --json
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
When the issue is fixed, resolve the ticket:
|