tovuk 0.1.68 → 0.1.70
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 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,13 +43,13 @@ 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,
|
|
50
50
|
env metadata, custom domains, domain verification, service storage files and media,
|
|
51
|
-
pricing, billing checkout links, billing portal links,
|
|
52
|
-
list, and resolve actions through the same CLI.
|
|
51
|
+
pricing, billing checkout links, billing portal links, service deletion, and
|
|
52
|
+
support ticket create, list, and resolve actions through the same CLI.
|
|
53
53
|
|
|
54
54
|
Before high-throughput work, read pricing and set hard caps:
|
|
55
55
|
|
|
@@ -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
|
|
@@ -73,6 +76,8 @@ npx tovuk kv bulk delete --service service_1 CACHE feature:search old:key --json
|
|
|
73
76
|
npx tovuk queue send --service service_1 jobs '{"task":"sync"}' --json
|
|
74
77
|
npx tovuk queue send-batch --service service_1 jobs '[{"body":{"task":"sync"}},{"body":{"task":"index"}}]' --json
|
|
75
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
|
|
76
81
|
```
|
|
77
82
|
|
|
78
83
|
When a free-tier limit blocks work, run:
|