@siteoshq/cli 2.0.0 → 2.2.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 +22 -4
- package/dist/cli.js +348 -200
- 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.2.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
|
|
@@ -384,3 +389,16 @@ definitions. Creation uses `--file <definition.json>`; reports and realtime read
|
|
|
384
389
|
to Analytics and the operation, with editor roles required for writes. Analytics is Unlimited in
|
|
385
390
|
Usage during early access. See the canonical plugin's website Analytics skill for event contracts
|
|
386
391
|
and the browser-to-report verification workflow; Search reports use `search analytics` separately.
|
|
392
|
+
|
|
393
|
+
### Trace actionable monitoring (2.2.0)
|
|
394
|
+
|
|
395
|
+
`trace coverage`, `trace gtm summary`, `trace notifications show` and
|
|
396
|
+
`trace notifications destinations` read the selected environment. `trace observations list`
|
|
397
|
+
accepts `--kind tag_execution`, `--container-id`, `--tag-id` and `--result`;
|
|
398
|
+
`trace issues list` accepts the same GTM identity filters.
|
|
399
|
+
`trace notifications save|retry --input <file>` and
|
|
400
|
+
`trace schema-baselines reset --input <file>` are explicit, version-guarded writes.
|
|
401
|
+
See the [Trace workflow](../../plugins/siteos/skills/siteos-trace/references/actionable-monitoring.md)
|
|
402
|
+
for exact inputs, thresholds and installation of the common GTM execution monitor.
|
|
403
|
+
The installation response supplies `gtmExecutionMonitor.templateUrl` and its trigger contract.
|
|
404
|
+
MCP exposes read-only issue, event, observation, coverage, GTM and notification views.
|