tovuk 0.1.67 → 0.1.69
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 +11 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ Fix the first failed `agent_instruction`. If a build fails, inspect build logs,
|
|
|
43
43
|
fix the first actionable log error, rerun doctor, then redeploy.
|
|
44
44
|
|
|
45
45
|
Agents can create service SQLite databases, KV namespaces, queues, cron triggers,
|
|
46
|
-
|
|
46
|
+
State namespaces, service bindings, and usage caps through the CLI.
|
|
47
47
|
|
|
48
48
|
Agents can also inspect API capabilities, account identity, usage, account
|
|
49
49
|
activity, services, complete service overviews, deploys, builds, service/deploy/build logs,
|
|
@@ -58,6 +58,9 @@ npx tovuk pricing --json
|
|
|
58
58
|
npx tovuk limit set worker_requests --period month --value 10000000 --json
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
The pricing response includes plan pricing and product meter metadata, so agents
|
|
62
|
+
can choose the correct product and cap the right meters in one flow.
|
|
63
|
+
|
|
61
64
|
Manage service files and media without dashboard access:
|
|
62
65
|
|
|
63
66
|
```sh
|
|
@@ -67,7 +70,14 @@ npx tovuk storage download --service service_1 uploads/logo.png ./logo.png --jso
|
|
|
67
70
|
npx tovuk storage delete --service service_1 uploads/logo.png --json
|
|
68
71
|
npx tovuk kv put --service service_1 CACHE user:1 '{"name":"Ada"}' --json
|
|
69
72
|
npx tovuk kv get --service service_1 CACHE user:1 --json
|
|
73
|
+
npx tovuk kv bulk put --service service_1 CACHE '[{"key":"feature:search","value":"enabled"}]' --json
|
|
74
|
+
npx tovuk kv bulk get --service service_1 CACHE feature:search user:1 --json
|
|
75
|
+
npx tovuk kv bulk delete --service service_1 CACHE feature:search old:key --json
|
|
70
76
|
npx tovuk queue send --service service_1 jobs '{"task":"sync"}' --json
|
|
77
|
+
npx tovuk queue send-batch --service service_1 jobs '[{"body":{"task":"sync"}},{"body":{"task":"index"}}]' --json
|
|
78
|
+
npx tovuk queue metrics --service service_1 jobs --json
|
|
79
|
+
npx tovuk state put --service service_1 Room room-1 counter 1 --json
|
|
80
|
+
npx tovuk state get --service service_1 Room room-1 counter --json
|
|
71
81
|
```
|
|
72
82
|
|
|
73
83
|
When a free-tier limit blocks work, run:
|