@siteoshq/cli 2.7.0 → 2.9.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 +20 -0
- package/dist/cli.js +25785 -7013
- package/dist/cli.js.map +1 -1
- package/package.json +20 -17
package/README.md
CHANGED
|
@@ -417,6 +417,26 @@ for exact inputs, thresholds and installation of the common GTM execution monito
|
|
|
417
417
|
The installation response supplies `gtmExecutionMonitor.templateUrl` and its trigger contract.
|
|
418
418
|
MCP exposes read-only issue, event, observation, coverage, GTM and notification views.
|
|
419
419
|
|
|
420
|
+
### Search content and quality
|
|
421
|
+
|
|
422
|
+
`siteos search crawl list --environment <slug>` lists crawlers. Create one with `crawl create --name "Documentation" --file <crawler.json>` or update it with `crawl configure --crawler <id> --file <crawler.json>`. Use `--environment <slug>` for every command. Configuration includes HTML scope and a schedule with selected weekdays, time and time zone. Use `crawl start --crawler <id>`, read `crawl status --crawler <id>`, then `crawl publish --run <id> --apply` after reviewing changes. Partial crawls additionally require `--accept-truncated`. The crawler preserves other sources and keeps the current index serving until publication. See the canonical Search skill crawler reference for limits and robots/noindex policy.
|
|
423
|
+
|
|
424
|
+
`siteos search sync --environment <slug> --file <payload.json>` validates and previews a full replacement. Add `--apply` after reviewing removals. `search content` inspects the published documents and `search query --query <text>` runs a query without visitor telemetry.
|
|
425
|
+
|
|
426
|
+
Use `search relevance show`, `preview --file <relevance.json>`, `compare --revision <id>` and `apply --revision <id>` to compare a separately indexed configuration before serving it. `search installation verify --url <website-query-endpoint> --query <known-page>` verifies the real website proxy without sending it a management credential.
|
|
427
|
+
|
|
428
|
+
`search visitors report --days 30` reports consented visitor searches and result clicks. Collection defaults off; `search visitors configure --enabled true --retention-days 30` enables the backend after the website consent flow is connected. Operational `search analytics` keeps its existing index/job meaning. All commands use the selected common Project and explicit `--environment`; run `siteos search --help` for complete syntax.
|
|
429
|
+
|
|
430
|
+
### Algolia migration preparation
|
|
431
|
+
|
|
432
|
+
`siteos search migrate algolia --records records.ndjson --mapping mapping.json --out migration-review --json` prepares a local export without Auth or network access. Optional `--settings`, `--synonyms` and `--rules` preserve configuration for review. Original bytes are archived; invalid rows or oversized content prevent creation of a replacement payload. See the canonical [migration workflow](../../plugins/siteos/skills/siteos-search/references/algolia-migration.md).
|
|
433
|
+
|
|
434
|
+
Search delivery uses `siteos search delivery status --environment staging --json` and reviewed
|
|
435
|
+
`delivery configure --environment staging --file delivery.json --apply --json`. The configure file
|
|
436
|
+
contains `settings` (`enabled`, exact `allowedOrigins`), `confirmPublic: true` and optional `rotateKey`.
|
|
437
|
+
Search sync stages snapshots over 4 MB in bounded upload parts, up to 100 MB/100,000 documents,
|
|
438
|
+
and queues one replacement only after preview and `--apply`.
|
|
439
|
+
|
|
420
440
|
|
|
421
441
|
## Forms workspace and recurring SEO audits (2.7.0)
|
|
422
442
|
|