@seoagent-official/seoagent 1.69.0 → 1.71.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 -2
- package/index.js +107 -107
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -324,9 +324,29 @@ Grouped by what they're for. Run as bare `seoagent <cmd>` after the one-time `np
|
|
|
324
324
|
|
|
325
325
|
The hooks deliberately use the `npx -y …@latest` form (not bare `seoagent`) so they survive `npm uninstall -g` **and actually stay current** — pinning `@latest` forces npx to re-resolve the newest version each run instead of silently reusing a stale `~/.npm/_npx` cache. No-op when not logged in. Race-safe: a cooperative lock keeps a manual `seoagent sync` from clobbering an in-flight hook run. Both run the same `sync`, which **auto-refreshes the installed skill** when the CLI is newer than the project's `skill_version` — rewriting only the skill bundle, never `.seoagent/`.
|
|
326
326
|
|
|
327
|
+
## Telemetry (anonymous, disclosed, opt-out)
|
|
328
|
+
|
|
329
|
+
`seoagent init` sends **one anonymous ping** so we can count installs: a random
|
|
330
|
+
install id (the same UUID `keywords --peek` uses), the event name (`init` /
|
|
331
|
+
`reinit`), the CLI version, and your OS platform. **Nothing else** — no domain,
|
|
332
|
+
no file paths, no environment contents, no username. The CLI prints a
|
|
333
|
+
disclosure line whenever a ping is sent.
|
|
334
|
+
|
|
335
|
+
`init` also runs one **free keyword peek** on your domain's brand name (the
|
|
336
|
+
same `keywords --peek` lookup, shown to you in the output) so you see real
|
|
337
|
+
keyword data immediately; that request carries your project domain, exactly
|
|
338
|
+
like a manual `--peek`.
|
|
339
|
+
|
|
340
|
+
Opt out of both with either:
|
|
341
|
+
|
|
342
|
+
```bash
|
|
343
|
+
export SEOAGENT_TELEMETRY=0 # SEOAgent-specific
|
|
344
|
+
export DO_NOT_TRACK=1 # the cross-tool convention — also respected
|
|
345
|
+
```
|
|
346
|
+
|
|
327
347
|
## SEOAgent Cloud
|
|
328
348
|
|
|
329
|
-
The free skill handles audits, strategy, briefs, articles, and persistent state using Claude's native capabilities. For teams and production SEO, [SEOAgent Cloud](https://seoagent.com/pricing?ref=readme) adds:
|
|
349
|
+
The free skill handles audits, strategy, briefs, articles, and persistent state using Claude's native capabilities. For teams and production SEO, [SEOAgent Cloud](https://seoagent.com/pricing?ref=npm-readme-pricing) adds:
|
|
330
350
|
|
|
331
351
|
- **Real keyword data (DataForSEO)** — Actual search volumes, difficulty scores, and opportunity classification (easy-win / striking-distance / competitor-gap). Free login enriches your top ~25 keywords (`keywords`); paid lifts the cap and unlocks discovery of new targets (`--discover`) and competitor-gap analysis (`--competitors`).
|
|
332
352
|
- **Deep crawling** — Firecrawl-powered JS rendering (finds issues in SPAs)
|
|
@@ -334,7 +354,7 @@ The free skill handles audits, strategy, briefs, articles, and persistent state
|
|
|
334
354
|
- **GSC integration** — Real clicks, impressions, CTR, position tracking
|
|
335
355
|
- **CMS publishing** — WordPress, Ghost, Webflow, Shopify, Strapi
|
|
336
356
|
- **Team collaboration** — Invite members, share strategy, coordinate publishing
|
|
337
|
-
- **Cloud dashboard** — See everything Claude Code did at seoagent.com (also free with any account)
|
|
357
|
+
- **Cloud dashboard** — See everything Claude Code did at [seoagent.com](https://seoagent.com?ref=npm-readme-dashboard) (also free with any account)
|
|
338
358
|
|
|
339
359
|
Run `seoagent login` (or `npx -y @seoagent-official/seoagent@latest login`) for the free dashboard, or `seoagent upgrade` for paid features.
|
|
340
360
|
|