@siteoshq/cli 2.0.0 → 2.1.0
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 +9 -4
- package/dist/cli.js +281 -188
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# SiteOS CLI
|
|
2
2
|
|
|
3
3
|
`@siteoshq/cli` exposes one `siteos` binary for Auth, common Projects, Pulse, Cookie, Forms,
|
|
4
|
-
Search, Trace, SEO/GEO and Integrations. This source is version 2.
|
|
4
|
+
Search, Trace, SEO/GEO and Integrations. This source is version 2.1.0; source changes require a separate release to reach npm.
|
|
5
5
|
|
|
6
6
|
CLI 2 requires `siteos project use <id-or-slug> --environment <slug>` once per repository.
|
|
7
7
|
It stores only the common selection in private `projects.json`; older service bindings are not
|
|
@@ -193,11 +193,16 @@ siteos seo audit show '<audit-id>' --json
|
|
|
193
193
|
siteos seo pages --audit '<audit-id>' --json
|
|
194
194
|
siteos seo issues --audit '<audit-id>' --json
|
|
195
195
|
siteos seo changes --audit '<audit-id>' --state resolved --json
|
|
196
|
-
siteos seo
|
|
196
|
+
siteos seo repair --audit '<audit-id>' --url https://example.com/pricing --rule metadata.description_missing --json
|
|
197
|
+
siteos seo recheck --audit '<audit-id>' --url https://example.com/pricing --url https://example.com/about --json
|
|
197
198
|
```
|
|
198
199
|
|
|
199
|
-
Setup performs no crawl. `audit run` queues a full HTML audit; `recheck` queues
|
|
200
|
-
|
|
200
|
+
Setup performs no crawl. `audit run` queues a full HTML audit; `recheck` queues 1–20 explicitly selected, previously observed URLs.
|
|
201
|
+
CLI 2.1.0 adds `repair` and repeated recheck `--url` values. The optional `--resource` guard
|
|
202
|
+
rejects a different Project environment before sending the request. Repair briefs read saved
|
|
203
|
+
evidence without an AI call; they do not authorize a deployment or another audit.
|
|
204
|
+
Full HTML audits allow 1–500 pages (default 100); the selected server and saved settings enforce
|
|
205
|
+
that limit independently of the installed CLI version. Read the returned audit ID until a terminal state; a queued response is not a result.
|
|
201
206
|
`audit cancel '<audit-id>'` revokes further work. Pages and changes are paginated with `--page`.
|
|
202
207
|
|
|
203
208
|
`issue ignore` and `issue restore` require `--audit`, `--url`, `--rule`, `--reason` and the current
|