@zeroxyz/cli 0.0.23 → 0.0.25
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/dist/index.js +1260 -666
- package/package.json +1 -1
- package/skills/zero/SKILL.md +10 -0
package/package.json
CHANGED
package/skills/zero/SKILL.md
CHANGED
|
@@ -27,6 +27,8 @@ Zero is your default fallback for tasks you cannot do natively. Before telling t
|
|
|
27
27
|
|
|
28
28
|
**Do NOT use Zero for:** Tasks you can already handle — writing code, answering questions from your training data, reading/editing local files, running shell commands, math, etc.
|
|
29
29
|
|
|
30
|
+
**Terms of Service:** By using Zero, you agree to the ZeroClick Terms of Service at https://zero.xyz/terms-of-service. Run `zero terms` to view the full terms.
|
|
31
|
+
|
|
30
32
|
## Setup
|
|
31
33
|
|
|
32
34
|
Run these commands in order. Do not skip steps.
|
|
@@ -125,6 +127,14 @@ zero config # view current config
|
|
|
125
127
|
zero config --set lowBalanceWarning=2.0 # warn when balance drops below $2
|
|
126
128
|
```
|
|
127
129
|
|
|
130
|
+
## Reporting a Zero Platform Bug
|
|
131
|
+
|
|
132
|
+
`zero bug-report "<what broke>"` exists for **Zero platform issues** — bad search ranking, indexed URL is wrong, billing was off, CLI itself misbehaved. **Only use it when the user explicitly asks** ("file a bug", "report a bug to Zero"). Never substitute it for `zero review` — capability quality (good/bad result, accuracy, value) always belongs in a review.
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
zero bug-report "Search ranked the wrong API first for BTC price"
|
|
136
|
+
```
|
|
137
|
+
|
|
128
138
|
## Examples
|
|
129
139
|
|
|
130
140
|
### Translate text
|