tovuk 0.1.68 → 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.
Files changed (2) hide show
  1. package/README.md +6 -1
  2. 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
- Durable Object namespaces, service bindings, and usage caps through the CLI.
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
@@ -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:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tovuk",
3
- "version": "0.1.68",
3
+ "version": "0.1.69",
4
4
  "description": "Deploy Rust workers, static frontends, and worker-static services to Tovuk.",
5
5
  "type": "module",
6
6
  "bin": {