tovuk 0.1.76 → 0.1.78
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 +13 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,8 @@ Agents can also inspect pricing, usage, services, service summaries, deploys,
|
|
|
55
55
|
builds, service/deploy/build logs, env metadata, custom domains, domain
|
|
56
56
|
verification, service storage files and media, billing checkout links, billing
|
|
57
57
|
portal links, service deletion, and support ticket create/list/resolve actions
|
|
58
|
-
through the same CLI.
|
|
58
|
+
through the same CLI. Abuse reports, owner-visible report lists, and owner
|
|
59
|
+
appeals also use `tovuk abuse`.
|
|
59
60
|
|
|
60
61
|
Before high-throughput work, read pricing and set hard caps:
|
|
61
62
|
|
|
@@ -63,8 +64,7 @@ Before high-throughput work, read pricing and set hard caps:
|
|
|
63
64
|
tovuk pricing --json
|
|
64
65
|
tovuk usage --json
|
|
65
66
|
tovuk deploy --dry-run --json
|
|
66
|
-
tovuk service
|
|
67
|
-
tovuk service builds service_1 --json
|
|
67
|
+
tovuk service show service_1 --json
|
|
68
68
|
tovuk limits set worker_requests --period month --value 10000000 --json
|
|
69
69
|
```
|
|
70
70
|
|
|
@@ -110,6 +110,16 @@ When Tovuk support is needed, include enough evidence for a support agent:
|
|
|
110
110
|
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
|
|
111
111
|
```
|
|
112
112
|
|
|
113
|
+
Report and appeal abuse without dashboard access:
|
|
114
|
+
|
|
115
|
+
```sh
|
|
116
|
+
tovuk abuse report https://demo.tovuk.app "Phishing page" "Credential collection form" --category phishing --reporter-email reporter@example.com --evidence "Screenshot URL and request id" --json
|
|
117
|
+
tovuk abuse list --json
|
|
118
|
+
tovuk abuse appeal abuse_0123456789abcdef0123 "Removed the reported file and rotated credentials." --evidence "deploy_1 remediation log" --json
|
|
119
|
+
tovuk abuse quarantine abuse_0123456789abcdef0123 "Confirmed malware object and preserved scanner evidence." --json
|
|
120
|
+
tovuk abuse release abuse_0123456789abcdef0123 "Owner removed object and redeployed clean build." --json
|
|
121
|
+
```
|
|
122
|
+
|
|
113
123
|
When the issue is fixed, resolve the ticket:
|
|
114
124
|
|
|
115
125
|
```sh
|