@seoagent-official/seoagent 1.56.0 → 1.56.2

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.
Files changed (3) hide show
  1. package/README.md +8 -8
  2. package/index.js +86 -86
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -38,7 +38,7 @@
38
38
 
39
39
  > **This package is a one-shot scaffolder, not a runtime dependency.** Run `init` once to scaffold `.seoagent/` + the Claude Code skill in your repo. Nothing to keep in `package.json` afterwards. No `postinstall` script — installs are silent and play nicely with npm 11+.
40
40
  >
41
- > **Upgrading is hands-off.** When a newer CLI is published, the next time you open Claude Code, the session-start hook surfaces a notice and Claude can offer to run `seoagent update-cli` — which updates the binary **and** refreshes every project on your machine to it in one go. Prefer to do nothing? Each project also self-updates on its own the next time you open it (the `SessionStart` hook runs `seoagent sync` before the skill loads). Refreshes only rewrite the skill files; your `.seoagent/` knowledge is never touched. (No more `rm -rf .seoagent && seoagent init`.) Run `seoagent refresh --all` anytime to sweep every project yourself.
41
+ > **Upgrading is hands-off.** When a newer CLI is published, the next time you open Claude Code, the session-start hook surfaces a notice and Claude can offer to run `seoagent update-cli` — which updates the binary **and** refreshes every project on your machine to it in one go. Prefer to do nothing? Each project also self-updates on its own the next time you open it (the `SessionStart` hook runs `seoagent sync` before the skill loads). Refreshes rewrite the skill files and re-scan your codebase for newly-added pages (merged into `.seoagent/pages.md` without touching your edits); nothing else in `.seoagent/` is changed. (No more `rm -rf .seoagent && seoagent init`.) Run `seoagent refresh --all` anytime to sweep every project yourself — that's also the way to re-discover pages you've added since setup.
42
42
 
43
43
  ## Install — pick one
44
44
 
@@ -56,7 +56,7 @@ seoagent init
56
56
  ### Option B — One-shot via `npx` (no global install)
57
57
 
58
58
  ```bash
59
- npx -y @seoagent-official/seoagent init
59
+ npx -y @seoagent-official/seoagent@latest init
60
60
  ```
61
61
 
62
62
  **Why this way:** nothing global on your machine, every invocation pulls the latest published version. Great for CI / one-off use / trying SEOAgent before committing. Trade-off: every command pays a ~2s npm fetch on cold cache, and Claude Code's Bash calls do the same.
@@ -70,7 +70,7 @@ Either way, `init` will:
70
70
  - Install the skill at `.claude/skills/seoagent/SKILL.md` so Claude Code picks it up
71
71
  - Add a `PostToolUse` hook to `.claude/settings.json` so edits to `.seoagent/` auto-sync to the cloud (when you're logged in)
72
72
 
73
- The scaffolded sync hook uses `npx -y @seoagent-official/seoagent sync --silent` either way — it's infrastructure that survives your environment changing (so it works even if you later uninstall the global package).
73
+ The scaffolded sync hook uses `npx -y @seoagent-official/seoagent@latest sync --silent` either way — it's infrastructure that survives your environment changing (so it works even if you later uninstall the global package), and the `@latest` pin keeps it from getting stuck on a stale npx-cached version.
74
74
 
75
75
  Then open Claude Code in this repo and say *"audit my site."* The skill takes it from there.
76
76
 
@@ -111,7 +111,7 @@ seoagent init --yes --domain example.com
111
111
  Via npx:
112
112
 
113
113
  ```bash
114
- npx -y @seoagent-official/seoagent init --yes --domain example.com
114
+ npx -y @seoagent-official/seoagent@latest init --yes --domain example.com
115
115
  ```
116
116
 
117
117
  ## Why SEOAgent?
@@ -261,7 +261,7 @@ Three things to notice:
261
261
 
262
262
  ## CLI Commands (all 22)
263
263
 
264
- Grouped by what they're for. Run as bare `seoagent <cmd>` after the one-time `npm install -g @seoagent-official/seoagent`. (Or `npx -y @seoagent-official/seoagent <cmd>` for a one-shot CI invocation.)
264
+ Grouped by what they're for. Run as bare `seoagent <cmd>` after the one-time `npm install -g @seoagent-official/seoagent`. (Or `npx -y @seoagent-official/seoagent@latest <cmd>` for a one-shot CI invocation.)
265
265
 
266
266
  **Setup + lifecycle**
267
267
 
@@ -313,12 +313,12 @@ Grouped by what they're for. Run as bare `seoagent <cmd>` after the one-time `np
313
313
 
314
314
  ## Auto-Sync Hook
315
315
 
316
- `init` writes two hooks to `.claude/settings.json`, both running `npx -y @seoagent-official/seoagent sync --silent`:
316
+ `init` writes two hooks to `.claude/settings.json`, both running `npx -y @seoagent-official/seoagent@latest sync --silent`:
317
317
 
318
318
  - a **`SessionStart`** hook — runs at the start of every Claude Code session, **before** Claude reads the skill, so the skill is always current (this is what makes a CLI upgrade take effect on your *next* session);
319
319
  - a **`PostToolUse`** (`Write|Edit`) hook — keeps `.seoagent/` synced as the agent edits during a session.
320
320
 
321
- The hooks deliberately use the `npx -y` form (not bare `seoagent`) so they survive `npm uninstall -g` and stay current with whatever's published. 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/`.
321
+ 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/`.
322
322
 
323
323
  ## SEOAgent Cloud
324
324
 
@@ -332,7 +332,7 @@ The free skill handles audits, strategy, briefs, articles, and persistent state
332
332
  - **Team collaboration** — Invite members, share strategy, coordinate publishing
333
333
  - **Cloud dashboard** — See everything Claude Code did at seoagent.com (also free with any account)
334
334
 
335
- Run `seoagent login` (or `npx -y @seoagent-official/seoagent login`) for the free dashboard, or `seoagent upgrade` for paid features.
335
+ Run `seoagent login` (or `npx -y @seoagent-official/seoagent@latest login`) for the free dashboard, or `seoagent upgrade` for paid features.
336
336
 
337
337
  ## Pattern Note
338
338
 
package/index.js CHANGED
@@ -1,40 +1,40 @@
1
1
  #!/usr/bin/env node
2
- import{Command as Ou}from"commander";import{dirname as Cr,relative as wt}from"path";import{intro as Ss,outro as $s,text as vr,select as Qt,spinner as vs,isCancel as be,cancel as Se,confirm as xs}from"@clack/prompts";function Dt(e=process.argv[1]){let t=process.env.SEOAGENT_INSTALL_FORM;return t==="global"?!0:t==="npx"||!e?!1:(e.split(/[/\\]/).pop()??"").replace(/\.(cmd|ps1|exe)$/i,"").toLowerCase()==="seoagent"}function f(e,t=Dt()){return t?`seoagent ${e}`:`npx -y @seoagent-official/seoagent ${e}`}import{randomUUID as yi}from"crypto";import{existsSync as Fn,mkdirSync as Dn,readFileSync as wi,writeFileSync as Un}from"fs";import{join as Bt}from"path";var me=[".env.local",".env.production",".env"],Rn=["NEXT_PUBLIC_SITE_URL","SITE_URL","NEXT_PUBLIC_URL","NEXTAUTH_URL","VITE_SITE_URL"];import{homedir as ii}from"os";import{join as ge}from"path";var b=".seoagent",Pn=["audit","strategy/clusters","briefs","content","content/images","performance"],ie={AGENTS:".agents/skills/seoagent",CLAUDE:".claude/skills/seoagent"},it=".claude/settings.json",On=".pull-receipt.json",Tn=".ack-queue.json",jn=".sync.lock",Ln=`# SEOAgent local files
2
+ import{Command as Hu}from"commander";import{dirname as Tr,relative as St}from"path";import{intro as Ls,outro as Ns,text as Rr,select as nn,spinner as Fs,isCancel as Se,cancel as ve,confirm as Ds}from"@clack/prompts";var ge=[".env.local",".env.production",".env"],Ln=["NEXT_PUBLIC_SITE_URL","SITE_URL","NEXT_PUBLIC_URL","NEXTAUTH_URL","VITE_SITE_URL"];var V="@seoagent-official/seoagent",lt=`${V}@latest`;import{homedir as fi}from"os";import{join as he}from"path";var b=".seoagent",Nn=["audit","strategy/clusters","briefs","content","content/images","performance"],ae={AGENTS:".agents/skills/seoagent",CLAUDE:".claude/skills/seoagent"},ct=".claude/settings.json",Fn=".pull-receipt.json",Dn=".ack-queue.json",Un=".sync.lock",Mn=`# SEOAgent local files
3
3
  .legacy/
4
4
  content/images/*
5
5
  !content/images/.gitkeep
6
6
  .pull-receipt.json
7
7
  .ack-queue.json
8
8
  .sync.lock
9
- `,si=process.env.XDG_CONFIG_HOME&&process.env.XDG_CONFIG_HOME.trim().length>0?process.env.XDG_CONFIG_HOME:ge(ii(),".config"),F=ge(si,"seoagent"),Q=ge(F,"auth.json"),Ut=ge(F,"state"),st=ge(F,"update-check.json"),at=ge(F,"projects.json");var Pe="https://seoagent.com",he=process.env.SEOAGENT_API_BASE&&process.env.SEOAGENT_API_BASE.trim().length>0?process.env.SEOAGENT_API_BASE.replace(/\/$/,""):Pe,_={BASE:he,PRICING:`${he}/pricing`,LEAD_API:`${he}/api/cli/lead`,CLI_AUTH_PAGE:`${he}/cli/auth`,CLI_AUTH_POLL:`${he}/api/cli/auth/poll`,CLI_SYNC:`${he}/api/cli/sync`};import{readFileSync as ai}from"fs";import{fileURLToPath as li}from"url";import{dirname as ci,join as ui}from"path";var Nn="0.0.0";function di(e){try{let t=JSON.parse(e);if(typeof t.version=="string"&&/^\d+\.\d+\.\d+/.test(t.version))return t.version}catch{}return Nn}function pi(e=t=>ai(t,"utf-8")){try{let t=ci(li(import.meta.url));return di(e(ui(t,"package.json")))}catch{return Nn}}var $=pi();import{existsSync as fi,readFileSync as mi}from"fs";var lt="---";function gi(e){let t=e.trim();return t===""?"":t==="null"||t==="~"?null:t==="true"?!0:t==="false"?!1:t.startsWith('"')&&t.endsWith('"')||t.startsWith("'")&&t.endsWith("'")?t.slice(1,-1):/^-?\d+$/.test(t)||/^-?\d+\.\d+$/.test(t)?Number(t):t}function Oe(e){let t=e.split(/\r?\n/);if(t[0]?.trim()!==lt)return{data:{},body:e};let n={},r=1;for(;r<t.length;r++){if(t[r].trim()===lt){r++;break}let o=t[r],i=o.indexOf(":");if(i===-1)continue;let s=o.slice(0,i).trim(),a=o.slice(i+1);s&&(n[s]=gi(a))}return{data:n,body:t.slice(r).join(`
10
- `)}}function ct(e){if(!fi(e))return null;try{return Oe(mi(e,"utf-8"))}catch{return null}}function hi(e){if(e===null)return"null";if(typeof e=="boolean")return e?"true":"false";if(typeof e=="number")return String(e);let t=String(e);return t===""||/[:#\[\]{}&*!|>'"%@`,]/.test(t)||/^\s|\s$/.test(t)?`"${t.replace(/"/g,'\\"')}"`:t}function Mt(e,t=""){let n=[lt];for(let[o,i]of Object.entries(e))i!==void 0&&n.push(`${o}: ${hi(i)}`);n.push(lt);let r=t.length===0?"":t.startsWith(`
9
+ `,mi=process.env.XDG_CONFIG_HOME&&process.env.XDG_CONFIG_HOME.trim().length>0?process.env.XDG_CONFIG_HOME:he(fi(),".config"),F=he(mi,"seoagent"),Z=he(F,"auth.json"),Gt=he(F,"state"),ut=he(F,"update-check.json"),dt=he(F,"projects.json");var je="https://seoagent.com",ye=process.env.SEOAGENT_API_BASE&&process.env.SEOAGENT_API_BASE.trim().length>0?process.env.SEOAGENT_API_BASE.replace(/\/$/,""):je,C={BASE:ye,PRICING:`${ye}/pricing`,LEAD_API:`${ye}/api/cli/lead`,CLI_AUTH_PAGE:`${ye}/cli/auth`,CLI_AUTH_POLL:`${ye}/api/cli/auth/poll`,CLI_SYNC:`${ye}/api/cli/sync`};import{readFileSync as gi}from"fs";import{fileURLToPath as hi}from"url";import{dirname as yi,join as wi}from"path";var Bn="0.0.0";function ki(e){try{let t=JSON.parse(e);if(typeof t.version=="string"&&/^\d+\.\d+\.\d+/.test(t.version))return t.version}catch{}return Bn}function bi(e=t=>gi(t,"utf-8")){try{let t=yi(hi(import.meta.url));return ki(e(wi(t,"package.json")))}catch{return Bn}}var v=bi();function Wt(e=process.argv[1]){let t=process.env.SEOAGENT_INSTALL_FORM;return t==="global"?!0:t==="npx"||!e?!1:(e.split(/[/\\]/).pop()??"").replace(/\.(cmd|ps1|exe)$/i,"").toLowerCase()==="seoagent"}function f(e,t=Wt()){return t?`seoagent ${e}`:`npx -y ${lt} ${e}`}import{randomUUID as _i}from"crypto";import{existsSync as Gn,mkdirSync as Wn,readFileSync as Ci,writeFileSync as Kn}from"fs";import{join as qt}from"path";import{existsSync as $i,readFileSync as Si}from"fs";var pt="---";function vi(e){let t=e.trim();return t===""?"":t==="null"||t==="~"?null:t==="true"?!0:t==="false"?!1:t.startsWith('"')&&t.endsWith('"')||t.startsWith("'")&&t.endsWith("'")?t.slice(1,-1):/^-?\d+$/.test(t)||/^-?\d+\.\d+$/.test(t)?Number(t):t}function Le(e){let t=e.split(/\r?\n/);if(t[0]?.trim()!==pt)return{data:{},body:e};let n={},r=1;for(;r<t.length;r++){if(t[r].trim()===pt){r++;break}let o=t[r],i=o.indexOf(":");if(i===-1)continue;let s=o.slice(0,i).trim(),a=o.slice(i+1);s&&(n[s]=vi(a))}return{data:n,body:t.slice(r).join(`
10
+ `)}}function ft(e){if(!$i(e))return null;try{return Le(Si(e,"utf-8"))}catch{return null}}function xi(e){if(e===null)return"null";if(typeof e=="boolean")return e?"true":"false";if(typeof e=="number")return String(e);let t=String(e);return t===""||/[:#\[\]{}&*!|>'"%@`,]/.test(t)||/^\s|\s$/.test(t)?`"${t.replace(/"/g,'\\"')}"`:t}function Kt(e,t=""){let n=[pt];for(let[o,i]of Object.entries(e))i!==void 0&&n.push(`${o}: ${xi(i)}`);n.push(pt);let r=t.length===0?"":t.startsWith(`
11
11
  `)?t:`
12
12
  ${t}`;return n.join(`
13
13
  `)+r+(r.endsWith(`
14
14
  `)?"":`
15
- `)}var ki=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;function Gt(){return yi()}var bi=new Set(["strapi","wordpress","sanity","contentful","ghost","webflow","shopify","payload","directus","mdx-local","none"]),Si="project.md";function Te(e){return Bt(e,b)}function ut(e){return Bt(Te(e),Si)}function Mn(e){return Fn(ut(e))}function x(e){let t=ct(ut(e));if(!t)return null;let n=t.data;if(typeof n.domain!="string"||!n.domain)return null;let r=typeof n.image_provider=="string"?n.image_provider:void 0,o=typeof n.cms=="string"?n.cms:void 0,i=o&&bi.has(o)?o:void 0,s=typeof n.install_id=="string"?n.install_id:void 0;return{domain:n.domain,site_type:typeof n.site_type=="string"?n.site_type:"unknown",language:typeof n.language=="string"?n.language:"en",initialized_at:typeof n.initialized_at=="string"?n.initialized_at:"",seoagent_version:typeof n.seoagent_version=="string"?n.seoagent_version:"",skill_version:typeof n.skill_version=="string"&&n.skill_version?n.skill_version:void 0,install_id:s&&ki.test(s)?s:void 0,image_provider:r==="openai"||r==="fal"||r==="replicate"||r==="none"?r:void 0,cms:i,blog_path:typeof n.blog_path=="string"&&n.blog_path?n.blog_path:void 0}}function Bn(e){let t=x(e);if(!t)return null;if(t.install_id)return t.install_id;let n=Gt();return B(e,{install_id:n}),n}function $i(e){return["",`# SEOAgent Project \u2014 ${e.domain}`,"","This file holds project-level configuration for the SEOAgent skill.","The skill reads it on every session to know which domain it is working on.","",`Initialized ${e.initialized_at} with seoagent ${e.seoagent_version}.`,""].join(`
16
- `)}function vi(e){let t={domain:e.domain,site_type:e.site_type,language:e.language,initialized_at:e.initialized_at,seoagent_version:e.seoagent_version};return e.skill_version&&(t.skill_version=e.skill_version),e.install_id&&(t.install_id=e.install_id),e.image_provider&&(t.image_provider=e.image_provider),e.cms&&(t.cms=e.cms),e.blog_path&&(t.blog_path=e.blog_path),t}function Gn(e,t){let n=Te(e);Dn(n,{recursive:!0});let r=Mt(vi(t),$i(t));Un(ut(e),r,"utf-8")}function B(e,t){let n=ut(e);if(!Fn(n))return!1;let r=Oe(wi(n,"utf-8")),o={...r.data,...t};return Un(n,Mt(o,r.body),"utf-8"),!0}function Kn(e){let t=Te(e);for(let n of Pn)Dn(Bt(t,n),{recursive:!0})}import{existsSync as dt,lstatSync as xi,mkdirSync as je,readFileSync as Wn,readdirSync as _i,rmSync as Ci,statSync as Ei,symlinkSync as Ai,writeFileSync as qn}from"fs";import{dirname as pt,join as q,relative as Hn}from"path";import{fileURLToPath as Ii}from"url";var Ri=pt(Ii(import.meta.url));function Yn(){return q(Ri,"skills")}function Pi(){let e=q(Yn(),"seoagent.md");if(dt(e))return Wn(e,"utf-8");throw new Error(`Could not find skill file at: ${e}`)}function zn(e,t){let n=[];if(!dt(e))return n;for(let r of _i(e,{withFileTypes:!0})){let o=q(e,r.name),i=q(t,r.name);r.isDirectory()?(je(i,{recursive:!0}),n.push(...zn(o,i))):r.isFile()&&(je(pt(i),{recursive:!0}),qn(i,Wn(o)),n.push(i))}return n}function ye(e,t){let n=dt(q(e,".agents")),r=q(e,n?ie.AGENTS:ie.CLAUDE),o=q(r,"SKILL.md");je(r,{recursive:!0}),qn(o,t??Pi(),"utf-8");let i=q(Yn(),"references"),s=q(r,"references"),a=[];try{dt(i)&&Ei(i).isDirectory()&&(je(s,{recursive:!0}),a=zn(i,s).map(u=>Hn(r,u)))}catch{}let l=n?Oi(e,r):void 0;return{skillFile:o,referenceFiles:a,claudeSymlink:l}}function Oi(e,t){let n=q(e,ie.CLAUDE),r=null;try{r=xi(n)}catch{}if(r){if(!r.isSymbolicLink())return;try{Ci(n,{force:!0})}catch{return}}try{je(pt(n),{recursive:!0});let o=Hn(pt(n),t);return Ai(o,n,"dir"),n}catch{return}}import{existsSync as mt,mkdirSync as Kt,readFileSync as Ti,writeFileSync as ft}from"fs";import{dirname as Jn,join as we}from"path";var ji="npx -y @seoagent-official/seoagent sync --silent";function Qn(e){let t=we(e,b);Kt(t,{recursive:!0});let n=we(t,".gitignore");ft(n,Ln,"utf-8");let r=we(t,"content","images",".gitkeep");return Kt(Jn(r),{recursive:!0}),mt(r)||ft(r,"","utf-8"),n}var Xn=["PostToolUse","SessionStart"];function Wt(e){if(!mt(e))return{};try{let t=Ti(e,"utf-8");return JSON.parse(t)}catch{return{}}}function qt(e){return e.command.includes("@seoagent-official/seoagent")&&e.command.includes("sync")}function Vn(e,t,n){let r=e.find(t);return r||(r=n(),e.push(r)),r.hooks.some(qt)?!1:(r.hooks.push({type:"command",command:ji}),!0)}function se(e){let t=we(e,it);Kt(Jn(t),{recursive:!0});let n=Wt(t);n.hooks=n.hooks??{};let r=n.hooks.PostToolUse=n.hooks.PostToolUse??[],o=Vn(r,a=>(a.matcher??"").includes("Write"),()=>({matcher:"Write|Edit",hooks:[]})),i=n.hooks.SessionStart=n.hooks.SessionStart??[],s=Vn(i,a=>(a.matcher??"")==="",()=>({hooks:[]}));return ft(t,JSON.stringify(n,null,2)+`
17
- `,"utf-8"),{file:t,added:o||s}}function Zn(e){let t=we(e,it);if(!mt(t))return!1;let n=Wt(t).hooks;return n?Xn.some(r=>{let o=n[r];return Array.isArray(o)&&o.some(i=>i.hooks?.some(qt))}):!1}function er(e){let t=we(e,it);if(!mt(t))return{file:t,removed:!1};let n=Wt(t),r=n.hooks;if(!r)return{file:t,removed:!1};let o=!1;for(let i of Xn){let s=r[i];if(!Array.isArray(s))continue;for(let l of s){let u=l.hooks.length;l.hooks=l.hooks.filter(d=>!qt(d)),l.hooks.length!==u&&(o=!0)}let a=s.filter(l=>l.hooks.length>0);a.length===0?delete r[i]:r[i]=a}return o?(Object.keys(r).length===0&&delete n.hooks,ft(t,JSON.stringify(n,null,2)+`
18
- `,"utf-8"),{file:t,removed:!0}):{file:t,removed:!1}}import{existsSync as tr,mkdirSync as Li,readFileSync as Ni,writeFileSync as Fi}from"fs";import{join as Di}from"path";function nr(e){return tr(Di(e,b,"project.md"))}function rr(){try{if(!tr(at))return[];let e=JSON.parse(Ni(at,"utf-8"));return Array.isArray(e.projects)?e.projects.filter(t=>typeof t=="string"&&t.length>0):[]}catch{return[]}}function or(e){try{Li(F,{recursive:!0}),Fi(at,JSON.stringify({projects:e},null,2)+`
19
- `,"utf-8")}catch{}}function ae(e){try{if(!nr(e))return;let t=rr();if(t.includes(e))return;t.push(e),or(t)}catch{}}function ir(){let e=rr(),t=e.filter(nr);return t.length!==e.length&&or(t),t}import{readFileSync as Gi,writeFileSync as Ki,existsSync as Wi}from"fs";import{join as cr}from"path";function ar(e){let t={business:{},writingInstructions:[],referenceUrls:[],topicsToAvoid:[],contentTone:null,additionalNotes:null},n=Ui(e);for(let[r,o]of n){let i=r.toLowerCase().trim();i==="business context"?t.business=Mi(o):i==="writing instructions"?t.writingInstructions=sr(o):i==="reference urls"?t.referenceUrls=Bi(o):i==="topics to avoid"?t.topicsToAvoid=sr(o):i==="content tone"?t.contentTone=o.trim()||null:i==="additional notes"&&(t.additionalNotes=o.trim()||null)}return t}function lr(e){let t=[];t.push("# Business Context"),t.push("");let n=[["Name","name"],["Type","type"],["Audience","audience"],["Industry","industry"],["Location","location"],["Description","description"]];for(let[o,i]of n){let s=e.business[i];t.push(`- **${o}:** ${s||""}`)}let r=new Set(n.map(([,o])=>o));for(let[o,i]of Object.entries(e.business))if(!r.has(o)&&i){let s=o.charAt(0).toUpperCase()+o.slice(1);t.push(`- **${s}:** ${i}`)}if(t.push(""),t.push("# Writing Instructions"),t.push(""),e.writingInstructions.length>0)for(let o of e.writingInstructions)t.push(`- ${o}`);else t.push("- (Add your content writing guidelines here)");if(t.push(""),t.push("# Reference URLs"),t.push(""),e.referenceUrls.length>0)for(let o of e.referenceUrls)o.description?t.push(`- ${o.url} \u2014 ${o.description}`):t.push(`- ${o.url}`);else t.push("- (Add URLs the agent should reference for tone/style)");if(t.push(""),t.push("# Topics to Avoid"),t.push(""),e.topicsToAvoid.length>0)for(let o of e.topicsToAvoid)t.push(`- ${o}`);else t.push("- (Add topics the agent should never write about)");return t.push(""),t.push("# Content Tone"),t.push(""),t.push(e.contentTone||"professional"),t.push(""),t.push("# Additional Notes"),t.push(""),t.push(e.additionalNotes||"(Any other context you want the agent to know about your business, products, or audience.)"),t.push(""),t.join(`
20
- `)}function Ui(e){let t=e.split(`
15
+ `)}var Ei=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;function Ht(){return _i()}var Ai=new Set(["strapi","wordpress","sanity","contentful","ghost","webflow","shopify","payload","directus","mdx-local","none"]),Ii="project.md";function Ne(e){return qt(e,b)}function mt(e){return qt(Ne(e),Ii)}function qn(e){return Gn(mt(e))}function S(e){let t=ft(mt(e));if(!t)return null;let n=t.data;if(typeof n.domain!="string"||!n.domain)return null;let r=typeof n.image_provider=="string"?n.image_provider:void 0,o=typeof n.cms=="string"?n.cms:void 0,i=o&&Ai.has(o)?o:void 0,s=typeof n.install_id=="string"?n.install_id:void 0;return{domain:n.domain,site_type:typeof n.site_type=="string"?n.site_type:"unknown",language:typeof n.language=="string"?n.language:"en",initialized_at:typeof n.initialized_at=="string"?n.initialized_at:"",seoagent_version:typeof n.seoagent_version=="string"?n.seoagent_version:"",skill_version:typeof n.skill_version=="string"&&n.skill_version?n.skill_version:void 0,install_id:s&&Ei.test(s)?s:void 0,image_provider:r==="openai"||r==="fal"||r==="replicate"||r==="none"?r:void 0,cms:i,blog_path:typeof n.blog_path=="string"&&n.blog_path?n.blog_path:void 0}}function Hn(e){let t=S(e);if(!t)return null;if(t.install_id)return t.install_id;let n=Ht();return W(e,{install_id:n}),n}function Ri(e){return["",`# SEOAgent Project \u2014 ${e.domain}`,"","This file holds project-level configuration for the SEOAgent skill.","The skill reads it on every session to know which domain it is working on.","",`Initialized ${e.initialized_at} with seoagent ${e.seoagent_version}.`,""].join(`
16
+ `)}function Pi(e){let t={domain:e.domain,site_type:e.site_type,language:e.language,initialized_at:e.initialized_at,seoagent_version:e.seoagent_version};return e.skill_version&&(t.skill_version=e.skill_version),e.install_id&&(t.install_id=e.install_id),e.image_provider&&(t.image_provider=e.image_provider),e.cms&&(t.cms=e.cms),e.blog_path&&(t.blog_path=e.blog_path),t}function Yn(e,t){let n=Ne(e);Wn(n,{recursive:!0});let r=Kt(Pi(t),Ri(t));Kn(mt(e),r,"utf-8")}function W(e,t){let n=mt(e);if(!Gn(n))return!1;let r=Le(Ci(n,"utf-8")),o={...r.data,...t};return Kn(n,Kt(o,r.body),"utf-8"),!0}function zn(e){let t=Ne(e);for(let n of Nn)Wn(qt(t,n),{recursive:!0})}import{existsSync as gt,lstatSync as Oi,mkdirSync as Fe,readFileSync as Vn,readdirSync as Ti,rmSync as ji,statSync as Li,symlinkSync as Ni,writeFileSync as Jn}from"fs";import{dirname as ht,join as H,relative as Qn}from"path";import{fileURLToPath as Fi}from"url";var Di=ht(Fi(import.meta.url));function Xn(){return H(Di,"skills")}function Ui(){let e=H(Xn(),"seoagent.md");if(gt(e))return Vn(e,"utf-8");throw new Error(`Could not find skill file at: ${e}`)}function Zn(e,t){let n=[];if(!gt(e))return n;for(let r of Ti(e,{withFileTypes:!0})){let o=H(e,r.name),i=H(t,r.name);r.isDirectory()?(Fe(i,{recursive:!0}),n.push(...Zn(o,i))):r.isFile()&&(Fe(ht(i),{recursive:!0}),Jn(i,Vn(o)),n.push(i))}return n}function we(e,t){let n=gt(H(e,".agents")),r=H(e,n?ae.AGENTS:ae.CLAUDE),o=H(r,"SKILL.md");Fe(r,{recursive:!0}),Jn(o,t??Ui(),"utf-8");let i=H(Xn(),"references"),s=H(r,"references"),a=[];try{gt(i)&&Li(i).isDirectory()&&(Fe(s,{recursive:!0}),a=Zn(i,s).map(u=>Qn(r,u)))}catch{}let c=n?Mi(e,r):void 0;return{skillFile:o,referenceFiles:a,claudeSymlink:c}}function Mi(e,t){let n=H(e,ae.CLAUDE),r=null;try{r=Oi(n)}catch{}if(r){if(!r.isSymbolicLink())return;try{ji(n,{force:!0})}catch{return}}try{Fe(ht(n),{recursive:!0});let o=Qn(ht(n),t);return Ni(o,n,"dir"),n}catch{return}}import{existsSync as wt,mkdirSync as Yt,readFileSync as Bi,writeFileSync as yt}from"fs";import{dirname as tr,join as ke}from"path";var Gi=`npx -y ${lt} sync --silent`;function nr(e){let t=ke(e,b);Yt(t,{recursive:!0});let n=ke(t,".gitignore");yt(n,Mn,"utf-8");let r=ke(t,"content","images",".gitkeep");return Yt(tr(r),{recursive:!0}),wt(r)||yt(r,"","utf-8"),n}var rr=["PostToolUse","SessionStart"];function zt(e){if(!wt(e))return{};try{let t=Bi(e,"utf-8");return JSON.parse(t)}catch{return{}}}function Vt(e){return e.command.includes("@seoagent-official/seoagent")&&e.command.includes("sync")}function er(e,t,n){let r=e.find(t);return r||(r=n(),e.push(r)),r.hooks.some(Vt)?!1:(r.hooks.push({type:"command",command:Gi}),!0)}function le(e){let t=ke(e,ct);Yt(tr(t),{recursive:!0});let n=zt(t);n.hooks=n.hooks??{};let r=n.hooks.PostToolUse=n.hooks.PostToolUse??[],o=er(r,a=>(a.matcher??"").includes("Write"),()=>({matcher:"Write|Edit",hooks:[]})),i=n.hooks.SessionStart=n.hooks.SessionStart??[],s=er(i,a=>(a.matcher??"")==="",()=>({hooks:[]}));return yt(t,JSON.stringify(n,null,2)+`
17
+ `,"utf-8"),{file:t,added:o||s}}function or(e){let t=ke(e,ct);if(!wt(t))return!1;let n=zt(t).hooks;return n?rr.some(r=>{let o=n[r];return Array.isArray(o)&&o.some(i=>i.hooks?.some(Vt))}):!1}function ir(e){let t=ke(e,ct);if(!wt(t))return{file:t,removed:!1};let n=zt(t),r=n.hooks;if(!r)return{file:t,removed:!1};let o=!1;for(let i of rr){let s=r[i];if(!Array.isArray(s))continue;for(let c of s){let u=c.hooks.length;c.hooks=c.hooks.filter(d=>!Vt(d)),c.hooks.length!==u&&(o=!0)}let a=s.filter(c=>c.hooks.length>0);a.length===0?delete r[i]:r[i]=a}return o?(Object.keys(r).length===0&&delete n.hooks,yt(t,JSON.stringify(n,null,2)+`
18
+ `,"utf-8"),{file:t,removed:!0}):{file:t,removed:!1}}import{existsSync as sr,mkdirSync as Wi,readFileSync as Ki,writeFileSync as qi}from"fs";import{join as Hi}from"path";function ar(e){return sr(Hi(e,b,"project.md"))}function lr(){try{if(!sr(dt))return[];let e=JSON.parse(Ki(dt,"utf-8"));return Array.isArray(e.projects)?e.projects.filter(t=>typeof t=="string"&&t.length>0):[]}catch{return[]}}function cr(e){try{Wi(F,{recursive:!0}),qi(dt,JSON.stringify({projects:e},null,2)+`
19
+ `,"utf-8")}catch{}}function ce(e){try{if(!ar(e))return;let t=lr();if(t.includes(e))return;t.push(e),cr(t)}catch{}}function ur(){let e=lr(),t=e.filter(ar);return t.length!==e.length&&cr(t),t}import{readFileSync as Ji,writeFileSync as Qi,existsSync as Xi}from"fs";import{join as mr}from"path";function pr(e){let t={business:{},writingInstructions:[],referenceUrls:[],topicsToAvoid:[],contentTone:null,additionalNotes:null},n=Yi(e);for(let[r,o]of n){let i=r.toLowerCase().trim();i==="business context"?t.business=zi(o):i==="writing instructions"?t.writingInstructions=dr(o):i==="reference urls"?t.referenceUrls=Vi(o):i==="topics to avoid"?t.topicsToAvoid=dr(o):i==="content tone"?t.contentTone=o.trim()||null:i==="additional notes"&&(t.additionalNotes=o.trim()||null)}return t}function fr(e){let t=[];t.push("# Business Context"),t.push("");let n=[["Name","name"],["Type","type"],["Audience","audience"],["Industry","industry"],["Location","location"],["Description","description"]];for(let[o,i]of n){let s=e.business[i];t.push(`- **${o}:** ${s||""}`)}let r=new Set(n.map(([,o])=>o));for(let[o,i]of Object.entries(e.business))if(!r.has(o)&&i){let s=o.charAt(0).toUpperCase()+o.slice(1);t.push(`- **${s}:** ${i}`)}if(t.push(""),t.push("# Writing Instructions"),t.push(""),e.writingInstructions.length>0)for(let o of e.writingInstructions)t.push(`- ${o}`);else t.push("- (Add your content writing guidelines here)");if(t.push(""),t.push("# Reference URLs"),t.push(""),e.referenceUrls.length>0)for(let o of e.referenceUrls)o.description?t.push(`- ${o.url} \u2014 ${o.description}`):t.push(`- ${o.url}`);else t.push("- (Add URLs the agent should reference for tone/style)");if(t.push(""),t.push("# Topics to Avoid"),t.push(""),e.topicsToAvoid.length>0)for(let o of e.topicsToAvoid)t.push(`- ${o}`);else t.push("- (Add topics the agent should never write about)");return t.push(""),t.push("# Content Tone"),t.push(""),t.push(e.contentTone||"professional"),t.push(""),t.push("# Additional Notes"),t.push(""),t.push(e.additionalNotes||"(Any other context you want the agent to know about your business, products, or audience.)"),t.push(""),t.join(`
20
+ `)}function Yi(e){let t=e.split(`
21
21
  `),n=[],r="",o=[];for(let i of t){let s=i.match(/^#\s+(.+)$/);s?(r&&n.push([r,o.join(`
22
22
  `)]),r=s[1],o=[]):o.push(i)}return r&&n.push([r,o.join(`
23
- `)]),n}function Mi(e){let t={},n=e.split(`
24
- `);for(let r of n){let o=r.match(/^[-*]\s+\*\*(.+?):\*\*\s*(.*)$/);if(o){let i=o[1].toLowerCase().trim(),s=o[2].trim();s&&(t[i]=s)}}return t}function sr(e){let t=[],n=e.split(`
25
- `);for(let r of n){let o=r.match(/^[-*]\s+(.+)$/);if(o){let i=o[1].trim();(!i.startsWith("(")||!i.endsWith(")"))&&t.push(i)}}return t}function Bi(e){let t=[],n=e.split(`
26
- `);for(let r of n){let o=r.match(/^[-*]\s+(https?:\/\/\S+)(?:\s+[—–-]\s+(.+))?$/);o&&t.push({url:o[1].trim(),description:o[2]?.trim()||""})}return t}var ur="context.md";function dr(e){let t=cr(e,".seoagent",ur);if(!Wi(t))return null;let n=Gi(t,"utf-8");return ar(n)}function qi(e,t){let n=cr(e,".seoagent",ur),r=lr(t);Ki(n,r,"utf-8")}function pr(e,t){qi(e,{business:{type:t||""},writingInstructions:[],referenceUrls:[],topicsToAvoid:[],contentTone:null,additionalNotes:null})}import{existsSync as Le,readFileSync as fr,readdirSync as Hi,statSync as mr}from"fs";import{join as le}from"path";var Yi=[{cms:"strapi",deps:["strapi","@strapi/strapi","@strapi/"],envKeys:["STRAPI_URL","STRAPI_API_URL","NEXT_PUBLIC_STRAPI_URL","STRAPI_API_TOKEN"],fsMarkers:["strapi/","apps/strapi/","packages/strapi/","cms/"]},{cms:"wordpress",deps:["wpapi","wp-graphql","@wordpress/api-fetch","@wordpress/"],envKeys:["WORDPRESS_API_URL","WP_API_URL","NEXT_PUBLIC_WORDPRESS_URL"],fsMarkers:[]},{cms:"sanity",deps:["@sanity/client","next-sanity","sanity"],envKeys:["SANITY_PROJECT_ID","NEXT_PUBLIC_SANITY_PROJECT_ID","SANITY_API_TOKEN"],fsMarkers:["sanity/","studio/","sanity.config.ts","sanity.config.js"]},{cms:"contentful",deps:["contentful","@contentful/rich-text-react-renderer","@contentful/"],envKeys:["CONTENTFUL_SPACE_ID","CONTENTFUL_ACCESS_TOKEN","NEXT_PUBLIC_CONTENTFUL_SPACE_ID"],fsMarkers:[]},{cms:"ghost",deps:["@tryghost/content-api","@tryghost/"],envKeys:["GHOST_URL","GHOST_API_KEY","NEXT_PUBLIC_GHOST_URL"],fsMarkers:[]},{cms:"webflow",deps:["webflow-api"],envKeys:["WEBFLOW_API_TOKEN","WEBFLOW_SITE_ID"],fsMarkers:[]},{cms:"shopify",deps:["@shopify/hydrogen","@shopify/storefront-api-client","@shopify/shopify-api","@shopify/"],envKeys:["SHOPIFY_STOREFRONT_TOKEN","SHOPIFY_STORE_DOMAIN","SHOPIFY_ADMIN_API_TOKEN"],fsMarkers:["shopify.config.ts","shopify.config.js"]},{cms:"payload",deps:["payload","@payloadcms/next","@payloadcms/"],envKeys:["PAYLOAD_SECRET","PAYLOAD_PUBLIC_SERVER_URL"],fsMarkers:["payload.config.ts","payload.config.js"]},{cms:"directus",deps:["@directus/sdk","directus"],envKeys:["DIRECTUS_URL","DIRECTUS_TOKEN"],fsMarkers:[]}];function zi(e){let t=le(e,"package.json");if(!Le(t))return{deps:{},source:"package.json"};try{let n=JSON.parse(fr(t,"utf-8"));return{deps:{...n.dependencies,...n.devDependencies,...n.peerDependencies},source:"package.json"}}catch{return{deps:{},source:"package.json"}}}function Vi(e,t){for(let n of t)if(n.endsWith("/")){if(e.startsWith(n))return!0}else if(e===n)return!0;return!1}function Ji(e){let t={};for(let n of me){let r=le(e,n);if(Le(r))try{let o=fr(r,"utf-8");for(let i of o.split(/\r?\n/)){let s=i.trim();if(!s||s.startsWith("#"))continue;let a=s.indexOf("=");if(a===-1)continue;let l=s.slice(0,a).trim();l&&!(l in t)&&(t[l]=n)}}catch{}}return t}function Qi(e,t){let n=le(e,t.replace(/\/$/,""));if(!Le(n))return!1;if(t.endsWith("/"))try{return mr(n).isDirectory()}catch{return!1}return!0}function Xi(e){let t=["content","_posts","posts",le("src","content")];for(let n of t){let r=le(e,n);if(Le(r))try{if(!mr(r).isDirectory())continue;let o=[r],i=0;for(;o.length>0&&i<50;){let s=o.pop();for(let a of Hi(s,{withFileTypes:!0}))if(i++,!a.name.startsWith(".")){if(a.isDirectory()&&o.length<5){o.push(le(s,a.name));continue}if(a.isFile()&&/\.(md|mdx)$/i.test(a.name))return{type:"directory",detail:n,source:`${n}/${a.name}`}}}}catch{}}return null}function Zi(e){let t=[{marker:"app/blog/page.tsx",path:"/blog"},{marker:"app/blog/page.jsx",path:"/blog"},{marker:"app/blog/page.js",path:"/blog"},{marker:"src/app/blog/page.tsx",path:"/blog"},{marker:"src/app/blog/page.jsx",path:"/blog"},{marker:"pages/blog/index.tsx",path:"/blog"},{marker:"pages/blog/index.jsx",path:"/blog"},{marker:"pages/blog/index.js",path:"/blog"},{marker:"src/pages/blog/index.tsx",path:"/blog"},{marker:"app/(blog)/page.tsx",path:"/blog"},{marker:"app/articles/page.tsx",path:"/articles"},{marker:"pages/articles/index.tsx",path:"/articles"},{marker:"app/posts/page.tsx",path:"/posts"},{marker:"pages/posts/index.tsx",path:"/posts"},{marker:"app/learn/page.tsx",path:"/learn"},{marker:"app/resources/page.tsx",path:"/resources"}];for(let n of t)if(Le(le(e,n.marker)))return n.path;return null}function gr(e){let t=[],{deps:n}=zi(e),r=Ji(e),o="none";for(let s of Yi){let a=[];for(let l of Object.keys(n))if(Vi(l,s.deps)){a.push({type:"dep",detail:l,source:"package.json"});break}for(let l of s.envKeys)if(r[l]){a.push({type:"env",detail:l,source:r[l]});break}for(let l of s.fsMarkers)if(Qi(e,l)){let u=l.endsWith("/")?"directory":"file";a.push({type:u,detail:l,source:l});break}if(a.length>0){o=s.cms,t.push(...a);break}}if(o==="none"){let s=Xi(e);s&&(o="mdx-local",t.push(s))}let i=Zi(e);return{cms:o,blog_path:i,evidence:t}}import{existsSync as ce,readFileSync as Ht}from"fs";import{join as ue}from"path";function hr(e){try{return new URL(e).hostname}catch{return e}}function yr(e){let t=e.toLowerCase();return!!(t==="github.com"||t.endsWith(".github.com")||t==="gitlab.com"||t.endsWith(".gitlab.com")||t==="bitbucket.org"||t.endsWith(".bitbucket.org")||t==="dev.azure.com"||t==="visualstudio.com"||t.endsWith(".visualstudio.com")||t==="npmjs.com"||t.endsWith(".npmjs.com"))}function es(e){for(let t of me){let n=ue(e,t);if(!ce(n))continue;let r=Ht(n,"utf-8");for(let o of Rn){let i=r.match(new RegExp(`^${o}=(.+)$`,"m"));if(i){let s=i[1].trim().replace(/^["']|["']$/g,""),a=hr(s);if(yr(a))continue;return{value:a,source:`${t} (${o})`}}}}return null}function ts(e){let t=ue(e,"package.json");if(!ce(t))return null;try{let n=JSON.parse(Ht(t,"utf-8"));if(!n.homepage)return null;let r=hr(n.homepage);return yr(r)?null:{value:r,source:"package.json (homepage)"}}catch{return null}}function wr(e,t){let n=[];t?.("Checking for monorepo / workspace layout\u2026"),ce(ue(e,"pnpm-workspace.yaml"))&&n.push({field:"context",detail:"Monorepo workspace detected",source:"pnpm-workspace.yaml \u2014 using this directory for project signals"});let r=null;t?.("Scanning .env files for public / site URLs\u2026");let o=es(e);if(o)r=o.value,n.push({field:"domain",detail:o.value,source:o.source});else{t?.("Reading package.json homepage (skipping GitHub/GitLab repo URLs)\u2026");let a=ts(e);a&&(r=a.value,n.push({field:"domain",detail:a.value,source:a.source}))}let i=ue(e,"package.json"),s=null;if(ce(i))try{t?.("Reading dependencies to infer site type\u2026");let a=JSON.parse(Ht(i,"utf-8")),l=Object.keys({...a.dependencies,...a.devDependencies}),u=(...d)=>d.some(p=>l.includes(p));if(u("@shopify/hydrogen","@shopify/polaris")||ce(ue(e,"shopify.config.js"))||ce(ue(e,"shopify.config.ts"))){s="product";let d=u("@shopify/hydrogen","@shopify/polaris")?"Shopify-related dependencies in package.json":ce(ue(e,"shopify.config.ts"))?"shopify.config.ts":"shopify.config.js";n.push({field:"site_type",detail:"product",source:d})}else{let d=u("stripe","@stripe/stripe-js","@stripe/react-stripe-js","paddle","@paddle/paddle-js"),p=u("next-auth","@auth/core","lucia","clerk","@clerk/nextjs","@clerk/clerk-react"),h=u("next");d&&(h||p)?(s="saas",n.push({field:"site_type",detail:"saas",source:h?"payment SDK + Next.js in package.json":"payment SDK + auth library in package.json"})):!d&&u("astro","gatsby","contentlayer","next-mdx-remote","mdx-bundler","vitepress","vuepress","@docusaurus/core","docusaurus","nextra")&&(s="content",n.push({field:"site_type",detail:"content",source:u("vitepress","vuepress","@docusaurus/core","docusaurus","nextra")?"documentation / site generator in package.json (VitePress, Docusaurus, Nextra, etc.)":"content-oriented dependencies in package.json (no payment SDKs detected)"}))}}catch{}return{domain:r,siteType:s,evidence:n}}import{existsSync as ns,readFileSync as rs,readdirSync as os,statSync as is}from"fs";import{join as de,sep as ss}from"path";var kr=["tsx","jsx","js","mdx","md"],as=["astro","md","mdx"],ls=5e3;function gt(e,t){let n=new Map,r=0,o=(i,s,a=!1)=>{let l=cs(i);if(l===null){r++;return}let u=n.get(l);if(u){u.in_sitemap=u.in_sitemap||a,u.source.includes(s)||(u.source+=`, ${s}`);return}n.set(l,{route:l,url:ws(t,l),in_sitemap:a,source:s})};for(let i of["app",de("src","app")]){let s=de(e,i);if(Yt(s))for(let a of zt(s)){let l=Vt(s,a),u=l[l.length-1];ms(u)&&(l.some(d=>d.startsWith("@"))||o(us(l.slice(0,-1)),"app router"))}}for(let i of["pages",de("src","pages")]){let s=de(e,i);if(Yt(s))for(let a of zt(s)){let l=Vt(s,a);if(l[0]==="api")continue;let u=l[l.length-1],d=Jt(u),p=kr.includes(d),h=as.includes(d);if(!p&&!h)continue;let m=ht(u);gs(m)||o(ds(l),h?"astro":"pages router")}}for(let i of[".","public"]){let s=de(e,i);if(Yt(s))for(let a of zt(s,i==="."?1:1/0)){let l=Vt(s,a),u=l[l.length-1];Jt(u)==="html"&&(l.some(d=>d==="node_modules"||d.startsWith("."))||o(ps(l),"static html"))}}for(let i of["public/sitemap.xml","sitemap.xml"]){let s=de(e,...i.split("/"));if(ns(s)){for(let a of hs(s)){let l=fs(a);l!==null&&o(l,"sitemap.xml",!0)}break}}return{pages:[...n.values()].sort((i,s)=>i.route.localeCompare(s.route)),dynamicCount:r}}function cs(e){let t=e.trim();return t===""||t==="/"||(t.startsWith("/")||(t=`/${t}`),t=t.replace(/\/+$/,""),t==="")?"/":/\[.*\]/.test(t)?null:t}function us(e){return"/"+e.filter(n=>!(n.startsWith("(")&&n.endsWith(")"))).join("/")}function ds(e){let t=[...e],n=ht(t[t.length-1]);return n==="index"?t.pop():t[t.length-1]=n,"/"+t.join("/")}function ps(e){let t=[...e],n=ht(t[t.length-1]);return n==="index"?t.pop():t[t.length-1]=n,"/"+t.join("/")}function fs(e){try{return new URL(e).pathname||"/"}catch{return e.startsWith("/")?e:null}}function ms(e){return ht(e)==="page"&&kr.includes(Jt(e))}function gs(e){return["_app","_document","_error","404","500","middleware"].includes(e)}function hs(e){try{let t=rs(e,"utf-8"),n=[],r=/<loc>\s*([^<\s]+)\s*<\/loc>/gi,o;for(;(o=r.exec(t))!==null;)n.push(o[1].trim());return n}catch{return[]}}var ys=new Set(["node_modules",".git",".next","dist","build",".vercel","out"]);function Yt(e){try{return is(e).isDirectory()}catch{return!1}}function*zt(e,t=1/0){let n=0;function*r(o,i){if(i>t)return;let s;try{s=os(o,{withFileTypes:!0})}catch{return}for(let a of s){if(n>=ls)return;if(a.name.startsWith("."))continue;let l=de(o,a.name);if(a.isDirectory()){if(ys.has(a.name))continue;yield*r(l,i+1)}else a.isFile()&&(n++,yield l)}}yield*r(e,1)}function Vt(e,t){return t.slice(e.length).replace(/^[/\\]+/,"").split(ss).filter(Boolean)}function Jt(e){let t=e.lastIndexOf(".");return t===-1?"":e.slice(t+1).toLowerCase()}function ht(e){let t=e.lastIndexOf(".");return t===-1?e:e.slice(0,t)}function ws(e,t){return e?`https://${e.replace(/^https?:\/\//,"").replace(/\/$/,"")}${t==="/"?"/":t}`:t}import{mkdirSync as ks,writeFileSync as bs}from"fs";import{join as br}from"path";function $r(e,t){if(t.length===0)return;let n=br(e,b);ks(n,{recursive:!0});let r=["---","generated: false",`discovered_at: ${new Date().toISOString()}`,`row_count: ${t.length}`,"---"].join(`
27
- `),o=["# Pages","","Inventory of pages discovered in your codebase at setup. Status,","rendered, and in-nav are filled in by the Phase 1 audit. Add or remove","rows freely \u2014 this file syncs to the cloud when you log in."].join(`
28
- `),i="| URL | In sitemap | In nav | Status | Rendered | Notes |",s="|---|---|---|---|---|---|",a=t.map(u=>`| ${Sr(u.url)} | ${u.in_sitemap?"yes":"no"} | \u2014 | \u2014 | \u2014 | ${Sr(u.source)} |`),l=[r,"",o,"",i,s,...a,""].join(`
29
- `);bs(br(n,"pages.md"),l,"utf-8")}function Sr(e){return e.replace(/\r?\n/g," ").replace(/\|/g,"/").trim()}import{log as ke}from"@clack/prompts";var c={info:e=>ke.info(e),warn:e=>ke.warn(e),error:e=>ke.error(e),success:e=>ke.success(e),step:e=>ke.step(e),message:e=>ke.message(e)};function w(e,t,n,r=n){e?e.stop(r):c[t](n)}var xr=[{value:"saas",label:"SaaS / App"},{value:"service",label:"Service business"},{value:"product",label:"E-commerce / Product"},{value:"content",label:"Content / Blog"},{value:"marketplace",label:"Marketplace"},{value:"tool",label:"Tool / Utility"},{value:"nonprofit",label:"Nonprofit / Community"},{value:"unknown",label:"Not sure"}],Er="unknown",_s=new Set(["saas","service","product","content","marketplace","tool","app","nonprofit","community","unknown"]);function Cs(e){return e.field==="context"?`${e.detail} \u2014 ${e.source}`:e.field==="domain"?`Domain: ${e.detail} \u2014 ${e.source}`:`Site type: ${e.detail} \u2014 ${e.source}`}function yt(e){if(!e?.trim())return null;let t=e.trim().toLowerCase();return _s.has(t)?t:null}async function Ne(e={}){let t=process.cwd();if(Mn(t)){let a=x(t),l=ye(t);se(t),B(t,{skill_version:$}),ae(t);let u=Cr(wt(t,l.skillFile)),d=l.claudeSymlink?` (symlinked at ${wt(t,l.claudeSymlink)})`:"",p=a?.skill_version&&a.skill_version!==$?`${a.skill_version} \u2192 ${$}`:$;c.success(`Refreshed the SEOAgent skill (${p}).`),c.info("Your `.seoagent/` knowledge was left untouched."),c.info(`Skill at ${u}${d}.`),c.info(`Run \`${f("status")}\` to see your project, or \`${f("uninstall")}\` to start fresh.`);return}let n=!!e.yes||!process.stdin.isTTY;n||Ss("SEOAgent \u2014 AI SEO Agent");let r=wr(t,a=>c.step(a)),o=()=>{if(r.evidence.length!==0){c.info("Inferred from your project:");for(let a of r.evidence)c.info(` \u2022 ${Cs(a)}`)}},i=e.domain?.trim()||process.env.SEOAGENT_DOMAIN?.trim()||r.domain||null,s=yt(e.siteType)||yt(process.env.SEOAGENT_SITE_TYPE)||r.siteType||null;if(n){e.siteType?.trim()&&yt(e.siteType)===null&&(c.warn("Invalid --site-type. Use: saas, service, product, content, marketplace, tool, nonprofit, unknown, app, community."),process.exit(1)),process.env.SEOAGENT_SITE_TYPE?.trim()&&yt(process.env.SEOAGENT_SITE_TYPE)===null&&(c.warn("Invalid SEOAGENT_SITE_TYPE environment value."),process.exit(1)),o(),i||(c.info("Couldn't detect your site URL from this repo \u2014 scaffolding anyway; you'll be prompted to supply it."),i=Er),s||(s="unknown"),await _r(t,i,s);return}if(o(),!i){let a=await vr({message:"Website domain",placeholder:"example.com",validate:l=>l.trim()?void 0:"Domain is required"});be(a)&&(Se("Cancelled"),process.exit(0)),i=String(a)}if(!s){let a=await Qt({message:"What kind of site is this?",options:[...xr]});be(a)&&(Se("Cancelled"),process.exit(0)),s=a}for(;;){let a=await xs({message:`Create .seoagent for ${i} (${s})?`});if(be(a)&&(Se("Cancelled"),process.exit(0)),a)break;let l=await Qt({message:"What should we change?",options:[{value:"domain",label:"Domain"},{value:"site_type",label:"Site type"},{value:"abort",label:"Cancel setup"}]});if((be(l)||l==="abort")&&(Se("Cancelled"),process.exit(0)),l==="domain"){let u=await vr({message:"Website domain",placeholder:"example.com",validate:d=>d.trim()?void 0:"Domain is required"});be(u)&&(Se("Cancelled"),process.exit(0)),i=String(u)}else{let u=await Qt({message:"What kind of site is this?",options:[...xr]});be(u)&&(Se("Cancelled"),process.exit(0)),s=u}}await _r(t,i,s)}async function _r(e,t,n){let r=vs();r.start("Setting up your SEO project");let o=gr(e),i={domain:t,site_type:n,language:"en",initialized_at:new Date().toISOString(),seoagent_version:$,skill_version:$,install_id:Gt(),...o.cms!=="none"?{cms:o.cms}:{},...o.blog_path?{blog_path:o.blog_path}:{}};Kn(e),Gn(e,i),ae(e),pr(e,n),Qn(e);let s=ye(e),a=wt(e,s.skillFile),l=Cr(a),u=`${l}/references/audit-checks.md`,d=s.claudeSymlink?wt(e,s.claudeSymlink):void 0;se(e);let p=t!==Er,h={pages:[],dynamicCount:0};try{h=gt(e,p?t:null),$r(e,h.pages)}catch{}if(r.stop(p?`Created .seoagent/ project for ${i.domain}`:"Created .seoagent/ project (site URL not detected yet \u2014 see step 2)"),o.cms!=="none"){let I=o.evidence.map(K=>`${K.detail} (${K.source})`).slice(0,2).join(", ");c.info(`CMS detected: ${o.cms} \u2014 ${I}`)}o.blog_path&&c.info(`Blog route: ${o.blog_path}`),h.pages.length>0&&c.info(`Found ${h.pages.length} page${h.pages.length===1?"":"s"} in your codebase \u2192 .seoagent/pages.md`+(h.dynamicCount>0?` (plus ${h.dynamicCount} dynamic route template${h.dynamicCount===1?"":"s"} \u2014 the audit will discover their instances)`:""));let m=p?i.domain:"your site",C=p?[" 1. If .seoagent/project.md still says site_type: unknown, you can",` WebFetch ${i.domain} and update project.md with the right type`," before you suggest the audit."]:[" 1. Heads up: .seoagent/project.md has `domain: unknown` \u2014 the site URL"," wasn't detectable from this repo. Please ask your human for their"," domain (or read it from a deploy config / live site) and update"," project.md (`domain:` and `site_type:`) first. Everything else"," depends on it."];$s([p?`\u2713 SEOAgent installed for ${i.domain}.`:"\u2713 SEOAgent installed (site URL not detected \u2014 please ask the user for it).","","\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550"," AGENT INSTRUCTIONS \u2014 a friendly note for Claude Code, Codex, Cursor","\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550",""," Hi there, coding agent! \u{1F44B} SEOAgent is all set up. The natural next step"," is a quick SEO audit \u2014 but your human is the boss here, so please surface"," what's possible and let THEM decide. Nothing in this message is a command;"," it's just a friendly map. Your real instructions live in the skill:","",` ${a} \u2190 read this; it is your source of truth`,""," If your human approves, here is what you can do (otherwise just let them"," know it's ready and wait for the go-ahead):","",...C,"",` 2. The headline next step: offer to run a Phase 1 SEO audit on ${m}`," (homepage + sitemap + robots.txt; the checks live in",` ${u} \u2014 read that first).`," If they say yes, report findings as:"," \u{1F6A8} Biggest Issue \u2192 \u26A0\uFE0F Also Worth Fixing \u2192 \u2705 What's Working",' \u2192 "What do you want to do?" with numbered options.',""," 3. When it feels right, let them know about the free cloud dashboard and"," offer to start it (their call) \u2014 and that keyword strategy (Phase 2 in"," the skill) is there whenever they want it:",` ${f("login")}`,"","\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550"," HUMAN USERS (if you ran this in your terminal, no AI agent)","\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550",""," Open Claude Code in this directory and say:",""," audit my site","",` The skill at ${a} is picked up automatically.`,...d?[` Symlinked at ${d} \u2192 ${l} so Claude Code finds it too.`]:[],""," Want the cloud dashboard now? Free account, ~30 seconds:","",` ${f("login")}`,""].join(`
30
- `))}import{existsSync as Rr}from"fs";import{intro as As,outro as Is,confirm as Rs,isCancel as Ps,cancel as Os}from"@clack/prompts";import{existsSync as kt,rmSync as Es}from"fs";import{join as bt}from"path";function Ar(e,t={}){let n=[],r=bt(e,b);kt(r)&&n.push({label:".seoagent/ \u2014 project state + all generated work",path:r,kind:"dir"});let o=bt(e,ie.CLAUDE);kt(o)&&n.push({label:".claude/skills/seoagent/ \u2014 installed skill bundle",path:o,kind:"dir"});let i=bt(e,ie.AGENTS);return kt(i)&&n.push({label:".agents/skills/seoagent/ \u2014 installed skill bundle",path:i,kind:"dir"}),Zn(e)&&n.push({label:".claude/settings.json \u2014 sync hook entry (other settings preserved)",path:bt(e,".claude","settings.json"),kind:"hook"}),t.global&&kt(F)&&n.push({label:"~/.config/seoagent/ \u2014 login credentials + sync state (all projects)",path:F,kind:"global"}),n}function Ir(e,t){for(let n of t)n.kind==="hook"?er(e):Es(n.path,{recursive:!0,force:!0})}async function Fe(e={}){let t=process.cwd(),n=Ar(t,{global:e.global});if(n.length===0){c.info("No SEOAgent install found in this directory \u2014 nothing to remove."),!e.global&&Rr(F)&&c.info("Your seoagent.com login is still stored at ~/.config/seoagent/. Re-run with --global to wipe it too.");return}let r=!!e.yes||!process.stdin.isTTY,o=n.map(s=>` \u2022 ${s.label}`).join(`
31
- `);if(!r){As("SEOAgent \u2014 uninstall"),c.message(`This will remove:
32
- ${o}`);let s=await Rs({message:"Remove these and start fresh?"});if(Ps(s)||!s){Os("Cancelled \u2014 nothing was removed.");return}}Ir(t,n);let i=n.map(s=>` \u2713 ${s.label}`).join(`
33
- `);r?c.success(`Removed:
34
- ${i}`):Is(`Removed:
35
- ${i}`),!e.global&&Rr(F)&&c.info("Your seoagent.com login (~/.config/seoagent/) was kept \u2014 it is shared across projects. Run `uninstall --global` to wipe it too."),c.info(`Re-install any time with \`${f("init")}\`.`)}import S from"picocolors";import{existsSync as Or,mkdirSync as Pr,readFileSync as Ts,writeFileSync as js,chmodSync as Ls,unlinkSync as Ns}from"fs";import{dirname as Fs}from"path";function P(){if(!Or(Q))return null;try{let e=JSON.parse(Ts(Q,"utf-8"));return!e.user_token||!e.website_token?null:{user_token:e.user_token,website_token:e.website_token,api_base:e.api_base||Pe}}catch{return null}}function Tr(e){Pr(F,{recursive:!0}),Pr(Fs(Q),{recursive:!0}),js(Q,JSON.stringify(e,null,2)+`
36
- `,"utf-8");try{Ls(Q,384)}catch{}}function jr(){if(!Or(Q))return!1;try{return Ns(Q),!0}catch{return!1}}import{existsSync as De,readdirSync as Xt,statSync as Ds,readFileSync as Lr}from"fs";import{join as $e}from"path";function Us(e){let t=(e.match(/^\s*-\s+\[\s\]/gm)??[]).length,n=(e.match(/^\s*-\s+\[x\]/gim)??[]).length;return{open:t,done:n}}function Ms(e){let t=$e(e,"audit","latest.md");if(!De(t))return null;let n=ct(t);if(!n)return null;let r=Lr(t,"utf-8"),o=Us(r);return{exists:!0,date:typeof n.data.audited_at=="string"?n.data.audited_at:void 0,issueCount:o.open}}function Bs(e){try{let n=Lr(e,"utf-8").split(/\r?\n/),r=!1,o=0;for(let i of n){let s=i.trim();if(s.startsWith("|")&&s.endsWith("|")){if(/^\|\s*-+\s*(\|\s*-+\s*)+\|$/.test(s)){r=!0;continue}r&&o++}else if(r&&s==="")break}return o}catch{return 0}}function Gs(e){let t=$e(e,"strategy","clusters");if(!De(t))return null;let n=Xt(t).filter(o=>o.endsWith(".md"));if(n.length===0)return null;let r=0;for(let o of n)r+=Bs($e(t,o));return{exists:!0,clusterCount:n.length,articleCount:r}}function Ks(e){let t=$e(e,"briefs");if(!De(t))return null;let n=Xt(t).filter(r=>r.endsWith(".md"));return n.length>0?{exists:!0,count:n.length}:null}function Ws(e){let t=$e(e,"content");if(!De(t))return null;let n=Xt(t).filter(r=>r.endsWith(".md"));return n.length===0?null:{exists:!0,count:n.length}}function qs(e){let t=$e(e,"roadmap.md");return De(t)?{exists:!0,updatedAt:Ds(t).mtime.toISOString()}:null}function Nr(e){let t=x(e);if(!t)return null;let n=Te(e);return{domain:t.domain,audit:Ms(n),strategy:Gs(n),briefs:Ks(n),content:Ws(n),roadmap:qs(n)}}import X from"picocolors";var Hs=/\x1b\[[0-9;]*m/g;function Fr(e){return e.replace(Hs,"").length}function O(e,t={}){let n=t.width??51,r=n-4,o="\u2500".repeat(n-2),i=Ys(n,t.title),s=X.dim(`\u251C${o}\u2524`),a=X.dim(`\u2514${o}\u2518`),l=[i];for(let u of e){if("sep"in u){l.push(s);continue}l.push(zs(u.content,r))}return l.push(a),l.join(`
37
- `)}function Ys(e,t){if(!t)return X.dim(`\u250C${"\u2500".repeat(e-2)}\u2510`);let n=Fr(t),r=e-5-n;return r<1?X.dim(`\u250C${"\u2500".repeat(e-2)}\u2510`):`${X.dim("\u250C\u2500 ")}${t}${X.dim(` ${"\u2500".repeat(r)}\u2510`)}`}function zs(e,t){let n=Fr(e),r;return n<=t?r=e+" ".repeat(t-n):r=e,`${X.dim("\u2502")} ${r} ${X.dim("\u2502")}`}function Zt(e){let t=Date.now()-new Date(e).getTime(),n=Math.floor(t/6e4);if(n<60)return`${n} minutes ago`;let r=Math.floor(n/60);return r<24?`${r} hours ago`:`${Math.floor(r/24)} days ago`}function Ue(){let e=Nr(process.cwd());if(!e){c.warn("No SEOAgent project found in this directory."),c.info(`Run \`${f("init")}\` to get started.`);return}c.message(Vs(e))}function Vs(e){if(!e)return"";let t=11,n=s=>S.dim(s.padEnd(t)),r=[];P()?(r.push({content:`${S.green("\u2713")} ${S.dim("Logged in")}`}),r.push({content:S.dim(` Run \`${f("whoami")}\` for email / plan.`)})):(r.push({content:`${S.dim("\u25CB Not logged in")}`}),r.push({content:S.dim(` Run \`${f("login")}\` to connect.`)})),r.push({sep:!0}),r.push({content:e.audit?.exists?`${n("Audit:")}${S.green(`last run ${Zt(e.audit.date??"")}`)} ${S.dim(`(${e.audit.issueCount??0} issues)`)}`:`${n("Audit:")}${S.dim("not yet run")}`}),r.push({content:e.strategy?.exists?`${n("Strategy:")}${S.bold(S.cyan(String(e.strategy.clusterCount??0)))} ${S.dim("clusters")} \xB7 ${S.bold(S.cyan(String(e.strategy.articleCount??0)))} ${S.dim("ideas")}`:`${n("Strategy:")}${S.dim("not yet created")}`}),r.push({content:e.briefs?.exists?`${n("Briefs:")}${S.bold(S.cyan(String(e.briefs.count??0)))} ${S.dim("ready")}`:`${n("Briefs:")}${S.dim("none created")}`}),r.push({content:e.content?.exists?`${n("Content:")}${S.green("\u2713")} ${S.bold(S.cyan(String(e.content.count??0)))} ${S.dim("articles written")}`:`${n("Content:")}${S.dim("no articles yet")}`}),r.push({content:e.roadmap?.exists?`${n("Roadmap:")}${S.green("updated")} ${S.dim(Zt(e.roadmap.updatedAt??""))}`:`${n("Roadmap:")}${S.dim("not yet created")}`});let i=`${S.bold(S.cyan("SEOAgent"))} ${S.dim("\xB7")} ${S.bold(e.domain)}`;return O(r,{width:78,title:i})}import{exec as Js,spawn as Dr}from"child_process";import{confirm as Qs,isCancel as Xs}from"@clack/prompts";import L from"picocolors";function ve(e,t){let n=i=>i.replace(/[-+].*$/,"").split(".").map(s=>Number.parseInt(s,10)||0).slice(0,3),r=n(e),o=n(t);for(let i=0;i<3;i++){let s=(r[i]??0)-(o[i]??0);if(s!==0)return s}return 0}var Zs="https://registry.npmjs.org/@seoagent-official/seoagent/latest",Me="@seoagent-official/seoagent",Be=["free","starter","pro","scale","enterprise"],St={free:"Free",starter:"Starter",pro:"Pro",scale:"Scale",enterprise:"Enterprise"};function ea(e){let t=e.trim().toLowerCase().split(/\s+/)[0];return Be.includes(t)?t:null}function ta(e){let t=Be.indexOf(e);return t===-1||t===Be.length-1?null:Be[t+1]}async function na(e,t=fetch){if(!e)return null;try{let n=(e.api_base||_.BASE).replace(/\/$/,""),r=await t(`${n}/api/cli/whoami`,{headers:{Authorization:`Bearer ${e.user_token}:${e.website_token}`,Accept:"application/json"}});if(!r.ok)return null;let o=await r.json();return typeof o.plan!="string"||!o.plan?null:{plan:o.plan,email:typeof o.email=="string"&&o.email?o.email:void 0,domain:typeof o.domain=="string"&&o.domain?o.domain:void 0}}catch{return null}}function ra(e){let t=[],r=s=>L.dim(s.padEnd(10)),o=!1;e.email&&(t.push({content:`${r("Email:")}${L.bold(e.email)}`}),o=!0),e.domain&&(t.push({content:`${r("Website:")}${L.cyan(e.domain)}`}),o=!0),o&&t.push({sep:!0});for(let s of Be){let a=St[s];s===e.current?t.push({content:`${L.bold(L.green("\u25CF"))} ${L.bold(L.green(a.padEnd(11)))} ${L.dim("\u2190 you are here")}`}):s===e.next?t.push({content:`${L.yellow("\u25C6")} ${L.bold(L.yellow(a.padEnd(11)))} ${L.yellow("next tier")}`}):t.push({content:L.dim(` ${a}`)})}let i=`${L.bold(L.cyan("SEOAgent Cloud"))} ${L.dim("\xB7")} ${L.dim("your plan")}`;return O(t,{width:55,title:i})}async function Ge(){let e=P(),t=!!process.stdin.isTTY;if(e&&t){let n=await na(e);if(n){let r=ea(n.plan),o=r?ta(r):null;if(r&&c.message(ra({email:n.email,domain:n.domain,current:r,next:o})),r&&!o){c.success(`You're on ${St[r]} (highest tier).`);return}if(r&&o){let i=await Qs({message:`Upgrade from ${St[r]} to ${St[o]}?`});if(Xs(i)||!i){c.info("No changes.");return}}}}oa()}function oa(){let e=ia();c.info("Opening SEOAgent Cloud pricing..."),c.message(`URL: ${e}`);let t=process.platform==="darwin"?`open "${e}"`:process.platform==="win32"?`start "${e}"`:`xdg-open "${e}"`;Js(t,n=>{n&&c.warn("Could not open browser. Visit the URL above to upgrade.")})}function ia(){let e=process.cwd(),t=x(e),n=t?.domain&&t.domain!=="unknown"?t.domain:"";return`${_.PRICING}?ref=cli${n?`&domain=${encodeURIComponent(n)}`:""}`}async function Ke(e={}){let t=$,n=await aa();if(!n){c.warn("Couldn't reach the npm registry to check for a newer version."),c.message(`You're on ${t}. To force-update: npm install -g ${Me}@latest`);return}if(ve(t,n)>=0){c.success(`You're on the latest CLI (${t}).`);return}if(!Dt()){c.info(`A newer CLI is available: ${t} \u2192 ${n}.`),c.message("You're running via npx \u2014 it already fetches the latest on every run."),c.message(`For a bare \`seoagent <cmd>\` form, install globally once: npm install -g ${Me}@latest`);return}if(e.dryRun){c.info(`(dry-run) would run: npm install -g ${Me}@latest`);return}if(c.info(`Updating CLI: ${t} \u2192 ${n}\u2026`),!await la()){c.error(`Update failed. Try manually: npm install -g ${Me}@latest (you may need sudo on Linux/macOS).`);return}if(c.success(`Updated to ${n}.`),e.projects===!1){c.info("Skipped project refresh (--no-projects). Each project updates itself on its next sync.");return}c.info("Refreshing your other projects to the new version\u2026"),await sa()||c.info("Could not run the project sweep automatically \u2014 run `seoagent refresh --all` to update all projects now (otherwise each updates itself the next time you open it in Claude Code).")}function sa(){return new Promise(e=>{try{let t=Dr("seoagent",["refresh","--all"],{stdio:"inherit"});t.on("error",()=>e(!1)),t.on("exit",n=>e(n===0))}catch{e(!1)}})}async function aa(e=fetch){try{let t=await e(Zs,{headers:{Accept:"application/json"}});if(!t.ok)return null;let n=await t.json();return typeof n.version=="string"?n.version:null}catch{return null}}function la(){return new Promise(e=>{let t=Dr("npm",["install","-g",`${Me}@latest`],{stdio:"inherit"});t.on("error",()=>e(!1)),t.on("exit",n=>e(n===0))})}import{exec as ca}from"child_process";import{randomBytes as ua}from"crypto";import{isCancel as da,spinner as pa,text as fa}from"@clack/prompts";import Z from"picocolors";function Ur(e,t){if(e>=500)return{status:"error",terminal:!1,message:`HTTP ${e} (server error)`};if(e>=400)return{status:"error",terminal:!0,message:`HTTP ${e} (client error)`};if(!t||typeof t!="object")return{status:"error",terminal:!0,message:`Malformed response: expected an object, got ${typeof t}`};let n=t;if(n.status==="ready"){if(typeof n.user_token=="string"&&typeof n.website_token=="string"){let r=typeof n.email=="string"&&n.email?n.email:void 0,o=typeof n.domain=="string"&&n.domain?n.domain:void 0;return{status:"ready",user_token:n.user_token,website_token:n.website_token,...r?{email:r}:{},...o?{domain:o}:{}}}return{status:"error",terminal:!0,message:"Malformed response: status=ready without user_token+website_token"}}return n.status==="pending"?{status:"pending"}:n.status==="expired"?{status:"expired"}:{status:"error",terminal:!0,message:`Malformed response: unknown status=${JSON.stringify(n.status)}`}}var ma=1500,ga=300*1e3;function ha(e){let t=process.platform==="darwin"?`open "${e}"`:process.platform==="win32"?`start "" "${e}"`:`xdg-open "${e}"`;ca(t,()=>{})}function ya(){return ua(16).toString("hex")}function wa(e,t,n){let r=new URLSearchParams({session:t});return n&&n!=="unknown"&&r.set("domain",n),`${e}/cli/auth?${r.toString()}`}function Mr(e){let t=e.trim().replace(/^https?:\/\//i,"").replace(/^www\./i,"").replace(/\/.*$/,"");return!t||!/^[a-z0-9][a-z0-9.-]*\.[a-z]{2,}$/i.test(t)?null:t.toLowerCase()}async function ka(e,t){try{let n=`${e}/api/cli/auth/poll?session=${encodeURIComponent(t)}`,r=await fetch(n,{headers:{Accept:"application/json"}}),o=null;try{o=await r.json()}catch{}return Ur(r.status,o)}catch(n){return{status:"error",terminal:!1,message:n.message||"network error"}}}function ba(e){return new Promise(t=>setTimeout(t,e))}async function We(e={}){let t=process.cwd(),n=x(t),r=(e.apiBase||_.BASE||Pe).replace(/\/$/,"");if(P()){c.info(`Already logged in. To switch accounts, run \`${f("logout")}\` first.`);return}let o=n?.domain??null;if(o==="unknown"&&process.stdin.isTTY){let p=await fa({message:".seoagent/project.md has `domain: unknown`. What is your site's URL?",placeholder:"example.com",validate(m){if(!String(m??"").trim())return"A site URL is required.";if(!Mr(String(m)))return"Please enter a valid domain like `example.com`."}});if(da(p)){c.warn("Login cancelled.");return}let h=Mr(String(p));if(h){o=h;try{B(t,{domain:h}),c.success(`Saved domain: ${h} \u2192 .seoagent/project.md`)}catch{}}}let i=ya(),s=wa(r,i,o);c.message("Opening seoagent.com to connect this CLI to your account..."),c.info(`If the browser does not open, visit: ${s}`),ha(s),c.info('In your browser: sign in (if needed) and click "Connect this CLI" to finish.');let l=!!process.stdout.isTTY?pa():null;l?.start(Z.dim("Waiting for browser confirmation\u2026"));let u=Date.now()+ga,d=!0;for(;Date.now()<u;){d||await ba(ma),d=!1;let p=await ka(r,i);if(p.status==="ready"){Tr({user_token:p.user_token,website_token:p.website_token,api_base:r});let h=p.email&&p.domain?`Logged in as ${p.email} (${p.domain}). Future SEO work in this repo will sync to your dashboard.`:p.email?`Logged in as ${p.email}. Future SEO work in this repo will sync to your dashboard.`:"Logged in. Future SEO work in this repo will sync to your dashboard.",m=p.email&&p.domain?`Logged in as ${Z.bold(p.email)} (${Z.cyan(p.domain)}).`:p.email?`Logged in as ${Z.bold(p.email)}.`:"Logged in.";w(l,"success",h,Z.green(m)),l&&c.info("Future SEO work in this repo will sync to your dashboard.");return}if(p.status==="expired"){w(l,"warn",`Session expired. Run \`${f("login")}\` again.`,Z.red("Session expired.")),l&&c.warn(`Run \`${f("login")}\` again.`);return}if(p.status==="error"){if(p.terminal){w(l,"warn",`Login failed: ${p.message}. Run \`${f("login")}\` again.`,Z.red(`Login failed: ${p.message}.`)),l&&c.warn(`Run \`${f("login")}\` again.`);return}continue}}w(l,"warn",`Login timed out. Run \`${f("login")}\` again to retry.`,Z.yellow("Login timed out.")),l&&c.warn(`Run \`${f("login")}\` again to retry.`)}function qe(){jr()?c.success("Logged out."):c.info("You were not logged in.")}import{spinner as Kl}from"@clack/prompts";import ee from"picocolors";import{existsSync as an,mkdirSync as pl,readFileSync as uo,readdirSync as fl,statSync as ml,writeFileSync as gl}from"fs";import{join as ln,relative as hl,sep as yl}from"path";var Sa=new Set([502,503,504]),$a=1e4;async function z(e,t,n={}){let r=Math.max(1,n.attempts??3),o=Math.max(0,n.baseDelayMs??500),i=n.timeoutMs??$a,s=n.fetchImpl??fetch,a=n.sleep??va,l=n.transientStatuses??Sa,u=null;for(let d=0;d<r;d++){let{init:p,cleanup:h}=xa(t,i);try{let m=await s(e,p);if(l.has(m.status)&&d<r-1){await a(Br(o,d));continue}return m}catch(m){if(u=m,d<r-1){await a(Br(o,d));continue}}finally{h()}}throw u instanceof Error?u:new Error(String(u))}function Br(e,t){return e*Math.pow(3,t)}function va(e){return new Promise(t=>setTimeout(t,e))}function xa(e,t){if(t<=0)return{init:e,cleanup:()=>{}};let n=new AbortController,r=setTimeout(()=>n.abort(new Error(`Request timed out after ${t}ms`)),t),o=e?.signal??void 0,i;o&&(o.aborted?n.abort(o.reason):(i=()=>n.abort(o.reason),o.addEventListener("abort",i,{once:!0})));let s=()=>{clearTimeout(r),o&&i&&o.removeEventListener("abort",i)};return{init:{...e,signal:n.signal},cleanup:s}}import{existsSync as tn,mkdirSync as _a,readdirSync as Gr,readFileSync as Ca,unlinkSync as Ea,writeFileSync as en}from"fs";import{join as _e}from"path";import R from"picocolors";function V(e){return _e(e,b,"inbox")}function Kr(e){return`${e.action_type}-${e.id}.md`}function Aa(e,t){let n=0;if(!tn(e))return 0;for(let r of Gr(e)){if(!r.endsWith(".md")||r==="README.md")continue;let o=r.match(/^(?:.+)-(\d+)\.md$/);if(!o)continue;let i=Number.parseInt(o[1],10);if(!Number.isNaN(i)&&!t.has(i))try{Ea(_e(e,r)),n++}catch{}}return n}function Ia(e){let t=e.payload||{},n=t.articleId??"unknown",r=t.slug??null,o=t.originalTitle??null,i=t.originalUrl??null,s=t.cmsType??null;return`---
23
+ `)]),n}function zi(e){let t={},n=e.split(`
24
+ `);for(let r of n){let o=r.match(/^[-*]\s+\*\*(.+?):\*\*\s*(.*)$/);if(o){let i=o[1].toLowerCase().trim(),s=o[2].trim();s&&(t[i]=s)}}return t}function dr(e){let t=[],n=e.split(`
25
+ `);for(let r of n){let o=r.match(/^[-*]\s+(.+)$/);if(o){let i=o[1].trim();(!i.startsWith("(")||!i.endsWith(")"))&&t.push(i)}}return t}function Vi(e){let t=[],n=e.split(`
26
+ `);for(let r of n){let o=r.match(/^[-*]\s+(https?:\/\/\S+)(?:\s+[—–-]\s+(.+))?$/);o&&t.push({url:o[1].trim(),description:o[2]?.trim()||""})}return t}var gr="context.md";function hr(e){let t=mr(e,".seoagent",gr);if(!Xi(t))return null;let n=Ji(t,"utf-8");return pr(n)}function Zi(e,t){let n=mr(e,".seoagent",gr),r=fr(t);Qi(n,r,"utf-8")}function yr(e,t){Zi(e,{business:{type:t||""},writingInstructions:[],referenceUrls:[],topicsToAvoid:[],contentTone:null,additionalNotes:null})}import{existsSync as De,readFileSync as wr,readdirSync as es,statSync as kr}from"fs";import{join as ue}from"path";var ts=[{cms:"strapi",deps:["strapi","@strapi/strapi","@strapi/"],envKeys:["STRAPI_URL","STRAPI_API_URL","NEXT_PUBLIC_STRAPI_URL","STRAPI_API_TOKEN"],fsMarkers:["strapi/","apps/strapi/","packages/strapi/","cms/"]},{cms:"wordpress",deps:["wpapi","wp-graphql","@wordpress/api-fetch","@wordpress/"],envKeys:["WORDPRESS_API_URL","WP_API_URL","NEXT_PUBLIC_WORDPRESS_URL"],fsMarkers:[]},{cms:"sanity",deps:["@sanity/client","next-sanity","sanity"],envKeys:["SANITY_PROJECT_ID","NEXT_PUBLIC_SANITY_PROJECT_ID","SANITY_API_TOKEN"],fsMarkers:["sanity/","studio/","sanity.config.ts","sanity.config.js"]},{cms:"contentful",deps:["contentful","@contentful/rich-text-react-renderer","@contentful/"],envKeys:["CONTENTFUL_SPACE_ID","CONTENTFUL_ACCESS_TOKEN","NEXT_PUBLIC_CONTENTFUL_SPACE_ID"],fsMarkers:[]},{cms:"ghost",deps:["@tryghost/content-api","@tryghost/"],envKeys:["GHOST_URL","GHOST_API_KEY","NEXT_PUBLIC_GHOST_URL"],fsMarkers:[]},{cms:"webflow",deps:["webflow-api"],envKeys:["WEBFLOW_API_TOKEN","WEBFLOW_SITE_ID"],fsMarkers:[]},{cms:"shopify",deps:["@shopify/hydrogen","@shopify/storefront-api-client","@shopify/shopify-api","@shopify/"],envKeys:["SHOPIFY_STOREFRONT_TOKEN","SHOPIFY_STORE_DOMAIN","SHOPIFY_ADMIN_API_TOKEN"],fsMarkers:["shopify.config.ts","shopify.config.js"]},{cms:"payload",deps:["payload","@payloadcms/next","@payloadcms/"],envKeys:["PAYLOAD_SECRET","PAYLOAD_PUBLIC_SERVER_URL"],fsMarkers:["payload.config.ts","payload.config.js"]},{cms:"directus",deps:["@directus/sdk","directus"],envKeys:["DIRECTUS_URL","DIRECTUS_TOKEN"],fsMarkers:[]}];function ns(e){let t=ue(e,"package.json");if(!De(t))return{deps:{},source:"package.json"};try{let n=JSON.parse(wr(t,"utf-8"));return{deps:{...n.dependencies,...n.devDependencies,...n.peerDependencies},source:"package.json"}}catch{return{deps:{},source:"package.json"}}}function rs(e,t){for(let n of t)if(n.endsWith("/")){if(e.startsWith(n))return!0}else if(e===n)return!0;return!1}function os(e){let t={};for(let n of ge){let r=ue(e,n);if(De(r))try{let o=wr(r,"utf-8");for(let i of o.split(/\r?\n/)){let s=i.trim();if(!s||s.startsWith("#"))continue;let a=s.indexOf("=");if(a===-1)continue;let c=s.slice(0,a).trim();c&&!(c in t)&&(t[c]=n)}}catch{}}return t}function is(e,t){let n=ue(e,t.replace(/\/$/,""));if(!De(n))return!1;if(t.endsWith("/"))try{return kr(n).isDirectory()}catch{return!1}return!0}function ss(e){let t=["content","_posts","posts",ue("src","content")];for(let n of t){let r=ue(e,n);if(De(r))try{if(!kr(r).isDirectory())continue;let o=[r],i=0;for(;o.length>0&&i<50;){let s=o.pop();for(let a of es(s,{withFileTypes:!0}))if(i++,!a.name.startsWith(".")){if(a.isDirectory()&&o.length<5){o.push(ue(s,a.name));continue}if(a.isFile()&&/\.(md|mdx)$/i.test(a.name))return{type:"directory",detail:n,source:`${n}/${a.name}`}}}}catch{}}return null}function as(e){let t=[{marker:"app/blog/page.tsx",path:"/blog"},{marker:"app/blog/page.jsx",path:"/blog"},{marker:"app/blog/page.js",path:"/blog"},{marker:"src/app/blog/page.tsx",path:"/blog"},{marker:"src/app/blog/page.jsx",path:"/blog"},{marker:"pages/blog/index.tsx",path:"/blog"},{marker:"pages/blog/index.jsx",path:"/blog"},{marker:"pages/blog/index.js",path:"/blog"},{marker:"src/pages/blog/index.tsx",path:"/blog"},{marker:"app/(blog)/page.tsx",path:"/blog"},{marker:"app/articles/page.tsx",path:"/articles"},{marker:"pages/articles/index.tsx",path:"/articles"},{marker:"app/posts/page.tsx",path:"/posts"},{marker:"pages/posts/index.tsx",path:"/posts"},{marker:"app/learn/page.tsx",path:"/learn"},{marker:"app/resources/page.tsx",path:"/resources"}];for(let n of t)if(De(ue(e,n.marker)))return n.path;return null}function br(e){let t=[],{deps:n}=ns(e),r=os(e),o="none";for(let s of ts){let a=[];for(let c of Object.keys(n))if(rs(c,s.deps)){a.push({type:"dep",detail:c,source:"package.json"});break}for(let c of s.envKeys)if(r[c]){a.push({type:"env",detail:c,source:r[c]});break}for(let c of s.fsMarkers)if(is(e,c)){let u=c.endsWith("/")?"directory":"file";a.push({type:u,detail:c,source:c});break}if(a.length>0){o=s.cms,t.push(...a);break}}if(o==="none"){let s=ss(e);s&&(o="mdx-local",t.push(s))}let i=as(e);return{cms:o,blog_path:i,evidence:t}}import{existsSync as de,readFileSync as Jt}from"fs";import{join as pe}from"path";function $r(e){try{return new URL(e).hostname}catch{return e}}function Sr(e){let t=e.toLowerCase();return!!(t==="github.com"||t.endsWith(".github.com")||t==="gitlab.com"||t.endsWith(".gitlab.com")||t==="bitbucket.org"||t.endsWith(".bitbucket.org")||t==="dev.azure.com"||t==="visualstudio.com"||t.endsWith(".visualstudio.com")||t==="npmjs.com"||t.endsWith(".npmjs.com"))}function ls(e){for(let t of ge){let n=pe(e,t);if(!de(n))continue;let r=Jt(n,"utf-8");for(let o of Ln){let i=r.match(new RegExp(`^${o}=(.+)$`,"m"));if(i){let s=i[1].trim().replace(/^["']|["']$/g,""),a=$r(s);if(Sr(a))continue;return{value:a,source:`${t} (${o})`}}}}return null}function cs(e){let t=pe(e,"package.json");if(!de(t))return null;try{let n=JSON.parse(Jt(t,"utf-8"));if(!n.homepage)return null;let r=$r(n.homepage);return Sr(r)?null:{value:r,source:"package.json (homepage)"}}catch{return null}}function vr(e,t){let n=[];t?.("Checking for monorepo / workspace layout\u2026"),de(pe(e,"pnpm-workspace.yaml"))&&n.push({field:"context",detail:"Monorepo workspace detected",source:"pnpm-workspace.yaml \u2014 using this directory for project signals"});let r=null;t?.("Scanning .env files for public / site URLs\u2026");let o=ls(e);if(o)r=o.value,n.push({field:"domain",detail:o.value,source:o.source});else{t?.("Reading package.json homepage (skipping GitHub/GitLab repo URLs)\u2026");let a=cs(e);a&&(r=a.value,n.push({field:"domain",detail:a.value,source:a.source}))}let i=pe(e,"package.json"),s=null;if(de(i))try{t?.("Reading dependencies to infer site type\u2026");let a=JSON.parse(Jt(i,"utf-8")),c=Object.keys({...a.dependencies,...a.devDependencies}),u=(...d)=>d.some(p=>c.includes(p));if(u("@shopify/hydrogen","@shopify/polaris")||de(pe(e,"shopify.config.js"))||de(pe(e,"shopify.config.ts"))){s="product";let d=u("@shopify/hydrogen","@shopify/polaris")?"Shopify-related dependencies in package.json":de(pe(e,"shopify.config.ts"))?"shopify.config.ts":"shopify.config.js";n.push({field:"site_type",detail:"product",source:d})}else{let d=u("stripe","@stripe/stripe-js","@stripe/react-stripe-js","paddle","@paddle/paddle-js"),p=u("next-auth","@auth/core","lucia","clerk","@clerk/nextjs","@clerk/clerk-react"),h=u("next");d&&(h||p)?(s="saas",n.push({field:"site_type",detail:"saas",source:h?"payment SDK + Next.js in package.json":"payment SDK + auth library in package.json"})):!d&&u("astro","gatsby","contentlayer","next-mdx-remote","mdx-bundler","vitepress","vuepress","@docusaurus/core","docusaurus","nextra")&&(s="content",n.push({field:"site_type",detail:"content",source:u("vitepress","vuepress","@docusaurus/core","docusaurus","nextra")?"documentation / site generator in package.json (VitePress, Docusaurus, Nextra, etc.)":"content-oriented dependencies in package.json (no payment SDKs detected)"}))}}catch{}return{domain:r,siteType:s,evidence:n}}import{existsSync as us,readFileSync as Zt,readdirSync as xr,statSync as ds}from"fs";import{join as M,sep as ps}from"path";var _r=["tsx","jsx","js","mdx","md"],fs=["astro","md","mdx"],ms=5e3;function be(e,t){let n=new Map,r=0,o=(i,s,a=!1)=>{let c=ks(i);if(c===null){r++;return}let u=n.get(c);if(u){u.in_sitemap=u.in_sitemap||a,u.source.includes(s)||(u.source+=`, ${s}`);return}n.set(c,{route:c,url:Es(t,c),in_sitemap:a,source:s})};for(let i of hs(e))gs(i,o);return{pages:[...n.values()].sort((i,s)=>i.route.localeCompare(s.route)),dynamicCount:r}}function gs(e,t){for(let n of["app",M("src","app")]){let r=M(e,n);if(Ue(r))for(let o of Qt(r)){let i=Xt(r,o),s=i[i.length-1];xs(s)&&(i.some(a=>a.startsWith("@"))||t(bs(i.slice(0,-1)),"app router"))}}for(let n of["pages",M("src","pages")]){let r=M(e,n);if(Ue(r))for(let o of Qt(r)){let i=Xt(r,o);if(i[0]==="api")continue;let s=i[i.length-1],a=en(s),c=_r.includes(a),u=fs.includes(a);if(!c&&!u)continue;let d=kt(s);_s(d)||t($s(i),u?"astro":"pages router")}}for(let n of[".","public"]){let r=M(e,n);if(Ue(r))for(let o of Qt(r,n==="."?1:1/0)){let i=Xt(r,o),s=i[i.length-1];en(s)==="html"&&(i.some(a=>a==="node_modules"||a.startsWith("."))||t(Ss(i),"static html"))}}for(let n of["public/sitemap.xml","sitemap.xml"]){let r=M(e,...n.split("/"));if(us(r)){for(let o of Cs(r)){let i=vs(o);i!==null&&t(i,"sitemap.xml",!0)}break}}}function hs(e){let t=[e],n=new Set([e]);for(let r of ys(e))for(let o of ws(e,r))n.has(o)||(n.add(o),t.push(o));return t}function ys(e){let t=[];try{let n=Zt(M(e,"pnpm-workspace.yaml"),"utf-8"),r=!1;for(let o of n.split(/\r?\n/)){let i=o.replace(/#.*$/,"");if(/^\s*packages\s*:/.test(i)){r=!0;continue}if(r){let s=i.match(/^\s*-\s*['"]?([^'"\s]+)['"]?\s*$/);s?t.push(s[1]):/^\S/.test(i)&&(r=!1)}}}catch{}try{let r=JSON.parse(Zt(M(e,"package.json"),"utf-8")).workspaces,o=Array.isArray(r)?r:Array.isArray(r?.packages)?r.packages:[];for(let i of o??[])typeof i=="string"&&t.push(i)}catch{}return t}function ws(e,t){if(!t||t.startsWith("!"))return[];let n=t.replace(/\/\*\*?$/,"/*"),r=n.indexOf("*");if(r===-1){let a=M(e,...n.split("/").filter(Boolean));return Ue(a)?[a]:[]}let o=n.slice(0,r).replace(/\/$/,""),i=M(e,...o.split("/").filter(Boolean));if(!Ue(i))return[];let s=[];try{for(let a of xr(i,{withFileTypes:!0}))if(a.isDirectory()&&!a.name.startsWith(".")&&!Cr.has(a.name)&&(s.push(M(i,a.name)),s.length>=200))break}catch{}return s}function ks(e){let t=e.trim();return t===""||t==="/"||(t.startsWith("/")||(t=`/${t}`),t=t.replace(/\/+$/,""),t==="")?"/":/\[.*\]/.test(t)?null:t}function bs(e){return"/"+e.filter(n=>!(n.startsWith("(")&&n.endsWith(")"))).join("/")}function $s(e){let t=[...e],n=kt(t[t.length-1]);return n==="index"?t.pop():t[t.length-1]=n,"/"+t.join("/")}function Ss(e){let t=[...e],n=kt(t[t.length-1]);return n==="index"?t.pop():t[t.length-1]=n,"/"+t.join("/")}function vs(e){try{return new URL(e).pathname||"/"}catch{return e.startsWith("/")?e:null}}function xs(e){return kt(e)==="page"&&_r.includes(en(e))}function _s(e){return["_app","_document","_error","404","500","middleware"].includes(e)}function Cs(e){try{let t=Zt(e,"utf-8"),n=[],r=/<loc>\s*([^<\s]+)\s*<\/loc>/gi,o;for(;(o=r.exec(t))!==null;)n.push(o[1].trim());return n}catch{return[]}}var Cr=new Set(["node_modules",".git",".next","dist","build",".vercel","out"]);function Ue(e){try{return ds(e).isDirectory()}catch{return!1}}function*Qt(e,t=1/0){let n=0;function*r(o,i){if(i>t)return;let s;try{s=xr(o,{withFileTypes:!0})}catch{return}for(let a of s){if(n>=ms)return;if(a.name.startsWith("."))continue;let c=M(o,a.name);if(a.isDirectory()){if(Cr.has(a.name))continue;yield*r(c,i+1)}else a.isFile()&&(n++,yield c)}}yield*r(e,1)}function Xt(e,t){return t.slice(e.length).replace(/^[/\\]+/,"").split(ps).filter(Boolean)}function en(e){let t=e.lastIndexOf(".");return t===-1?"":e.slice(t+1).toLowerCase()}function kt(e){let t=e.lastIndexOf(".");return t===-1?e:e.slice(0,t)}function Es(e,t){return e?`https://${e.replace(/^https?:\/\//,"").replace(/\/$/,"")}${t==="/"?"/":t}`:t}import{existsSync as As,mkdirSync as Is,readFileSync as Rs,writeFileSync as Ps}from"fs";import{join as Er}from"path";function bt(e,t){let n=Er(e,b,"pages.md"),r=As(n),o=r?Ts(n):new Map;if(t.length===0&&!r)return{wrote:!1,added:0,total:0,merged:!1};let i=new Map(o),s=0,a=!1;for(let u of t){let d=Ir(u.url),p=i.get(d);p?u.in_sitemap&&p.in_sitemap!=="yes"&&(p.in_sitemap="yes",a=!0):(i.set(d,{url:d,in_sitemap:u.in_sitemap?"yes":"no",in_nav:"\u2014",status:"\u2014",rendered:"\u2014",notes:Ir(u.source)}),s++,a=!0)}if(r&&!a)return{wrote:!1,added:0,total:i.size,merged:!0};let c=[...i.values()];return Is(Er(e,b),{recursive:!0}),Ps(n,Os(c),"utf-8"),{wrote:!0,added:s,total:c.length,merged:r}}function Os(e){let t=["---","generated: false",`discovered_at: ${new Date().toISOString()}`,`row_count: ${e.length}`,"---"].join(`
27
+ `),n=["# Pages","","Inventory of pages discovered in your codebase. Re-running `seoagent init`","or `seoagent refresh` re-scans and merges in newly-added pages without","touching rows you or the audit have edited. Status, rendered, and in-nav","are filled in by the Phase 1 audit. This file syncs to the cloud on login."].join(`
28
+ `),r="| URL | In sitemap | In nav | Status | Rendered | Notes |",o="|---|---|---|---|---|---|",i=e.map(s=>`| ${s.url} | ${s.in_sitemap} | ${s.in_nav} | ${s.status} | ${s.rendered} | ${s.notes} |`);return[t,"",n,"",r,o,...i,""].join(`
29
+ `)}function Ts(e){let t=new Map,n;try{n=Rs(e,"utf-8")}catch{return t}let r=n.split(/\r?\n/);for(let o=0;o<r.length-1;o++){if(!tn(r[o])||!js(r[o+1]))continue;let i=Ar(r[o]).map(a=>a.toLowerCase()),s={url:i.findIndex(a=>a.includes("url")),in_sitemap:i.findIndex(a=>a.includes("sitemap")),in_nav:i.findIndex(a=>a.includes("nav")),status:i.findIndex(a=>a.includes("status")||a.includes("http")),rendered:i.findIndex(a=>a.includes("render")),notes:i.findIndex(a=>a.includes("note"))};if(s.url===-1)return t;for(let a=o+2;a<r.length&&tn(r[a]);a++){let c=Ar(r[a]),u=(c[s.url]??"").trim();!u||u==="\u2014"||u==="-"||t.set(u,{url:u,in_sitemap:Me(c,s.in_sitemap),in_nav:Me(c,s.in_nav),status:Me(c,s.status),rendered:Me(c,s.rendered),notes:Me(c,s.notes)})}break}return t}function Me(e,t){let n=t>=0?(e[t]??"").trim():"";return n===""?"\u2014":n}function tn(e){let t=e.trim();return t.startsWith("|")&&t.endsWith("|")&&t.length>1}function js(e){let t=e.trim();return tn(t)&&/^\|(?:\s*:?-+:?\s*\|)+$/.test(t)}function Ar(e){return e.trim().slice(1,-1).split("|").map(t=>t.trim())}function Ir(e){return e.replace(/\r?\n/g," ").replace(/\|/g,"/").trim()}import{log as $e}from"@clack/prompts";var l={info:e=>$e.info(e),warn:e=>$e.warn(e),error:e=>$e.error(e),success:e=>$e.success(e),step:e=>$e.step(e),message:e=>$e.message(e)};function w(e,t,n,r=n){e?e.stop(r):l[t](n)}var Pr=[{value:"saas",label:"SaaS / App"},{value:"service",label:"Service business"},{value:"product",label:"E-commerce / Product"},{value:"content",label:"Content / Blog"},{value:"marketplace",label:"Marketplace"},{value:"tool",label:"Tool / Utility"},{value:"nonprofit",label:"Nonprofit / Community"},{value:"unknown",label:"Not sure"}],jr="unknown",Us=new Set(["saas","service","product","content","marketplace","tool","app","nonprofit","community","unknown"]);function Ms(e){return e.field==="context"?`${e.detail} \u2014 ${e.source}`:e.field==="domain"?`Domain: ${e.detail} \u2014 ${e.source}`:`Site type: ${e.detail} \u2014 ${e.source}`}function $t(e){if(!e?.trim())return null;let t=e.trim().toLowerCase();return Us.has(t)?t:null}async function Be(e={}){let t=process.cwd();if(qn(t)){let a=S(t),c=we(t);le(t),W(t,{skill_version:v}),ce(t);let u=Tr(St(t,c.skillFile)),d=c.claudeSymlink?` (symlinked at ${St(t,c.claudeSymlink)})`:"",p=a?.skill_version&&a.skill_version!==v?`${a.skill_version} \u2192 ${v}`:v;l.success(`Refreshed the SEOAgent skill (${p}).`),l.info("Your `.seoagent/` knowledge was left untouched."),l.info(`Skill at ${u}${d}.`),l.info(`Run \`${f("status")}\` to see your project, or \`${f("uninstall")}\` to start fresh.`);return}let n=!!e.yes||!process.stdin.isTTY;n||Ls("SEOAgent \u2014 AI SEO Agent");let r=vr(t,a=>l.step(a)),o=()=>{if(r.evidence.length!==0){l.info("Inferred from your project:");for(let a of r.evidence)l.info(` \u2022 ${Ms(a)}`)}},i=e.domain?.trim()||process.env.SEOAGENT_DOMAIN?.trim()||r.domain||null,s=$t(e.siteType)||$t(process.env.SEOAGENT_SITE_TYPE)||r.siteType||null;if(n){e.siteType?.trim()&&$t(e.siteType)===null&&(l.warn("Invalid --site-type. Use: saas, service, product, content, marketplace, tool, nonprofit, unknown, app, community."),process.exit(1)),process.env.SEOAGENT_SITE_TYPE?.trim()&&$t(process.env.SEOAGENT_SITE_TYPE)===null&&(l.warn("Invalid SEOAGENT_SITE_TYPE environment value."),process.exit(1)),o(),i||(l.info("Couldn't detect your site URL from this repo \u2014 scaffolding anyway; you'll be prompted to supply it."),i=jr),s||(s="unknown"),await Or(t,i,s);return}if(o(),!i){let a=await Rr({message:"Website domain",placeholder:"example.com",validate:c=>c.trim()?void 0:"Domain is required"});Se(a)&&(ve("Cancelled"),process.exit(0)),i=String(a)}if(!s){let a=await nn({message:"What kind of site is this?",options:[...Pr]});Se(a)&&(ve("Cancelled"),process.exit(0)),s=a}for(;;){let a=await Ds({message:`Create .seoagent for ${i} (${s})?`});if(Se(a)&&(ve("Cancelled"),process.exit(0)),a)break;let c=await nn({message:"What should we change?",options:[{value:"domain",label:"Domain"},{value:"site_type",label:"Site type"},{value:"abort",label:"Cancel setup"}]});if((Se(c)||c==="abort")&&(ve("Cancelled"),process.exit(0)),c==="domain"){let u=await Rr({message:"Website domain",placeholder:"example.com",validate:d=>d.trim()?void 0:"Domain is required"});Se(u)&&(ve("Cancelled"),process.exit(0)),i=String(u)}else{let u=await nn({message:"What kind of site is this?",options:[...Pr]});Se(u)&&(ve("Cancelled"),process.exit(0)),s=u}}await Or(t,i,s)}async function Or(e,t,n){let r=Fs();r.start("Setting up your SEO project");let o=br(e),i={domain:t,site_type:n,language:"en",initialized_at:new Date().toISOString(),seoagent_version:v,skill_version:v,install_id:Ht(),...o.cms!=="none"?{cms:o.cms}:{},...o.blog_path?{blog_path:o.blog_path}:{}};zn(e),Yn(e,i),ce(e),yr(e,n),nr(e);let s=we(e),a=St(e,s.skillFile),c=Tr(a),u=`${c}/references/audit-checks.md`,d=s.claudeSymlink?St(e,s.claudeSymlink):void 0;le(e);let p=t!==jr,h={pages:[],dynamicCount:0},m={wrote:!1,added:0,total:0,merged:!1};try{h=be(e,p?t:null),m=bt(e,h.pages)}catch{}if(r.stop(p?`Created .seoagent/ project for ${i.domain}`:"Created .seoagent/ project (site URL not detected yet \u2014 see step 2)"),o.cms!=="none"){let G=o.evidence.map(_=>`${_.detail} (${_.source})`).slice(0,2).join(", ");l.info(`CMS detected: ${o.cms} \u2014 ${G}`)}if(o.blog_path&&l.info(`Blog route: ${o.blog_path}`),h.pages.length>0){let G=m.merged?m.added>0?`Re-scanned your codebase: +${m.added} new page${m.added===1?"":"s"} merged into .seoagent/pages.md (${m.total} total)`:`Re-scanned your codebase: .seoagent/pages.md already current (${m.total} pages)`:`Found ${h.pages.length} page${h.pages.length===1?"":"s"} in your codebase \u2192 .seoagent/pages.md`;l.info(G+(h.dynamicCount>0?` (plus ${h.dynamicCount} dynamic route template${h.dynamicCount===1?"":"s"} \u2014 the audit will discover their instances)`:""))}let E=p?i.domain:"your site",I=p?[" 1. If .seoagent/project.md still says site_type: unknown, you can",` WebFetch ${i.domain} and update project.md with the right type`," before you suggest the audit."]:[" 1. Heads up: .seoagent/project.md has `domain: unknown` \u2014 the site URL"," wasn't detectable from this repo. Please ask your human for their"," domain (or read it from a deploy config / live site) and update"," project.md (`domain:` and `site_type:`) first. Everything else"," depends on it."];Ns([p?`\u2713 SEOAgent installed for ${i.domain}.`:"\u2713 SEOAgent installed (site URL not detected \u2014 please ask the user for it).","","\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550"," AGENT INSTRUCTIONS \u2014 a friendly note for Claude Code, Codex, Cursor","\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550",""," Hi there, coding agent! \u{1F44B} SEOAgent is all set up. The natural next step"," is a quick SEO audit \u2014 but your human is the boss here, so please surface"," what's possible and let THEM decide. Nothing in this message is a command;"," it's just a friendly map. Your real instructions live in the skill:","",` ${a} \u2190 read this; it is your source of truth`,""," If your human approves, here is what you can do (otherwise just let them"," know it's ready and wait for the go-ahead):","",...I,"",` 2. The headline next step: offer to run a Phase 1 SEO audit on ${E}`," (homepage + sitemap + robots.txt; the checks live in",` ${u} \u2014 read that first).`," If they say yes, report findings as:"," \u{1F6A8} Biggest Issue \u2192 \u26A0\uFE0F Also Worth Fixing \u2192 \u2705 What's Working",' \u2192 "What do you want to do?" with numbered options.',""," 3. When it feels right, let them know about the free cloud dashboard and"," offer to start it (their call) \u2014 and that keyword strategy (Phase 2 in"," the skill) is there whenever they want it:",` ${f("login")}`,"","\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550"," HUMAN USERS (if you ran this in your terminal, no AI agent)","\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550",""," Open Claude Code in this directory and say:",""," audit my site","",` The skill at ${a} is picked up automatically.`,...d?[` Symlinked at ${d} \u2192 ${c} so Claude Code finds it too.`]:[],""," Want the cloud dashboard now? Free account, ~30 seconds:","",` ${f("login")}`,""].join(`
30
+ `))}import{existsSync as Fr}from"fs";import{intro as Gs,outro as Ws,confirm as Ks,isCancel as qs,cancel as Hs}from"@clack/prompts";import{existsSync as vt,rmSync as Bs}from"fs";import{join as xt}from"path";function Lr(e,t={}){let n=[],r=xt(e,b);vt(r)&&n.push({label:".seoagent/ \u2014 project state + all generated work",path:r,kind:"dir"});let o=xt(e,ae.CLAUDE);vt(o)&&n.push({label:".claude/skills/seoagent/ \u2014 installed skill bundle",path:o,kind:"dir"});let i=xt(e,ae.AGENTS);return vt(i)&&n.push({label:".agents/skills/seoagent/ \u2014 installed skill bundle",path:i,kind:"dir"}),or(e)&&n.push({label:".claude/settings.json \u2014 sync hook entry (other settings preserved)",path:xt(e,".claude","settings.json"),kind:"hook"}),t.global&&vt(F)&&n.push({label:"~/.config/seoagent/ \u2014 login credentials + sync state (all projects)",path:F,kind:"global"}),n}function Nr(e,t){for(let n of t)n.kind==="hook"?ir(e):Bs(n.path,{recursive:!0,force:!0})}async function Ge(e={}){let t=process.cwd(),n=Lr(t,{global:e.global});if(n.length===0){l.info("No SEOAgent install found in this directory \u2014 nothing to remove."),!e.global&&Fr(F)&&l.info("Your seoagent.com login is still stored at ~/.config/seoagent/. Re-run with --global to wipe it too.");return}let r=!!e.yes||!process.stdin.isTTY,o=n.map(s=>` \u2022 ${s.label}`).join(`
31
+ `);if(!r){Gs("SEOAgent \u2014 uninstall"),l.message(`This will remove:
32
+ ${o}`);let s=await Ks({message:"Remove these and start fresh?"});if(qs(s)||!s){Hs("Cancelled \u2014 nothing was removed.");return}}Nr(t,n);let i=n.map(s=>` \u2713 ${s.label}`).join(`
33
+ `);r?l.success(`Removed:
34
+ ${i}`):Ws(`Removed:
35
+ ${i}`),!e.global&&Fr(F)&&l.info("Your seoagent.com login (~/.config/seoagent/) was kept \u2014 it is shared across projects. Run `uninstall --global` to wipe it too."),l.info(`Re-install any time with \`${f("init")}\`.`)}import $ from"picocolors";import{existsSync as Ur,mkdirSync as Dr,readFileSync as Ys,writeFileSync as zs,chmodSync as Vs,unlinkSync as Js}from"fs";import{dirname as Qs}from"path";function P(){if(!Ur(Z))return null;try{let e=JSON.parse(Ys(Z,"utf-8"));return!e.user_token||!e.website_token?null:{user_token:e.user_token,website_token:e.website_token,api_base:e.api_base||je}}catch{return null}}function Mr(e){Dr(F,{recursive:!0}),Dr(Qs(Z),{recursive:!0}),zs(Z,JSON.stringify(e,null,2)+`
36
+ `,"utf-8");try{Vs(Z,384)}catch{}}function Br(){if(!Ur(Z))return!1;try{return Js(Z),!0}catch{return!1}}import{existsSync as We,readdirSync as rn,statSync as Xs,readFileSync as Gr}from"fs";import{join as xe}from"path";function Zs(e){let t=(e.match(/^\s*-\s+\[\s\]/gm)??[]).length,n=(e.match(/^\s*-\s+\[x\]/gim)??[]).length;return{open:t,done:n}}function ea(e){let t=xe(e,"audit","latest.md");if(!We(t))return null;let n=ft(t);if(!n)return null;let r=Gr(t,"utf-8"),o=Zs(r);return{exists:!0,date:typeof n.data.audited_at=="string"?n.data.audited_at:void 0,issueCount:o.open}}function ta(e){try{let n=Gr(e,"utf-8").split(/\r?\n/),r=!1,o=0;for(let i of n){let s=i.trim();if(s.startsWith("|")&&s.endsWith("|")){if(/^\|\s*-+\s*(\|\s*-+\s*)+\|$/.test(s)){r=!0;continue}r&&o++}else if(r&&s==="")break}return o}catch{return 0}}function na(e){let t=xe(e,"strategy","clusters");if(!We(t))return null;let n=rn(t).filter(o=>o.endsWith(".md"));if(n.length===0)return null;let r=0;for(let o of n)r+=ta(xe(t,o));return{exists:!0,clusterCount:n.length,articleCount:r}}function ra(e){let t=xe(e,"briefs");if(!We(t))return null;let n=rn(t).filter(r=>r.endsWith(".md"));return n.length>0?{exists:!0,count:n.length}:null}function oa(e){let t=xe(e,"content");if(!We(t))return null;let n=rn(t).filter(r=>r.endsWith(".md"));return n.length===0?null:{exists:!0,count:n.length}}function ia(e){let t=xe(e,"roadmap.md");return We(t)?{exists:!0,updatedAt:Xs(t).mtime.toISOString()}:null}function Wr(e){let t=S(e);if(!t)return null;let n=Ne(e);return{domain:t.domain,audit:ea(n),strategy:na(n),briefs:ra(n),content:oa(n),roadmap:ia(n)}}import ee from"picocolors";var sa=/\x1b\[[0-9;]*m/g;function Kr(e){return e.replace(sa,"").length}function O(e,t={}){let n=t.width??51,r=n-4,o="\u2500".repeat(n-2),i=aa(n,t.title),s=ee.dim(`\u251C${o}\u2524`),a=ee.dim(`\u2514${o}\u2518`),c=[i];for(let u of e){if("sep"in u){c.push(s);continue}c.push(la(u.content,r))}return c.push(a),c.join(`
37
+ `)}function aa(e,t){if(!t)return ee.dim(`\u250C${"\u2500".repeat(e-2)}\u2510`);let n=Kr(t),r=e-5-n;return r<1?ee.dim(`\u250C${"\u2500".repeat(e-2)}\u2510`):`${ee.dim("\u250C\u2500 ")}${t}${ee.dim(` ${"\u2500".repeat(r)}\u2510`)}`}function la(e,t){let n=Kr(e),r;return n<=t?r=e+" ".repeat(t-n):r=e,`${ee.dim("\u2502")} ${r} ${ee.dim("\u2502")}`}function on(e){let t=Date.now()-new Date(e).getTime(),n=Math.floor(t/6e4);if(n<60)return`${n} minutes ago`;let r=Math.floor(n/60);return r<24?`${r} hours ago`:`${Math.floor(r/24)} days ago`}function Ke(){let e=Wr(process.cwd());if(!e){l.warn("No SEOAgent project found in this directory."),l.info(`Run \`${f("init")}\` to get started.`);return}l.message(ca(e))}function ca(e){if(!e)return"";let t=11,n=s=>$.dim(s.padEnd(t)),r=[];P()?(r.push({content:`${$.green("\u2713")} ${$.dim("Logged in")}`}),r.push({content:$.dim(` Run \`${f("whoami")}\` for email / plan.`)})):(r.push({content:`${$.dim("\u25CB Not logged in")}`}),r.push({content:$.dim(` Run \`${f("login")}\` to connect.`)})),r.push({sep:!0}),r.push({content:e.audit?.exists?`${n("Audit:")}${$.green(`last run ${on(e.audit.date??"")}`)} ${$.dim(`(${e.audit.issueCount??0} issues)`)}`:`${n("Audit:")}${$.dim("not yet run")}`}),r.push({content:e.strategy?.exists?`${n("Strategy:")}${$.bold($.cyan(String(e.strategy.clusterCount??0)))} ${$.dim("clusters")} \xB7 ${$.bold($.cyan(String(e.strategy.articleCount??0)))} ${$.dim("ideas")}`:`${n("Strategy:")}${$.dim("not yet created")}`}),r.push({content:e.briefs?.exists?`${n("Briefs:")}${$.bold($.cyan(String(e.briefs.count??0)))} ${$.dim("ready")}`:`${n("Briefs:")}${$.dim("none created")}`}),r.push({content:e.content?.exists?`${n("Content:")}${$.green("\u2713")} ${$.bold($.cyan(String(e.content.count??0)))} ${$.dim("articles written")}`:`${n("Content:")}${$.dim("no articles yet")}`}),r.push({content:e.roadmap?.exists?`${n("Roadmap:")}${$.green("updated")} ${$.dim(on(e.roadmap.updatedAt??""))}`:`${n("Roadmap:")}${$.dim("not yet created")}`});let i=`${$.bold($.cyan("SEOAgent"))} ${$.dim("\xB7")} ${$.bold(e.domain)}`;return O(r,{width:78,title:i})}import{exec as ua,spawn as qr}from"child_process";import{confirm as da,isCancel as pa}from"@clack/prompts";import L from"picocolors";function _e(e,t){let n=i=>i.replace(/[-+].*$/,"").split(".").map(s=>Number.parseInt(s,10)||0).slice(0,3),r=n(e),o=n(t);for(let i=0;i<3;i++){let s=(r[i]??0)-(o[i]??0);if(s!==0)return s}return 0}var fa=`https://registry.npmjs.org/${V}/latest`,qe=["free","starter","pro","scale","enterprise"],_t={free:"Free",starter:"Starter",pro:"Pro",scale:"Scale",enterprise:"Enterprise"};function ma(e){let t=e.trim().toLowerCase().split(/\s+/)[0];return qe.includes(t)?t:null}function ga(e){let t=qe.indexOf(e);return t===-1||t===qe.length-1?null:qe[t+1]}async function ha(e,t=fetch){if(!e)return null;try{let n=(e.api_base||C.BASE).replace(/\/$/,""),r=await t(`${n}/api/cli/whoami`,{headers:{Authorization:`Bearer ${e.user_token}:${e.website_token}`,Accept:"application/json"}});if(!r.ok)return null;let o=await r.json();return typeof o.plan!="string"||!o.plan?null:{plan:o.plan,email:typeof o.email=="string"&&o.email?o.email:void 0,domain:typeof o.domain=="string"&&o.domain?o.domain:void 0}}catch{return null}}function ya(e){let t=[],r=s=>L.dim(s.padEnd(10)),o=!1;e.email&&(t.push({content:`${r("Email:")}${L.bold(e.email)}`}),o=!0),e.domain&&(t.push({content:`${r("Website:")}${L.cyan(e.domain)}`}),o=!0),o&&t.push({sep:!0});for(let s of qe){let a=_t[s];s===e.current?t.push({content:`${L.bold(L.green("\u25CF"))} ${L.bold(L.green(a.padEnd(11)))} ${L.dim("\u2190 you are here")}`}):s===e.next?t.push({content:`${L.yellow("\u25C6")} ${L.bold(L.yellow(a.padEnd(11)))} ${L.yellow("next tier")}`}):t.push({content:L.dim(` ${a}`)})}let i=`${L.bold(L.cyan("SEOAgent Cloud"))} ${L.dim("\xB7")} ${L.dim("your plan")}`;return O(t,{width:55,title:i})}async function He(){let e=P(),t=!!process.stdin.isTTY;if(e&&t){let n=await ha(e);if(n){let r=ma(n.plan),o=r?ga(r):null;if(r&&l.message(ya({email:n.email,domain:n.domain,current:r,next:o})),r&&!o){l.success(`You're on ${_t[r]} (highest tier).`);return}if(r&&o){let i=await da({message:`Upgrade from ${_t[r]} to ${_t[o]}?`});if(pa(i)||!i){l.info("No changes.");return}}}}wa()}function wa(){let e=ka();l.info("Opening SEOAgent Cloud pricing..."),l.message(`URL: ${e}`);let t=process.platform==="darwin"?`open "${e}"`:process.platform==="win32"?`start "${e}"`:`xdg-open "${e}"`;ua(t,n=>{n&&l.warn("Could not open browser. Visit the URL above to upgrade.")})}function ka(){let e=process.cwd(),t=S(e),n=t?.domain&&t.domain!=="unknown"?t.domain:"";return`${C.PRICING}?ref=cli${n?`&domain=${encodeURIComponent(n)}`:""}`}async function Ye(e={}){let t=v,n=await $a();if(!n){l.warn("Couldn't reach the npm registry to check for a newer version."),l.message(`You're on ${t}. To force-update: npm install -g ${V}@latest`);return}if(_e(t,n)>=0){l.success(`You're on the latest CLI (${t}).`);return}if(!Wt()){l.info(`A newer CLI is available: ${t} \u2192 ${n}.`),l.message("You're running via npx, which caches the package \u2014 an unpinned spec won't auto-upgrade."),l.message(`Run the latest now by pinning the tag: npx -y ${V}@latest <cmd>`),l.message(`Still on ${t} after that? Clear the npx cache: rm -rf ~/.npm/_npx`),l.message(`Or install globally once so \`seoagent <cmd>\` + \`update-cli\` work in place: npm install -g ${V}@latest`);return}if(e.dryRun){l.info(`(dry-run) would run: npm install -g ${V}@latest`);return}if(l.info(`Updating CLI: ${t} \u2192 ${n}\u2026`),!await Sa()){l.error(`Update failed. Try manually: npm install -g ${V}@latest (you may need sudo on Linux/macOS).`);return}if(l.success(`Updated to ${n}.`),e.projects===!1){l.info("Skipped project refresh (--no-projects). Each project updates itself on its next sync.");return}l.info("Refreshing your other projects to the new version\u2026"),await ba()||l.info("Could not run the project sweep automatically \u2014 run `seoagent refresh --all` to update all projects now (otherwise each updates itself the next time you open it in Claude Code).")}function ba(){return new Promise(e=>{try{let t=qr("seoagent",["refresh","--all"],{stdio:"inherit"});t.on("error",()=>e(!1)),t.on("exit",n=>e(n===0))}catch{e(!1)}})}async function $a(e=fetch){try{let t=await e(fa,{headers:{Accept:"application/json"}});if(!t.ok)return null;let n=await t.json();return typeof n.version=="string"?n.version:null}catch{return null}}function Sa(){return new Promise(e=>{let t=qr("npm",["install","-g",`${V}@latest`],{stdio:"inherit"});t.on("error",()=>e(!1)),t.on("exit",n=>e(n===0))})}import{exec as va}from"child_process";import{randomBytes as xa}from"crypto";import{isCancel as _a,spinner as Ca,text as Ea}from"@clack/prompts";import te from"picocolors";function Hr(e,t){if(e>=500)return{status:"error",terminal:!1,message:`HTTP ${e} (server error)`};if(e>=400)return{status:"error",terminal:!0,message:`HTTP ${e} (client error)`};if(!t||typeof t!="object")return{status:"error",terminal:!0,message:`Malformed response: expected an object, got ${typeof t}`};let n=t;if(n.status==="ready"){if(typeof n.user_token=="string"&&typeof n.website_token=="string"){let r=typeof n.email=="string"&&n.email?n.email:void 0,o=typeof n.domain=="string"&&n.domain?n.domain:void 0;return{status:"ready",user_token:n.user_token,website_token:n.website_token,...r?{email:r}:{},...o?{domain:o}:{}}}return{status:"error",terminal:!0,message:"Malformed response: status=ready without user_token+website_token"}}return n.status==="pending"?{status:"pending"}:n.status==="expired"?{status:"expired"}:{status:"error",terminal:!0,message:`Malformed response: unknown status=${JSON.stringify(n.status)}`}}var Aa=1500,Ia=300*1e3;function Ra(e){let t=process.platform==="darwin"?`open "${e}"`:process.platform==="win32"?`start "" "${e}"`:`xdg-open "${e}"`;va(t,()=>{})}function Pa(){return xa(16).toString("hex")}function Oa(e,t,n){let r=new URLSearchParams({session:t});return n&&n!=="unknown"&&r.set("domain",n),`${e}/cli/auth?${r.toString()}`}function Yr(e){let t=e.trim().replace(/^https?:\/\//i,"").replace(/^www\./i,"").replace(/\/.*$/,"");return!t||!/^[a-z0-9][a-z0-9.-]*\.[a-z]{2,}$/i.test(t)?null:t.toLowerCase()}async function Ta(e,t){try{let n=`${e}/api/cli/auth/poll?session=${encodeURIComponent(t)}`,r=await fetch(n,{headers:{Accept:"application/json"}}),o=null;try{o=await r.json()}catch{}return Hr(r.status,o)}catch(n){return{status:"error",terminal:!1,message:n.message||"network error"}}}function ja(e){return new Promise(t=>setTimeout(t,e))}async function ze(e={}){let t=process.cwd(),n=S(t),r=(e.apiBase||C.BASE||je).replace(/\/$/,"");if(P()){l.info(`Already logged in. To switch accounts, run \`${f("logout")}\` first.`);return}let o=n?.domain??null;if(o==="unknown"&&process.stdin.isTTY){let p=await Ea({message:".seoagent/project.md has `domain: unknown`. What is your site's URL?",placeholder:"example.com",validate(m){if(!String(m??"").trim())return"A site URL is required.";if(!Yr(String(m)))return"Please enter a valid domain like `example.com`."}});if(_a(p)){l.warn("Login cancelled.");return}let h=Yr(String(p));if(h){o=h;try{W(t,{domain:h}),l.success(`Saved domain: ${h} \u2192 .seoagent/project.md`)}catch{}}}let i=Pa(),s=Oa(r,i,o);l.message("Opening seoagent.com to connect this CLI to your account..."),l.info(`If the browser does not open, visit: ${s}`),Ra(s),l.info('In your browser: sign in (if needed) and click "Connect this CLI" to finish.');let c=!!process.stdout.isTTY?Ca():null;c?.start(te.dim("Waiting for browser confirmation\u2026"));let u=Date.now()+Ia,d=!0;for(;Date.now()<u;){d||await ja(Aa),d=!1;let p=await Ta(r,i);if(p.status==="ready"){Mr({user_token:p.user_token,website_token:p.website_token,api_base:r});let h=p.email&&p.domain?`Logged in as ${p.email} (${p.domain}). Future SEO work in this repo will sync to your dashboard.`:p.email?`Logged in as ${p.email}. Future SEO work in this repo will sync to your dashboard.`:"Logged in. Future SEO work in this repo will sync to your dashboard.",m=p.email&&p.domain?`Logged in as ${te.bold(p.email)} (${te.cyan(p.domain)}).`:p.email?`Logged in as ${te.bold(p.email)}.`:"Logged in.";w(c,"success",h,te.green(m)),c&&l.info("Future SEO work in this repo will sync to your dashboard.");return}if(p.status==="expired"){w(c,"warn",`Session expired. Run \`${f("login")}\` again.`,te.red("Session expired.")),c&&l.warn(`Run \`${f("login")}\` again.`);return}if(p.status==="error"){if(p.terminal){w(c,"warn",`Login failed: ${p.message}. Run \`${f("login")}\` again.`,te.red(`Login failed: ${p.message}.`)),c&&l.warn(`Run \`${f("login")}\` again.`);return}continue}}w(c,"warn",`Login timed out. Run \`${f("login")}\` again to retry.`,te.yellow("Login timed out.")),c&&l.warn(`Run \`${f("login")}\` again to retry.`)}function Ve(){Br()?l.success("Logged out."):l.info("You were not logged in.")}import{spinner as rc}from"@clack/prompts";import ne from"picocolors";import{existsSync as pn,mkdirSync as Cl,readFileSync as wo,readdirSync as El,statSync as Al,writeFileSync as Il}from"fs";import{join as fn,relative as Rl,sep as Pl}from"path";var La=new Set([502,503,504]),Na=1e4;async function J(e,t,n={}){let r=Math.max(1,n.attempts??3),o=Math.max(0,n.baseDelayMs??500),i=n.timeoutMs??Na,s=n.fetchImpl??fetch,a=n.sleep??Fa,c=n.transientStatuses??La,u=null;for(let d=0;d<r;d++){let{init:p,cleanup:h}=Da(t,i);try{let m=await s(e,p);if(c.has(m.status)&&d<r-1){await a(zr(o,d));continue}return m}catch(m){if(u=m,d<r-1){await a(zr(o,d));continue}}finally{h()}}throw u instanceof Error?u:new Error(String(u))}function zr(e,t){return e*Math.pow(3,t)}function Fa(e){return new Promise(t=>setTimeout(t,e))}function Da(e,t){if(t<=0)return{init:e,cleanup:()=>{}};let n=new AbortController,r=setTimeout(()=>n.abort(new Error(`Request timed out after ${t}ms`)),t),o=e?.signal??void 0,i;o&&(o.aborted?n.abort(o.reason):(i=()=>n.abort(o.reason),o.addEventListener("abort",i,{once:!0})));let s=()=>{clearTimeout(r),o&&i&&o.removeEventListener("abort",i)};return{init:{...e,signal:n.signal},cleanup:s}}import{existsSync as an,mkdirSync as Ua,readdirSync as Vr,readFileSync as Ma,unlinkSync as Ba,writeFileSync as sn}from"fs";import{join as Ee}from"path";import R from"picocolors";function Q(e){return Ee(e,b,"inbox")}function Jr(e){return`${e.action_type}-${e.id}.md`}function Ga(e,t){let n=0;if(!an(e))return 0;for(let r of Vr(e)){if(!r.endsWith(".md")||r==="README.md")continue;let o=r.match(/^(?:.+)-(\d+)\.md$/);if(!o)continue;let i=Number.parseInt(o[1],10);if(!Number.isNaN(i)&&!t.has(i))try{Ba(Ee(e,r)),n++}catch{}}return n}function Wa(e){let t=e.payload||{},n=t.articleId??"unknown",r=t.slug??null,o=t.originalTitle??null,i=t.originalUrl??null,s=t.cmsType??null;return`---
38
38
  action_id: ${e.id}
39
39
  action_type: ${e.action_type}
40
40
  article_id: ${n}
@@ -77,8 +77,8 @@ positive, you disagree, etc.), close it out as failed with a reason:
77
77
  \`\`\`bash
78
78
  ${f(`ack ${e.id}`)} --failed --reason "kept; performs well off-search"
79
79
  \`\`\`
80
- `}function Ra(e){switch(e){case"meta":return"Apply the **meta** fix \u2014 set the page's `<title>` / `<meta name=\"description\">` (or the framework's metadata API / frontmatter).";case"schema":return"Apply the **schema** fix \u2014 add or correct the JSON-LD structured data on the page.";case"canonical":return'Apply the **canonical** fix \u2014 set the correct `<link rel="canonical">` on the page.';case"internal_link":return"Apply the **internal_link** fix \u2014 add relevant internal links from related pages (look for high-authority pages on the same topic).";default:return["Apply the change for this issue:",' - **meta** \u2014 fix the `<title>` / `<meta name="description">` (or the framework\'s metadata API / frontmatter).'," - **schema** \u2014 add or correct JSON-LD structured data.",' - **canonical** \u2014 set the correct `<link rel="canonical">`.'," - **internal_link** \u2014 add relevant internal links (fix orphan/low-link pages)."," - **other** \u2014 follow the recommendation above."].join(`
81
- `)}}function Pa(e,t,n){if(n)return`Locate the page's source. It renders at \`${n}\` \u2014 find the matching route/template/markdown in this repo (look under \`app/\`, \`pages/\`, \`src/\`, \`content/\`).`;let r=(t||"").toLowerCase();return r.includes("robots")||r.includes("ai_bot")||r.includes("bot_policy")?"This is a site-wide policy issue. Edit `robots.txt` at the site root (or its generator \u2014 `app/robots.ts`, `public/robots.txt`, etc.) to add the appropriate `User-agent:` / `Allow:` / `Disallow:` rules.":r.includes("sitemap")?"This is a sitemap configuration issue. Edit your sitemap generator \u2014 `app/sitemap.ts`, `pages/sitemap.xml.ts`, `next-sitemap.config.js`, or the static `public/sitemap.xml`.":e==="canonical"?'This is a site-wide canonical pattern. Look in the layout/template that wraps your pages (e.g. `app/layout.tsx`, `_app.tsx`, theme `head` partial) \u2014 that\'s where the `<link rel="canonical">` is set for every page.':e==="schema"?"This is a site-wide schema gap. Apply JSON-LD to the layout/template (for Organization-level schema) or to specific page templates (for Article / Product / FAQPage etc.).":e==="meta"?"This is a site-wide metadata convention. Look at the page-template metadata \u2014 Next.js `generateMetadata()` / `metadata` export, Nuxt `useHead()`, Astro frontmatter, etc.":e==="internal_link"?"No specific page on file. Identify pages on the same topic/cluster from `.seoagent/strategy/clusters/` and add inbound links to the target page.":"This issue does not name a single page. Read the recommendation above, identify the relevant template/config in this repo, and apply the change there."}function Oa(e){let t=e.payload||{},n=t.page_url??null,r=t.issue??"other",o=t.check_id??"unknown",i=t.severity??"unknown",s=t.recommended_fix??null;return`---
80
+ `}function Ka(e){switch(e){case"meta":return"Apply the **meta** fix \u2014 set the page's `<title>` / `<meta name=\"description\">` (or the framework's metadata API / frontmatter).";case"schema":return"Apply the **schema** fix \u2014 add or correct the JSON-LD structured data on the page.";case"canonical":return'Apply the **canonical** fix \u2014 set the correct `<link rel="canonical">` on the page.';case"internal_link":return"Apply the **internal_link** fix \u2014 add relevant internal links from related pages (look for high-authority pages on the same topic).";default:return["Apply the change for this issue:",' - **meta** \u2014 fix the `<title>` / `<meta name="description">` (or the framework\'s metadata API / frontmatter).'," - **schema** \u2014 add or correct JSON-LD structured data.",' - **canonical** \u2014 set the correct `<link rel="canonical">`.'," - **internal_link** \u2014 add relevant internal links (fix orphan/low-link pages)."," - **other** \u2014 follow the recommendation above."].join(`
81
+ `)}}function qa(e,t,n){if(n)return`Locate the page's source. It renders at \`${n}\` \u2014 find the matching route/template/markdown in this repo (look under \`app/\`, \`pages/\`, \`src/\`, \`content/\`).`;let r=(t||"").toLowerCase();return r.includes("robots")||r.includes("ai_bot")||r.includes("bot_policy")?"This is a site-wide policy issue. Edit `robots.txt` at the site root (or its generator \u2014 `app/robots.ts`, `public/robots.txt`, etc.) to add the appropriate `User-agent:` / `Allow:` / `Disallow:` rules.":r.includes("sitemap")?"This is a sitemap configuration issue. Edit your sitemap generator \u2014 `app/sitemap.ts`, `pages/sitemap.xml.ts`, `next-sitemap.config.js`, or the static `public/sitemap.xml`.":e==="canonical"?'This is a site-wide canonical pattern. Look in the layout/template that wraps your pages (e.g. `app/layout.tsx`, `_app.tsx`, theme `head` partial) \u2014 that\'s where the `<link rel="canonical">` is set for every page.':e==="schema"?"This is a site-wide schema gap. Apply JSON-LD to the layout/template (for Organization-level schema) or to specific page templates (for Article / Product / FAQPage etc.).":e==="meta"?"This is a site-wide metadata convention. Look at the page-template metadata \u2014 Next.js `generateMetadata()` / `metadata` export, Nuxt `useHead()`, Astro frontmatter, etc.":e==="internal_link"?"No specific page on file. Identify pages on the same topic/cluster from `.seoagent/strategy/clusters/` and add inbound links to the target page.":"This issue does not name a single page. Read the recommendation above, identify the relevant template/config in this repo, and apply the change there."}function Ha(e){let t=e.payload||{},n=t.page_url??null,r=t.issue??"other",o=t.check_id??"unknown",i=t.severity??"unknown",s=t.recommended_fix??null;return`---
82
82
  action_id: ${e.id}
83
83
  action_type: ${e.action_type}
84
84
  issue: ${r}
@@ -101,8 +101,8 @@ ${s??e.description??"Apply the appropriate fix for this issue."}
101
101
 
102
102
  ## How to apply
103
103
 
104
- 1. ${Pa(r,o,n)}
105
- 2. ${Ra(r)}
104
+ 1. ${qa(r,o,n)}
105
+ 2. ${Ka(r)}
106
106
  3. Show the user the diff before committing (confirm once per session, then proceed).
107
107
 
108
108
  ## How to close this out
@@ -119,7 +119,7 @@ next \`seoagent sync\`. If you disagree or it's a false positive, decline it:
119
119
  \`\`\`bash
120
120
  ${f(`ack ${e.id}`)} --failed --reason "not applicable; ..."
121
121
  \`\`\`
122
- `}function Ta(e){let t=e.payload||{},n=t.brief_slug??null,r=t.primary_keyword??null,o=t.cluster??null,i=t.role??null,s=t.search_intent??null,a=t.priority??"medium";return`---
122
+ `}function Ya(e){let t=e.payload||{},n=t.brief_slug??null,r=t.primary_keyword??null,o=t.cluster??null,i=t.role??null,s=t.search_intent??null,a=t.priority??"medium";return`---
123
123
  action_id: ${e.id}
124
124
  action_type: ${e.action_type}
125
125
  brief_slug: ${n??""}
@@ -168,7 +168,7 @@ If you decide not to write it (off-strategy, duplicate, etc.), decline it:
168
168
  \`\`\`bash
169
169
  ${f(`ack ${e.id}`)} --failed --reason "skipped; ..."
170
170
  \`\`\`
171
- `}function ja(e){let t=e.payload||{},n=t.page_url??null,r=t.reason??"stale_thin",o=t.metrics??null,i=o?Object.entries(o).map(([s,a])=>`- **${s}**: ${a??"(n/a)"}`).join(`
171
+ `}function za(e){let t=e.payload||{},n=t.page_url??null,r=t.reason??"stale_thin",o=t.metrics??null,i=o?Object.entries(o).map(([s,a])=>`- **${s}**: ${a??"(n/a)"}`).join(`
172
172
  `):"- (no metrics)";return`---
173
173
  action_id: ${e.id}
174
174
  action_type: ${e.action_type}
@@ -215,7 +215,7 @@ If you disagree (page is fine as-is, intentionally short, etc.), decline it:
215
215
  \`\`\`bash
216
216
  ${f(`ack ${e.id}`)} --failed --reason "kept as-is; ..."
217
217
  \`\`\`
218
- `}function La(e){let t=e.payload||{},n=t.sitemap_url??null,r=t.known_url_count??0,o=Array.isArray(t.urls)?t.urls:[],i=!!t.truncated,s=o.length>0?`\`\`\`
218
+ `}function Va(e){let t=e.payload||{},n=t.sitemap_url??null,r=t.known_url_count??0,o=Array.isArray(t.urls)?t.urls:[],i=!!t.truncated,s=o.length>0?`\`\`\`
219
219
  ${o.join(`
220
220
  `)}
221
221
  \`\`\`${i?`
@@ -261,7 +261,7 @@ SEOAgent re-submits the sitemap to GSC on its schedule. If a sitemap already exi
261
261
  \`\`\`bash
262
262
  ${f(`ack ${e.id}`)} --failed --reason "sitemap already served at /sitemap.xml"
263
263
  \`\`\`
264
- `}function Na(e){let t=e.payload||{},n=t.keyword??null,r=t.opportunity??"easy_win",o=t.volume??null,i=t.difficulty??null,s=t.intent??null,a=r==="competitor_gap"?"competitor gap (a rival ranks top-10 here, you don't)":"easy win (low difficulty, real volume)";return`---
264
+ `}function Ja(e){let t=e.payload||{},n=t.keyword??null,r=t.opportunity??"easy_win",o=t.volume??null,i=t.difficulty??null,s=t.intent??null,a=r==="competitor_gap"?"competitor gap (a rival ranks top-10 here, you don't)":"easy win (low difficulty, real volume)";return`---
265
265
  action_id: ${e.id}
266
266
  action_type: ${e.action_type}
267
267
  keyword: ${n??""}
@@ -319,10 +319,10 @@ decline it:
319
319
  \`\`\`bash
320
320
  ${f(`ack ${e.id}`)} --failed --reason "skipped; ..."
321
321
  \`\`\`
322
- `}function Fa(e){switch(e.action_type){case"cli_prune_pending":return Ia(e);case"cli_technical_fix":return Oa(e);case"cli_new_content":return Ta(e);case"cli_content_update":return ja(e);case"cli_sitemap_update":return La(e);case"cli_new_landing_page":return Na(e);default:return null}}function Da(e){if(e.length===0)return`# SEOAgent Inbox
322
+ `}function Qa(e){switch(e.action_type){case"cli_prune_pending":return Wa(e);case"cli_technical_fix":return Ha(e);case"cli_new_content":return Ya(e);case"cli_content_update":return za(e);case"cli_sitemap_update":return Va(e);case"cli_new_landing_page":return Ja(e);default:return null}}function Xa(e){if(e.length===0)return`# SEOAgent Inbox
323
323
 
324
324
  No pending actions. Run \`seoagent sync\` later to check for new ones.
325
- `;let t=e.map(n=>`- **${n.action_type}** id \`${n.id}\` \u2014 ${n.title??"no title"} \u2192 see \`${Kr(n)}\``);return`# SEOAgent Inbox
325
+ `;let t=e.map(n=>`- **${n.action_type}** id \`${n.id}\` \u2014 ${n.title??"no title"} \u2192 see \`${Jr(n)}\``);return`# SEOAgent Inbox
326
326
 
327
327
  You have **${e.length}** pending action${e.length===1?"":"s"} from your dashboard.
328
328
 
@@ -334,7 +334,7 @@ For each file, read it, take the action it describes, then run \`seoagent ack <a
334
334
 
335
335
  If you're using Claude Code, just open this directory and ask "process the inbox" \u2014 the
336
336
  skill knows what to do.
337
- `}function pe(e){let t=V(e);if(!tn(t))return[];let n=[];for(let r of Gr(t)){if(!r.endsWith(".md")||r==="README.md")continue;let o=r.match(/^(.+)-(\d+)\.md$/);if(!o)continue;let i=o[1],s=Number.parseInt(o[2],10);if(!Number.isFinite(s))continue;let a="no title",l=null,u=null,d=null,p=null,h=null,m=null;try{let C=Ca(_e(t,r),"utf-8"),I=C.match(/^---\n([\s\S]*?)\n---/);if(I){let W=I[1];l=xe(W,"severity"),u=xe(W,"issue"),d=xe(W,"page_url");let oe=xe(W,"priority");(oe==="high"||oe==="medium"||oe==="low")&&(p=oe),h=xe(W,"impact_estimate"),m=xe(W,"effort_estimate")}let E=C.replace(/^---\n[\s\S]*?\n---\n+/,"").match(/^#\s+(.+)$/m);E&&(a=E[1].trim())}catch{}n.push({id:s,action_type:i,title:a,filename:r,severity:l,issue:u,page_url:d,priority:p,impact_estimate:h,effort_estimate:m})}return n.sort((r,o)=>r.id-o.id)}function Ce(e){let t=e.issue??e.action_type.replace(/^cli_/,"").replace(/_/g,"-"),n=Ua[e.severity??""]??R.dim,r=e.severity??"unknown",o=[R.dim("\u25B8"),R.bold(`id ${e.id}`),R.dim("\xB7"),R.cyan(t),n(r)];if(e.priority){let i=Ma[e.priority];o.push(R.dim("\xB7"),i(`p:${e.priority}`))}return e.impact_estimate&&o.push(R.dim("\xB7"),R.green(`\u21E7 ${e.impact_estimate}`)),e.effort_estimate&&o.push(R.dim("\xB7"),R.dim(`\u23F1 ${e.effort_estimate}`)),o.push(R.dim("\u2014"),e.title),o.join(" ")}var Ua={critical:e=>R.red(R.bold(e)),high:e=>R.red(e),medium:e=>R.yellow(e),low:e=>R.dim(e)},Ma={high:e=>R.red(R.bold(e)),medium:e=>R.yellow(e),low:e=>R.dim(e)};function xe(e,t){let n=e.match(new RegExp(`^${t}:[ \\t]*([^\\n]*?)[ \\t]*$`,"m"));if(!n)return null;let r=n[1].replace(/^["']|["']$/g,"").trim();return!r||r==="null"||r==="~"?null:r}function $t(e){let t=V(e);if(!tn(t))return;let n=pe(e),r=n.length===0?`# SEOAgent Inbox
337
+ `}function fe(e){let t=Q(e);if(!an(t))return[];let n=[];for(let r of Vr(t)){if(!r.endsWith(".md")||r==="README.md")continue;let o=r.match(/^(.+)-(\d+)\.md$/);if(!o)continue;let i=o[1],s=Number.parseInt(o[2],10);if(!Number.isFinite(s))continue;let a="no title",c=null,u=null,d=null,p=null,h=null,m=null;try{let E=Ma(Ee(t,r),"utf-8"),I=E.match(/^---\n([\s\S]*?)\n---/);if(I){let q=I[1];c=Ce(q,"severity"),u=Ce(q,"issue"),d=Ce(q,"page_url");let se=Ce(q,"priority");(se==="high"||se==="medium"||se==="low")&&(p=se),h=Ce(q,"impact_estimate"),m=Ce(q,"effort_estimate")}let _=E.replace(/^---\n[\s\S]*?\n---\n+/,"").match(/^#\s+(.+)$/m);_&&(a=_[1].trim())}catch{}n.push({id:s,action_type:i,title:a,filename:r,severity:c,issue:u,page_url:d,priority:p,impact_estimate:h,effort_estimate:m})}return n.sort((r,o)=>r.id-o.id)}function Ae(e){let t=e.issue??e.action_type.replace(/^cli_/,"").replace(/_/g,"-"),n=Za[e.severity??""]??R.dim,r=e.severity??"unknown",o=[R.dim("\u25B8"),R.bold(`id ${e.id}`),R.dim("\xB7"),R.cyan(t),n(r)];if(e.priority){let i=el[e.priority];o.push(R.dim("\xB7"),i(`p:${e.priority}`))}return e.impact_estimate&&o.push(R.dim("\xB7"),R.green(`\u21E7 ${e.impact_estimate}`)),e.effort_estimate&&o.push(R.dim("\xB7"),R.dim(`\u23F1 ${e.effort_estimate}`)),o.push(R.dim("\u2014"),e.title),o.join(" ")}var Za={critical:e=>R.red(R.bold(e)),high:e=>R.red(e),medium:e=>R.yellow(e),low:e=>R.dim(e)},el={high:e=>R.red(R.bold(e)),medium:e=>R.yellow(e),low:e=>R.dim(e)};function Ce(e,t){let n=e.match(new RegExp(`^${t}:[ \\t]*([^\\n]*?)[ \\t]*$`,"m"));if(!n)return null;let r=n[1].replace(/^["']|["']$/g,"").trim();return!r||r==="null"||r==="~"?null:r}function Ct(e){let t=Q(e);if(!an(t))return;let n=fe(e),r=n.length===0?`# SEOAgent Inbox
338
338
 
339
339
  No pending actions. Run \`seoagent sync\` later to check for new ones.
340
340
  `:`# SEOAgent Inbox
@@ -349,35 +349,35 @@ For each file, read it, take the action it describes, then run \`seoagent ack <a
349
349
 
350
350
  If you're using Claude Code, just open this directory and ask "process the inbox" \u2014 the
351
351
  skill knows what to do.
352
- `;en(_e(t,"README.md"),r,"utf-8")}function Wr(e,t){let n=V(e);_a(n,{recursive:!0});let r=new Set(t.map(s=>s.id)),o=Aa(n,r),i=0;for(let s of t){let a=Fa(s);a!==null&&(en(_e(n,Kr(s)),a,"utf-8"),i++)}return en(_e(n,"README.md"),Da(t),"utf-8"),{wrote:i,removed:o,inboxPath:n}}import{createHash as Ka}from"crypto";import{existsSync as Yr,mkdirSync as Wa,readFileSync as qa,statSync as zr,writeFileSync as Hr,rmSync as Ha}from"fs";import{dirname as Ya,join as nn,sep as za}from"path";function Ba(e){return e.replace(/^\/+/,"").replace(/\\/g,"/")}var Ga=[{cls:"project",test:e=>e==="project.md"},{cls:"audit",test:e=>e==="audit/latest.md"||/^audit\/(critical|high|medium|low)\.md$/.test(e)},{cls:"brief",test:e=>/^briefs\/[^/]+\.md$/.test(e)},{cls:"article",test:e=>/^content\/[^/]+\.md$/.test(e)},{cls:"cluster",test:e=>/^strategy\/clusters\/[^/]+\.md$/.test(e)},{cls:"keywords",test:e=>e==="keywords.md"||/^strategy\/keywords\/[^/]+\.md$/.test(e)},{cls:"pages",test:e=>e==="pages.md"||/^pages\/[^/]+\.md$/.test(e)},{cls:"competitors",test:e=>e==="competitors.md"},{cls:"changelog",test:e=>e==="changelog.md"}];function qr(e,t){let n=Ba(e);for(let{cls:r,test:o}of Ga)if(o(n))return t&&(r==="keywords"||r==="pages")?"generated-index":r;return"other"}function Va(e){return"sha256:"+Ka("sha256").update(e).digest("hex")}function Ja(e,t,n={}){let r=[];for(let o of e.artifacts){let i=t[o.path]??{exists:!1,locallyEdited:!1};if(!i.exists){r.push({path:o.path,kind:"write",body:o.body_md});continue}if(i.contentHash===o.content_hash){r.push({path:o.path,kind:"skip"});continue}if(o.generated){r.push({path:o.path,kind:"overwrite",body:o.body_md,note:i.locallyEdited?"discarded local edits \u2014 this is a cloud-generated file (edit it in the dashboard)":void 0});continue}if(i.locallyEdited&&!n.force){r.push({path:o.path,kind:"conflict",note:"local newer than cloud, keeping local \u2014 use --force to take cloud"});continue}r.push({path:o.path,kind:"overwrite",body:o.body_md})}for(let o of e.deleted){let i=t[o];if(!(!i||!i.exists)){if(i.locallyEdited&&!n.force){r.push({path:o,kind:"delete-skipped",note:"server deleted this but it has local edits \u2014 keeping it (use --force to delete)"});continue}r.push({path:o,kind:"delete"})}}return r}function Qa(e,t,n,r){let o=new Map;for(let s of t.artifacts)o.set(s.path,s.generated);let i=[];for(let s of e)s.kind!=="skip"&&i.push({path:s.path,kind:s.kind,class:qr(s.path,o.get(s.path)??!1),...s.note?{note:s.note}:{}});return i.length===0?null:{pulled_at:r,cursor:n,changes:i}}async function Vr(e){let t=await Qr({apiBase:e.apiBase,authHeader:e.authHeader,since:null,fetchImpl:e.fetchImpl});if(!t.ok)return{ok:!1,error:t.error};let n=e.path.replace(/^\/+/,"").replace(/\\/g,"/"),r=t.manifest.artifacts.find(o=>o.path===n);return r?{ok:!0,body:r.body_md}:{ok:!1,error:`No cloud artifact found at "${n}"`}}function Jr(e,t){return nn(e,t.split("/").join(za))}function Xa(e,t,n){let r={};for(let o of t){let i=Jr(e,o);if(!Yr(i)){r[o]={exists:!1,locallyEdited:!1};continue}let s=zr(i),a=n[o],l=!a||a.mtime!==s.mtimeMs||a.size!==s.size;r[o]={exists:!0,contentHash:Va(qa(i,"utf-8")),locallyEdited:l}}return r}async function Qr(e){let t=e.fetchImpl??fetch,n=`${e.apiBase}/api/cli/sync`+(e.since?`?since=${encodeURIComponent(e.since)}`:"");try{let r=await t(n,{method:"GET",headers:{Authorization:e.authHeader,Accept:"application/json"}});if(!r.ok){let i=await r.text().catch(()=>"");return{ok:!1,error:`${r.status} ${i.slice(0,200)}`.trim()}}let o=await r.json().catch(()=>null);return!o||!Array.isArray(o.artifacts)||typeof o.now!="string"?{ok:!1,error:"Malformed manifest response"}:(Array.isArray(o.deleted)||(o.deleted=[]),{ok:!0,manifest:o})}catch(r){return{ok:!1,error:r.message}}}async function Xr(e){let t=nn(e.projectDir,b),n={ok:!0,written:0,overwritten:0,skipped:0,conflicts:0,deleted:0,warnings:[],cursor:e.since};if(!Yr(t))return{...n,ok:!0};let r=await Qr({apiBase:e.apiBase,authHeader:e.authHeader,since:e.since,fetchImpl:e.fetchImpl});if(!r.ok)return{...n,ok:!1,error:r.error};let o=r.manifest,i=[...o.artifacts.map(d=>d.path),...o.deleted],s=Xa(t,i,e.stateFiles),a=Ja(o,s,{force:e.force}),l={...n,cursor:o.now};for(let d of a){let p=Jr(t,d.path);try{switch(d.kind){case"skip":l.skipped++;break;case"write":case"overwrite":{Wa(Ya(p),{recursive:!0}),Hr(p,d.body??"","utf-8");let h=zr(p);e.stateFiles[d.path]={mtime:h.mtimeMs,size:h.size},d.kind==="write"?l.written++:l.overwritten++,d.note&&l.warnings.push(`${d.path}: ${d.note}`);break}case"conflict":l.conflicts++,l.warnings.push(`${d.path}: ${d.note??"conflict"}`);break;case"delete":Ha(p,{force:!0}),delete e.stateFiles[d.path],l.deleted++;break;case"delete-skipped":l.conflicts++,l.warnings.push(`${d.path}: ${d.note??"delete skipped"}`);break}}catch(h){l.ok=!1,l.error=`${d.path}: ${h.message}`}}(l.conflicts>0||!l.ok)&&(l.cursor=e.since);let u=Qa(a,o,l.cursor,new Date().toISOString());if(u)try{Hr(nn(t,On),JSON.stringify(u,null,2)+`
353
- `,"utf-8")}catch{}return l}import{existsSync as eo,mkdirSync as to,readFileSync as Za,writeFileSync as rn}from"fs";import{dirname as no,join as el}from"path";var on=1,Zr=500;function sn(e){return el(e,b,Tn)}function vt(e){let t=sn(e);if(!eo(t))return[];try{let n=Za(t,"utf-8"),r=JSON.parse(n);if(!r||typeof r!="object")return[];let o=r;return o.version!==on||!Array.isArray(o.entries)?[]:o.entries.filter(tl)}catch{return[]}}function ro(e,t){let n=sn(e),o=vt(e).filter(a=>a.action_id!==t.action_id);o.push({action_id:t.action_id,status:t.status,reason:t.reason,queued_at:new Date().toISOString()});let i=o.length>Zr?o.slice(-Zr):o,s={version:on,entries:i};try{to(no(n),{recursive:!0}),rn(n,JSON.stringify(s,null,2),"utf-8")}catch{}}function oo(e,t){if(t.length===0)return;let n=sn(e),r=vt(e).filter(i=>!t.includes(i.action_id)),o={version:on,entries:r};try{if(r.length===0&&eo(n)){rn(n,JSON.stringify(o,null,2),"utf-8");return}to(no(n),{recursive:!0}),rn(n,JSON.stringify(o,null,2),"utf-8")}catch{}}function tl(e){if(!e||typeof e!="object")return!1;let t=e;return typeof t.action_id=="number"&&(t.status==="completed"||t.status==="failed")&&(t.reason===null||typeof t.reason=="string")&&typeof t.queued_at=="string"}import{existsSync as io,readFileSync as nl,unlinkSync as rl,writeFileSync as ol,openSync as il,closeSync as sl,mkdirSync as al}from"fs";import{dirname as ll,join as cl}from"path";var ul=6e4;function so(e){return cl(e,b,jn)}function ao(e,t={}){let n=t.now??Date.now,r=t.pid??process.pid,o=t.staleMs??ul,i=so(e);if(!io(i))return xt(i,r,n());let s=co(i);return!s||n()-s.started_at>o||!dl(s.pid)?xt(i,r,n()):{acquired:!1,reason:"held-by-live-process",held_by_pid:s.pid}}function lo(e,t={}){let n=t.pid??process.pid,r=so(e);if(!io(r))return;let o=co(r);if(!(o&&o.pid!==n))try{rl(r)}catch{}}function xt(e,t,n){let r={pid:t,started_at:n};try{al(ll(e),{recursive:!0});let o=il(e,"w");try{ol(o,JSON.stringify(r))}finally{sl(o)}return{acquired:!0}}catch{return{acquired:!1,reason:"held-but-pid-unknown"}}}function co(e){try{let t=nl(e,"utf-8"),n=JSON.parse(t);return n&&typeof n=="object"&&typeof n.pid=="number"&&typeof n.started_at=="number"?n:null}catch{return null}}function dl(e){if(!Number.isInteger(e)||e<=0)return!1;try{return process.kill(e,0),!0}catch(t){return t.code==="EPERM"}}var wl=new Set([".md"]),kl=new Set(["inbox"]);function bl(e){let t=[];function n(r,o){if(an(r))for(let i of fl(r,{withFileTypes:!0})){if(i.name.startsWith(".")||o===""&&kl.has(i.name))continue;let s=ln(r,i.name);if(i.isDirectory())n(s,o?`${o}/${i.name}`:i.name);else if(i.isFile()){let a=i.name.lastIndexOf("."),l=a===-1?"":i.name.slice(a);wl.has(l)&&t.push(s)}}}return n(e,""),t}function po(e){let t=e.replace(/[^a-zA-Z0-9._-]/g,"_");return ln(Ut,`${t}.json`)}function Sl(e){let t=po(e);if(!an(t))return{files:{},last_synced_at:null};try{return JSON.parse(uo(t,"utf-8"))}catch{return{files:{},last_synced_at:null}}}function $l(e,t){pl(Ut,{recursive:!0}),gl(po(e),JSON.stringify(t,null,2)+`
354
- `,"utf-8")}function vl(e,t){return hl(e,t).split(yl).join("/")}async function xl(e,t){try{let n=await z(`${e}/api/cli/actions/fetch`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:t},body:JSON.stringify({})});if(!n.ok){let o=await n.text().catch(()=>"");return{ok:!1,actions:[],error:`${n.status} ${o.slice(0,200)}`}}let r=await n.json().catch(()=>null);return!r||r.status!=="ok"||!Array.isArray(r.actions)?{ok:!1,actions:[],error:"Malformed response"}:{ok:!0,actions:r.actions}}catch(n){return{ok:!1,actions:[],error:n.message}}}async function _l(e,t,n){try{let r=await z(`${e}/api/cli/sync`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:n},body:JSON.stringify(t)});if(!r.ok){let o=await r.text().catch(()=>"");return{ok:!1,status:r.status,error:o.slice(0,200)}}return{ok:!0,status:r.status}}catch(r){return{ok:!1,status:0,error:r.message}}}async function fo(e,t={}){let n=P();if(!n)return{ok:!0,reason:"no-auth",synced:0,failed:0,errors:[]};let r=x(e);if(!r)return{ok:!0,reason:"no-project",synced:0,failed:0,errors:[]};let o=ln(e,b);if(!an(o))return{ok:!0,reason:"no-project",synced:0,failed:0,errors:[]};if(!ao(e).acquired)return{ok:!0,reason:"busy",synced:0,failed:0,errors:[]};try{return await Cl(e,t,n,r,o)}finally{lo(e)}}async function Cl(e,t,n,r,o){let i=Sl(r.domain),s=bl(o),a=n.api_base||_.BASE,l=`Bearer ${n.user_token}:${n.website_token}`,u=0,d=0,p=[],h=0,m=await El(e,a,l);if(!t.pullOnly)for(let j of s){let Re=vl(o,j);if(t.pathFilter&&!Re.endsWith(t.pathFilter))continue;let ot=ml(j),Nt=i.files[Re];if(!(!Nt||Nt.mtime!==ot.mtimeMs||Nt.size!==ot.size)&&!t.force)continue;h++;let oi=uo(j,"utf-8"),Ft=await _l(a,{path:Re,contents:oi,domain:r.domain},l);Ft.ok?(i.files[Re]={mtime:ot.mtimeMs,size:ot.size},u++):(d++,p.push(`${Re}: ${Ft.status} ${Ft.error??""}`.trim()))}let C=await xl(a,l),I=0,K=0;if(C.ok){let j=Wr(e,C.actions);I=j.wrote,K=j.removed}else C.error&&p.push(`pull actions: ${C.error}`);let E,W=!1,oe=i.last_synced_at;if(!t.pushOnly){let j=await Xr({projectDir:e,apiBase:a,authHeader:l,since:i.last_synced_at,stateFiles:i.files,force:t.force});j.ok?oe=j.cursor:(W=!0,j.error&&p.push(`pull: ${j.error}`)),E={written:j.written,overwritten:j.overwritten,skipped:j.skipped,conflicts:j.conflicts,deleted:j.deleted,warnings:j.warnings}}let ri=!!E&&E.written+E.overwritten+E.deleted+E.conflicts>0;if(i.last_synced_at=oe,$l(r.domain,i),h===0&&I===0&&K===0&&!ri&&m.flushed===0&&m.dropped===0&&!W&&d===0)return{ok:!0,reason:"no-changes",synced:0,failed:0,errors:p,actionsPulled:0,actionsRemoved:0,acksFlushed:0,acksDropped:0,pull:E};let In=d===0&&!W;return{ok:In,reason:In?void 0:"error",synced:u,failed:d,errors:p,actionsPulled:I,actionsRemoved:K,acksFlushed:m.flushed,acksDropped:m.dropped,pull:E}}async function El(e,t,n){let r=vt(e);if(r.length===0)return{flushed:0,dropped:0};let o=0,i=0,s=[];for(let a of r){let l=await Al(a,t,n);l==="flushed"?(o++,s.push(a.action_id)):l==="already-settled"&&(i++,s.push(a.action_id))}return s.length>0&&oo(e,s),{flushed:o,dropped:i}}async function Al(e,t,n){try{let r=await z(`${t}/api/cli/actions/${e.action_id}/ack`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:n},body:JSON.stringify({status:e.status,error_message:e.status==="failed"?e.reason:null,result:e.status==="failed"?{declined:!0,reason:e.reason}:{applied:!0}})});return r.ok?"flushed":r.status===409||r.status>=400&&r.status<500?"already-settled":"transient"}catch{return"transient"}}function mo(e){let t;try{t=x(e)}catch{return{refreshed:!1,reason:"error"}}if(!t)return{refreshed:!1,reason:"no-project"};let n=t.skill_version||t.seoagent_version||"0.0.0";if(ve($,n)<=0){if(!t.skill_version)try{B(e,{skill_version:n})}catch{}return{refreshed:!1,reason:"up-to-date"}}try{return ye(e),B(e,{skill_version:$}),{refreshed:!0,from:n,to:$,reason:"refreshed"}}catch{return{refreshed:!1,reason:"error"}}}function cn(e){let t;try{t=x(e)}catch{return{refreshed:!1,from:null,to:$,reason:"error"}}if(!t)return{refreshed:!1,from:null,to:$,reason:"no-project"};let n=t.skill_version||t.seoagent_version||null;try{return ye(e),B(e,{skill_version:$}),{refreshed:!0,from:n,to:$,reason:"refreshed"}}catch{return{refreshed:!1,from:n,to:$,reason:"error"}}}import{existsSync as Il,mkdirSync as Rl,readFileSync as Pl,writeFileSync as Ol}from"fs";var Tl="https://registry.npmjs.org/@seoagent-official/seoagent/latest",jl=1440*60*1e3,Ll=720*60*1e3,Nl=2e3;function Fl(e,t,n=jl){if(!e.checkedAt)return!0;let r=Date.parse(e.checkedAt);return Number.isNaN(r)?!0:t.getTime()-r>=n}function Dl(e){let{current:t,latest:n,cache:r,now:o}=e,i=e.notifyIntervalMs??Ll;if(!n||ve(n,t)<=0)return null;if(r.notifiedVersion===n&&r.notifiedAt){let s=Date.parse(r.notifiedAt);if(!Number.isNaN(s)&&o.getTime()-s<i)return null}return`\u2191 SEOAgent ${n} is available (you have ${t}). Ask me to run \`seoagent update-cli\`, or run it yourself, to upgrade the CLI + all your projects.`}async function Ul(e){let t=e.readCache();if(Fl(t,e.now,e.checkIntervalMs)){let r=await e.fetchLatest();t={...t,checkedAt:e.now.toISOString(),...r?{latest:r}:{}},e.writeCache(t)}let n=Dl({current:e.current,latest:t.latest,cache:t,now:e.now,notifyIntervalMs:e.notifyIntervalMs});return n&&t.latest&&e.writeCache({...t,notifiedVersion:t.latest,notifiedAt:e.now.toISOString()}),n}function Ml(){try{return Il(st)?JSON.parse(Pl(st,"utf-8")):{}}catch{return{}}}function Bl(e){try{Rl(F,{recursive:!0}),Ol(st,JSON.stringify(e,null,2)+`
355
- `,"utf-8")}catch{}}async function Gl(){try{let e=await fetch(Tl,{headers:{Accept:"application/json"},signal:AbortSignal.timeout(Nl)});if(!e.ok)return null;let t=await e.json();return typeof t.version=="string"?t.version:null}catch{return null}}async function go(e){try{return await Ul({current:e,now:new Date,fetchLatest:Gl,readCache:Ml,writeCache:Bl})}catch{return null}}async function H(e={}){let t=mo(process.cwd());if(t.refreshed){try{se(process.cwd())}catch{}e.silent||c.info(ee.dim(`\u21BB Updated SEOAgent skill ${t.from} \u2192 ${t.to}.`))}ae(process.cwd());let n=await go($);n&&c.message(ee.yellow(n));let r=!e.silent&&!!process.stdout.isTTY,o=e.pullOnly?"Pulling":e.pushOnly?"Pushing":"Syncing",i=r?Kl():null;i?.start(`${o} ${ee.dim(".seoagent/")} with your dashboard\u2026`);let s=await fo(process.cwd(),{pathFilter:e.path,force:e.force,pushOnly:e.pushOnly,pullOnly:e.pullOnly});if(e.silent){s.ok||(process.exitCode=0);return}if(s.reason==="no-auth"){w(i,"info",`Not logged in. Run \`${f("login")}\` to enable cloud sync.`,ee.dim("Not logged in \u2014 cloud sync skipped.")),i&&c.info(`Run \`${f("login")}\` to enable cloud sync.`);return}if(s.reason==="no-project"){w(i,"info",`No SEOAgent project here. Run \`${f("init")}\` first.`,ee.dim("No SEOAgent project \u2014 sync skipped.")),i&&c.info(`Run \`${f("init")}\` first.`);return}if(s.reason==="no-changes"){w(i,"info","Already in sync.",ee.green("Already in sync."));return}if(s.reason==="busy"){w(i,"info","Another sync is in progress \u2014 skipping this run.",ee.dim("Another sync is in progress \u2014 skipping this run."));return}let a=Wl(s);w(i,"success",a??"Sync complete.",ee.green(a??"Sync complete.")),s.synced>0&&c.success(`Synced ${s.synced} file${s.synced===1?"":"s"} to your dashboard.`);let l=s.pull;if(l){let u=l.written+l.overwritten;u>0&&c.success(`Pulled ${u} file${u===1?"":"s"} from the cloud`+(l.overwritten>0?` (${l.overwritten} updated)`:"")),l.deleted>0&&c.info(`Removed ${l.deleted} file${l.deleted===1?"":"s"} deleted in the cloud.`),l.conflicts>0&&c.warn(`${l.conflicts} conflict${l.conflicts===1?"":"s"} \u2014 local changes kept. Re-run with --force to take the cloud version.`);for(let d of l.warnings.slice(0,5))c.info(` \u2022 ${d}`)}if(s.acksFlushed&&s.acksFlushed>0&&c.success(`Flushed ${s.acksFlushed} offline ack${s.acksFlushed===1?"":"s"} from the queue.`),s.acksDropped&&s.acksDropped>0&&c.info(`Dropped ${s.acksDropped} stale ack${s.acksDropped===1?"":"s"} (already settled server-side).`),s.actionsPulled&&s.actionsPulled>0&&(c.success(`Pulled ${s.actionsPulled} pending action${s.actionsPulled===1?"":"s"} \u2192 .seoagent/inbox/`),e.embedded||c.info(' Open Claude Code in this directory and ask it to "process the inbox", or read the files yourself.')),s.actionsRemoved&&s.actionsRemoved>0&&c.info(`Cleaned up ${s.actionsRemoved} stale inbox file${s.actionsRemoved===1?"":"s"}.`),s.failed>0){c.warn(`${s.failed} file${s.failed===1?"":"s"} failed to sync. Will retry next run.`);for(let u of s.errors.slice(0,3))c.info(` \u2022 ${u}`)}}function Wl(e){let t=e.synced,n=e.pull?e.pull.written+e.pull.overwritten:0,r=e.actionsPulled??0,o=e.acksFlushed??0,i=e.pull?.conflicts??0,s=[];return o>0&&s.push(`${o} ack${o===1?"":"s"} flushed`),t>0&&s.push(`${t} pushed`),n>0&&s.push(`${n} pulled`),r>0&&s.push(`${r} action${r===1?"":"s"}`),i>0&&s.push(`${i} conflict${i===1?"":"s"}`),s.length===0&&e.failed===0?null:s.length>0?s.join(" \xB7 "):"Sync complete."}function D(e){let t=x(e);return t||(c.error(`No SEOAgent project here. Run \`${f("init")}\` first.`),process.exitCode=1,null)}async function fe(e={}){if(e.print){let t=P();if(!t){c.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}if(!D(process.cwd()))return;let n=t.api_base||_.BASE,r=await Vr({apiBase:n,authHeader:`Bearer ${t.user_token}:${t.website_token}`,path:e.print});if(!r.ok){c.warn(r.error),process.exitCode=1;return}process.stdout.write(r.body),r.body.endsWith(`
352
+ `;sn(Ee(t,"README.md"),r,"utf-8")}function Qr(e,t){let n=Q(e);Ua(n,{recursive:!0});let r=new Set(t.map(s=>s.id)),o=Ga(n,r),i=0;for(let s of t){let a=Qa(s);a!==null&&(sn(Ee(n,Jr(s)),a,"utf-8"),i++)}return sn(Ee(n,"README.md"),Xa(t),"utf-8"),{wrote:i,removed:o,inboxPath:n}}import{createHash as rl}from"crypto";import{existsSync as eo,mkdirSync as ol,readFileSync as il,statSync as to,writeFileSync as Zr,rmSync as sl}from"fs";import{dirname as al,join as ln,sep as ll}from"path";function tl(e){return e.replace(/^\/+/,"").replace(/\\/g,"/")}var nl=[{cls:"project",test:e=>e==="project.md"},{cls:"audit",test:e=>e==="audit/latest.md"||/^audit\/(critical|high|medium|low)\.md$/.test(e)},{cls:"brief",test:e=>/^briefs\/[^/]+\.md$/.test(e)},{cls:"article",test:e=>/^content\/[^/]+\.md$/.test(e)},{cls:"cluster",test:e=>/^strategy\/clusters\/[^/]+\.md$/.test(e)},{cls:"keywords",test:e=>e==="keywords.md"||/^strategy\/keywords\/[^/]+\.md$/.test(e)},{cls:"pages",test:e=>e==="pages.md"||/^pages\/[^/]+\.md$/.test(e)},{cls:"competitors",test:e=>e==="competitors.md"},{cls:"changelog",test:e=>e==="changelog.md"}];function Xr(e,t){let n=tl(e);for(let{cls:r,test:o}of nl)if(o(n))return t&&(r==="keywords"||r==="pages")?"generated-index":r;return"other"}function cl(e){return"sha256:"+rl("sha256").update(e).digest("hex")}function ul(e,t,n={}){let r=[];for(let o of e.artifacts){let i=t[o.path]??{exists:!1,locallyEdited:!1};if(!i.exists){r.push({path:o.path,kind:"write",body:o.body_md});continue}if(i.contentHash===o.content_hash){r.push({path:o.path,kind:"skip"});continue}if(o.generated){r.push({path:o.path,kind:"overwrite",body:o.body_md,note:i.locallyEdited?"discarded local edits \u2014 this is a cloud-generated file (edit it in the dashboard)":void 0});continue}if(i.locallyEdited&&!n.force){r.push({path:o.path,kind:"conflict",note:"local newer than cloud, keeping local \u2014 use --force to take cloud"});continue}r.push({path:o.path,kind:"overwrite",body:o.body_md})}for(let o of e.deleted){let i=t[o];if(!(!i||!i.exists)){if(i.locallyEdited&&!n.force){r.push({path:o,kind:"delete-skipped",note:"server deleted this but it has local edits \u2014 keeping it (use --force to delete)"});continue}r.push({path:o,kind:"delete"})}}return r}function dl(e,t,n,r){let o=new Map;for(let s of t.artifacts)o.set(s.path,s.generated);let i=[];for(let s of e)s.kind!=="skip"&&i.push({path:s.path,kind:s.kind,class:Xr(s.path,o.get(s.path)??!1),...s.note?{note:s.note}:{}});return i.length===0?null:{pulled_at:r,cursor:n,changes:i}}async function no(e){let t=await oo({apiBase:e.apiBase,authHeader:e.authHeader,since:null,fetchImpl:e.fetchImpl});if(!t.ok)return{ok:!1,error:t.error};let n=e.path.replace(/^\/+/,"").replace(/\\/g,"/"),r=t.manifest.artifacts.find(o=>o.path===n);return r?{ok:!0,body:r.body_md}:{ok:!1,error:`No cloud artifact found at "${n}"`}}function ro(e,t){return ln(e,t.split("/").join(ll))}function pl(e,t,n){let r={};for(let o of t){let i=ro(e,o);if(!eo(i)){r[o]={exists:!1,locallyEdited:!1};continue}let s=to(i),a=n[o],c=!a||a.mtime!==s.mtimeMs||a.size!==s.size;r[o]={exists:!0,contentHash:cl(il(i,"utf-8")),locallyEdited:c}}return r}async function oo(e){let t=e.fetchImpl??fetch,n=`${e.apiBase}/api/cli/sync`+(e.since?`?since=${encodeURIComponent(e.since)}`:"");try{let r=await t(n,{method:"GET",headers:{Authorization:e.authHeader,Accept:"application/json"}});if(!r.ok){let i=await r.text().catch(()=>"");return{ok:!1,error:`${r.status} ${i.slice(0,200)}`.trim()}}let o=await r.json().catch(()=>null);return!o||!Array.isArray(o.artifacts)||typeof o.now!="string"?{ok:!1,error:"Malformed manifest response"}:(Array.isArray(o.deleted)||(o.deleted=[]),{ok:!0,manifest:o})}catch(r){return{ok:!1,error:r.message}}}async function io(e){let t=ln(e.projectDir,b),n={ok:!0,written:0,overwritten:0,skipped:0,conflicts:0,deleted:0,warnings:[],cursor:e.since};if(!eo(t))return{...n,ok:!0};let r=await oo({apiBase:e.apiBase,authHeader:e.authHeader,since:e.since,fetchImpl:e.fetchImpl});if(!r.ok)return{...n,ok:!1,error:r.error};let o=r.manifest,i=[...o.artifacts.map(d=>d.path),...o.deleted],s=pl(t,i,e.stateFiles),a=ul(o,s,{force:e.force}),c={...n,cursor:o.now};for(let d of a){let p=ro(t,d.path);try{switch(d.kind){case"skip":c.skipped++;break;case"write":case"overwrite":{ol(al(p),{recursive:!0}),Zr(p,d.body??"","utf-8");let h=to(p);e.stateFiles[d.path]={mtime:h.mtimeMs,size:h.size},d.kind==="write"?c.written++:c.overwritten++,d.note&&c.warnings.push(`${d.path}: ${d.note}`);break}case"conflict":c.conflicts++,c.warnings.push(`${d.path}: ${d.note??"conflict"}`);break;case"delete":sl(p,{force:!0}),delete e.stateFiles[d.path],c.deleted++;break;case"delete-skipped":c.conflicts++,c.warnings.push(`${d.path}: ${d.note??"delete skipped"}`);break}}catch(h){c.ok=!1,c.error=`${d.path}: ${h.message}`}}(c.conflicts>0||!c.ok)&&(c.cursor=e.since);let u=dl(a,o,c.cursor,new Date().toISOString());if(u)try{Zr(ln(t,Fn),JSON.stringify(u,null,2)+`
353
+ `,"utf-8")}catch{}return c}import{existsSync as ao,mkdirSync as lo,readFileSync as fl,writeFileSync as cn}from"fs";import{dirname as co,join as ml}from"path";var un=1,so=500;function dn(e){return ml(e,b,Dn)}function Et(e){let t=dn(e);if(!ao(t))return[];try{let n=fl(t,"utf-8"),r=JSON.parse(n);if(!r||typeof r!="object")return[];let o=r;return o.version!==un||!Array.isArray(o.entries)?[]:o.entries.filter(gl)}catch{return[]}}function uo(e,t){let n=dn(e),o=Et(e).filter(a=>a.action_id!==t.action_id);o.push({action_id:t.action_id,status:t.status,reason:t.reason,queued_at:new Date().toISOString()});let i=o.length>so?o.slice(-so):o,s={version:un,entries:i};try{lo(co(n),{recursive:!0}),cn(n,JSON.stringify(s,null,2),"utf-8")}catch{}}function po(e,t){if(t.length===0)return;let n=dn(e),r=Et(e).filter(i=>!t.includes(i.action_id)),o={version:un,entries:r};try{if(r.length===0&&ao(n)){cn(n,JSON.stringify(o,null,2),"utf-8");return}lo(co(n),{recursive:!0}),cn(n,JSON.stringify(o,null,2),"utf-8")}catch{}}function gl(e){if(!e||typeof e!="object")return!1;let t=e;return typeof t.action_id=="number"&&(t.status==="completed"||t.status==="failed")&&(t.reason===null||typeof t.reason=="string")&&typeof t.queued_at=="string"}import{existsSync as fo,readFileSync as hl,unlinkSync as yl,writeFileSync as wl,openSync as kl,closeSync as bl,mkdirSync as $l}from"fs";import{dirname as Sl,join as vl}from"path";var xl=6e4;function mo(e){return vl(e,b,Un)}function go(e,t={}){let n=t.now??Date.now,r=t.pid??process.pid,o=t.staleMs??xl,i=mo(e);if(!fo(i))return At(i,r,n());let s=yo(i);return!s||n()-s.started_at>o||!_l(s.pid)?At(i,r,n()):{acquired:!1,reason:"held-by-live-process",held_by_pid:s.pid}}function ho(e,t={}){let n=t.pid??process.pid,r=mo(e);if(!fo(r))return;let o=yo(r);if(!(o&&o.pid!==n))try{yl(r)}catch{}}function At(e,t,n){let r={pid:t,started_at:n};try{$l(Sl(e),{recursive:!0});let o=kl(e,"w");try{wl(o,JSON.stringify(r))}finally{bl(o)}return{acquired:!0}}catch{return{acquired:!1,reason:"held-but-pid-unknown"}}}function yo(e){try{let t=hl(e,"utf-8"),n=JSON.parse(t);return n&&typeof n=="object"&&typeof n.pid=="number"&&typeof n.started_at=="number"?n:null}catch{return null}}function _l(e){if(!Number.isInteger(e)||e<=0)return!1;try{return process.kill(e,0),!0}catch(t){return t.code==="EPERM"}}var Ol=new Set([".md"]),Tl=new Set(["inbox"]);function jl(e){let t=[];function n(r,o){if(pn(r))for(let i of El(r,{withFileTypes:!0})){if(i.name.startsWith(".")||o===""&&Tl.has(i.name))continue;let s=fn(r,i.name);if(i.isDirectory())n(s,o?`${o}/${i.name}`:i.name);else if(i.isFile()){let a=i.name.lastIndexOf("."),c=a===-1?"":i.name.slice(a);Ol.has(c)&&t.push(s)}}}return n(e,""),t}function ko(e){let t=e.replace(/[^a-zA-Z0-9._-]/g,"_");return fn(Gt,`${t}.json`)}function Ll(e){let t=ko(e);if(!pn(t))return{files:{},last_synced_at:null};try{return JSON.parse(wo(t,"utf-8"))}catch{return{files:{},last_synced_at:null}}}function Nl(e,t){Cl(Gt,{recursive:!0}),Il(ko(e),JSON.stringify(t,null,2)+`
354
+ `,"utf-8")}function Fl(e,t){return Rl(e,t).split(Pl).join("/")}async function Dl(e,t){try{let n=await J(`${e}/api/cli/actions/fetch`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:t},body:JSON.stringify({})});if(!n.ok){let o=await n.text().catch(()=>"");return{ok:!1,actions:[],error:`${n.status} ${o.slice(0,200)}`}}let r=await n.json().catch(()=>null);return!r||r.status!=="ok"||!Array.isArray(r.actions)?{ok:!1,actions:[],error:"Malformed response"}:{ok:!0,actions:r.actions}}catch(n){return{ok:!1,actions:[],error:n.message}}}async function Ul(e,t,n){try{let r=await J(`${e}/api/cli/sync`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:n},body:JSON.stringify(t)});if(!r.ok){let o=await r.text().catch(()=>"");return{ok:!1,status:r.status,error:o.slice(0,200)}}return{ok:!0,status:r.status}}catch(r){return{ok:!1,status:0,error:r.message}}}async function bo(e,t={}){let n=P();if(!n)return{ok:!0,reason:"no-auth",synced:0,failed:0,errors:[]};let r=S(e);if(!r)return{ok:!0,reason:"no-project",synced:0,failed:0,errors:[]};let o=fn(e,b);if(!pn(o))return{ok:!0,reason:"no-project",synced:0,failed:0,errors:[]};if(!go(e).acquired)return{ok:!0,reason:"busy",synced:0,failed:0,errors:[]};try{return await Ml(e,t,n,r,o)}finally{ho(e)}}async function Ml(e,t,n,r,o){let i=Ll(r.domain),s=jl(o),a=n.api_base||C.BASE,c=`Bearer ${n.user_token}:${n.website_token}`,u=0,d=0,p=[],h=0,m=await Bl(e,a,c);if(!t.pullOnly)for(let j of s){let Te=Fl(o,j);if(t.pathFilter&&!Te.endsWith(t.pathFilter))continue;let at=Al(j),Mt=i.files[Te];if(!(!Mt||Mt.mtime!==at.mtimeMs||Mt.size!==at.size)&&!t.force)continue;h++;let pi=wo(j,"utf-8"),Bt=await Ul(a,{path:Te,contents:pi,domain:r.domain},c);Bt.ok?(i.files[Te]={mtime:at.mtimeMs,size:at.size},u++):(d++,p.push(`${Te}: ${Bt.status} ${Bt.error??""}`.trim()))}let E=await Dl(a,c),I=0,G=0;if(E.ok){let j=Qr(e,E.actions);I=j.wrote,G=j.removed}else E.error&&p.push(`pull actions: ${E.error}`);let _,q=!1,se=i.last_synced_at;if(!t.pushOnly){let j=await io({projectDir:e,apiBase:a,authHeader:c,since:i.last_synced_at,stateFiles:i.files,force:t.force});j.ok?se=j.cursor:(q=!0,j.error&&p.push(`pull: ${j.error}`)),_={written:j.written,overwritten:j.overwritten,skipped:j.skipped,conflicts:j.conflicts,deleted:j.deleted,warnings:j.warnings}}let di=!!_&&_.written+_.overwritten+_.deleted+_.conflicts>0;if(i.last_synced_at=se,Nl(r.domain,i),h===0&&I===0&&G===0&&!di&&m.flushed===0&&m.dropped===0&&!q&&d===0)return{ok:!0,reason:"no-changes",synced:0,failed:0,errors:p,actionsPulled:0,actionsRemoved:0,acksFlushed:0,acksDropped:0,pull:_};let jn=d===0&&!q;return{ok:jn,reason:jn?void 0:"error",synced:u,failed:d,errors:p,actionsPulled:I,actionsRemoved:G,acksFlushed:m.flushed,acksDropped:m.dropped,pull:_}}async function Bl(e,t,n){let r=Et(e);if(r.length===0)return{flushed:0,dropped:0};let o=0,i=0,s=[];for(let a of r){let c=await Gl(a,t,n);c==="flushed"?(o++,s.push(a.action_id)):c==="already-settled"&&(i++,s.push(a.action_id))}return s.length>0&&po(e,s),{flushed:o,dropped:i}}async function Gl(e,t,n){try{let r=await J(`${t}/api/cli/actions/${e.action_id}/ack`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:n},body:JSON.stringify({status:e.status,error_message:e.status==="failed"?e.reason:null,result:e.status==="failed"?{declined:!0,reason:e.reason}:{applied:!0}})});return r.ok?"flushed":r.status===409||r.status>=400&&r.status<500?"already-settled":"transient"}catch{return"transient"}}function $o(e){let t;try{t=S(e)}catch{return{refreshed:!1,reason:"error"}}if(!t)return{refreshed:!1,reason:"no-project"};let n=t.skill_version||t.seoagent_version||"0.0.0";if(_e(v,n)<=0){if(!t.skill_version)try{W(e,{skill_version:n})}catch{}return{refreshed:!1,reason:"up-to-date"}}try{return we(e),W(e,{skill_version:v}),{refreshed:!0,from:n,to:v,reason:"refreshed"}}catch{return{refreshed:!1,reason:"error"}}}function mn(e){let t;try{t=S(e)}catch{return{refreshed:!1,from:null,to:v,reason:"error"}}if(!t)return{refreshed:!1,from:null,to:v,reason:"no-project"};let n=t.skill_version||t.seoagent_version||null;try{return we(e),W(e,{skill_version:v}),{refreshed:!0,from:n,to:v,reason:"refreshed"}}catch{return{refreshed:!1,from:n,to:v,reason:"error"}}}import{existsSync as Wl,mkdirSync as Kl,readFileSync as ql,writeFileSync as Hl}from"fs";var Yl="https://registry.npmjs.org/@seoagent-official/seoagent/latest",zl=1440*60*1e3,Vl=720*60*1e3,Jl=2e3;function Ql(e,t,n=zl){if(!e.checkedAt)return!0;let r=Date.parse(e.checkedAt);return Number.isNaN(r)?!0:t.getTime()-r>=n}function Xl(e){let{current:t,latest:n,cache:r,now:o}=e,i=e.notifyIntervalMs??Vl;if(!n||_e(n,t)<=0)return null;if(r.notifiedVersion===n&&r.notifiedAt){let s=Date.parse(r.notifiedAt);if(!Number.isNaN(s)&&o.getTime()-s<i)return null}return`\u2191 SEOAgent ${n} is available (you have ${t}). Ask me to run \`seoagent update-cli\`, or run it yourself, to upgrade the CLI + all your projects.`}async function Zl(e){let t=e.readCache();if(Ql(t,e.now,e.checkIntervalMs)){let r=await e.fetchLatest();t={...t,checkedAt:e.now.toISOString(),...r?{latest:r}:{}},e.writeCache(t)}let n=Xl({current:e.current,latest:t.latest,cache:t,now:e.now,notifyIntervalMs:e.notifyIntervalMs});return n&&t.latest&&e.writeCache({...t,notifiedVersion:t.latest,notifiedAt:e.now.toISOString()}),n}function ec(){try{return Wl(ut)?JSON.parse(ql(ut,"utf-8")):{}}catch{return{}}}function tc(e){try{Kl(F,{recursive:!0}),Hl(ut,JSON.stringify(e,null,2)+`
355
+ `,"utf-8")}catch{}}async function nc(){try{let e=await fetch(Yl,{headers:{Accept:"application/json"},signal:AbortSignal.timeout(Jl)});if(!e.ok)return null;let t=await e.json();return typeof t.version=="string"?t.version:null}catch{return null}}async function So(e){try{return await Zl({current:e,now:new Date,fetchLatest:nc,readCache:ec,writeCache:tc})}catch{return null}}async function Y(e={}){let t=$o(process.cwd());if(t.refreshed){try{le(process.cwd())}catch{}e.silent||l.info(ne.dim(`\u21BB Updated SEOAgent skill ${t.from} \u2192 ${t.to}.`))}ce(process.cwd());let n=await So(v);n&&l.message(ne.yellow(n));let r=!e.silent&&!!process.stdout.isTTY,o=e.pullOnly?"Pulling":e.pushOnly?"Pushing":"Syncing",i=r?rc():null;i?.start(`${o} ${ne.dim(".seoagent/")} with your dashboard\u2026`);let s=await bo(process.cwd(),{pathFilter:e.path,force:e.force,pushOnly:e.pushOnly,pullOnly:e.pullOnly});if(e.silent){s.ok||(process.exitCode=0);return}if(s.reason==="no-auth"){w(i,"info",`Not logged in. Run \`${f("login")}\` to enable cloud sync.`,ne.dim("Not logged in \u2014 cloud sync skipped.")),i&&l.info(`Run \`${f("login")}\` to enable cloud sync.`);return}if(s.reason==="no-project"){w(i,"info",`No SEOAgent project here. Run \`${f("init")}\` first.`,ne.dim("No SEOAgent project \u2014 sync skipped.")),i&&l.info(`Run \`${f("init")}\` first.`);return}if(s.reason==="no-changes"){w(i,"info","Already in sync.",ne.green("Already in sync."));return}if(s.reason==="busy"){w(i,"info","Another sync is in progress \u2014 skipping this run.",ne.dim("Another sync is in progress \u2014 skipping this run."));return}let a=oc(s);w(i,"success",a??"Sync complete.",ne.green(a??"Sync complete.")),s.synced>0&&l.success(`Synced ${s.synced} file${s.synced===1?"":"s"} to your dashboard.`);let c=s.pull;if(c){let u=c.written+c.overwritten;u>0&&l.success(`Pulled ${u} file${u===1?"":"s"} from the cloud`+(c.overwritten>0?` (${c.overwritten} updated)`:"")),c.deleted>0&&l.info(`Removed ${c.deleted} file${c.deleted===1?"":"s"} deleted in the cloud.`),c.conflicts>0&&l.warn(`${c.conflicts} conflict${c.conflicts===1?"":"s"} \u2014 local changes kept. Re-run with --force to take the cloud version.`);for(let d of c.warnings.slice(0,5))l.info(` \u2022 ${d}`)}if(s.acksFlushed&&s.acksFlushed>0&&l.success(`Flushed ${s.acksFlushed} offline ack${s.acksFlushed===1?"":"s"} from the queue.`),s.acksDropped&&s.acksDropped>0&&l.info(`Dropped ${s.acksDropped} stale ack${s.acksDropped===1?"":"s"} (already settled server-side).`),s.actionsPulled&&s.actionsPulled>0&&(l.success(`Pulled ${s.actionsPulled} pending action${s.actionsPulled===1?"":"s"} \u2192 .seoagent/inbox/`),e.embedded||l.info(' Open Claude Code in this directory and ask it to "process the inbox", or read the files yourself.')),s.actionsRemoved&&s.actionsRemoved>0&&l.info(`Cleaned up ${s.actionsRemoved} stale inbox file${s.actionsRemoved===1?"":"s"}.`),s.failed>0){l.warn(`${s.failed} file${s.failed===1?"":"s"} failed to sync. Will retry next run.`);for(let u of s.errors.slice(0,3))l.info(` \u2022 ${u}`)}}function oc(e){let t=e.synced,n=e.pull?e.pull.written+e.pull.overwritten:0,r=e.actionsPulled??0,o=e.acksFlushed??0,i=e.pull?.conflicts??0,s=[];return o>0&&s.push(`${o} ack${o===1?"":"s"} flushed`),t>0&&s.push(`${t} pushed`),n>0&&s.push(`${n} pulled`),r>0&&s.push(`${r} action${r===1?"":"s"}`),i>0&&s.push(`${i} conflict${i===1?"":"s"}`),s.length===0&&e.failed===0?null:s.length>0?s.join(" \xB7 "):"Sync complete."}function D(e){let t=S(e);return t||(l.error(`No SEOAgent project here. Run \`${f("init")}\` first.`),process.exitCode=1,null)}async function me(e={}){if(e.print){let t=P();if(!t){l.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}if(!D(process.cwd()))return;let n=t.api_base||C.BASE,r=await no({apiBase:n,authHeader:`Bearer ${t.user_token}:${t.website_token}`,path:e.print});if(!r.ok){l.warn(r.error),process.exitCode=1;return}process.stdout.write(r.body),r.body.endsWith(`
356
356
  `)||process.stdout.write(`
357
- `);return}await H({pullOnly:!0,force:e.force,silent:e.silent,embedded:e.embedded})}import{existsSync as ql,readdirSync as Hl,unlinkSync as Yl}from"fs";import{join as ho}from"path";import{isCancel as zl,select as Vl}from"@clack/prompts";async function te(e,t={}){let n=null;if(e){let u=Number.parseInt(e,10);if(Number.isNaN(u)||u<=0){c.error(`Invalid action id: "${e}"`),process.exitCode=1;return}n=u}else if(n=await Jl(),n===null)return;let r=n,o=P();if(!o){c.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}if(!D(process.cwd()))return;let i=o.api_base||_.BASE,s=`Bearer ${o.user_token}:${o.website_token}`,a=t.failed?"failed":"completed",l;try{l=await z(`${i}/api/cli/actions/${r}/ack`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:s},body:JSON.stringify({status:a,error_message:t.failed&&t.reason?t.reason:null,result:t.failed?{declined:!0,reason:t.reason??null}:{applied:!0}})})}catch{ro(process.cwd(),{action_id:r,status:a,reason:t.failed?t.reason??null:null}),un(r),$t(process.cwd()),t.silent||c.warn(`Network unavailable \u2014 ack queued locally. Run \`${f("sync")}\` when you're back online; it'll flush automatically.`);return}if(!l.ok){let u=await l.text().catch(()=>""),d=null;try{d=JSON.parse(u)}catch{d=null}if(l.status===409&&d?.code==="already_acked"){un(r),$t(process.cwd());let C=typeof d.error=="string"?d.error.match(/'([^']+)'/)?.[1]??"settled":"settled";t.silent||c.success(`Action ${r} was already ${C}.`);return}let p=typeof d?.code=="string"?d.code:null,h=typeof d?.error=="string"?d.error:u,m=p?`, code: ${p}`:"";c.error(`Server rejected ack (${l.status}${m}): ${h.slice(0,200)}`),process.exitCode=1;return}un(r),$t(process.cwd()),!t.silent&&(t.failed?c.success(`Action ${r} marked failed${t.reason?` (reason: ${t.reason})`:""}.`):c.success(`Action ${r} marked completed.`),c.info(` inbox location: ${ho(b,"inbox")}`))}function un(e){let t=V(process.cwd());if(ql(t)){for(let n of Hl(t))if(n.endsWith(`-${e}.md`))try{Yl(ho(t,n))}catch{}}}async function Jl(){let e=process.cwd(),t=pe(e);if(t.length===0)return c.info("No pending actions in .seoagent/inbox/."),c.message(`Run \`${f("sync")}\` to pull anything autopilot has queued.`),null;if(!process.stdout.isTTY)return c.error(`Cannot show interactive picker in non-TTY mode. Pass an action id explicitly, or run \`${f("inbox")}\` to see what's pending.`),process.exitCode=1,null;let n=await Vl({message:`Which action do you want to close out? (${t.length} pending)`,options:t.map(r=>({value:r.id,label:Ce(r)}))});return zl(n)?(c.info("Cancelled \u2014 no action closed out."),null):n}import _t from"picocolors";async function dn(e={}){let t=process.cwd();if(!e.json&&!D(t))return;let n=pe(t);if(e.json){process.stdout.write(JSON.stringify({count:n.length,inbox_path:V(t),actions:n})+`
358
- `);return}if(n.length===0){c.info(_t.dim("No pending actions.")),c.message(`Run \`${f("sync")}\` to pull anything autopilot has queued, or \`${f("autopilot status")}\` to check whether autopilot is on.`);return}c.message(`${_t.bold("SEOAgent inbox")} \xB7 ${n.length} pending action${n.length===1?"":"s"}`),c.message("");for(let r of n)c.message(Ce(r));c.message(""),c.message(`Apply one: ${_t.bold(f("ack <id>"))} \xB7 Interactive picker: ${_t.bold(f("ack"))} (no id)`)}import{readFileSync as sc}from"fs";import{join as ac,relative as lc}from"path";import{confirm as So,isCancel as Et,multiselect as cc,note as xo,select as uc}from"@clack/prompts";import g from"picocolors";import{query as dc}from"@anthropic-ai/claude-agent-sdk";import{existsSync as Ql,readdirSync as Xl}from"fs";import{homedir as Zl}from"os";import{join as ec}from"path";import{execSync as pn}from"child_process";function He(){return process.env.ANTHROPIC_API_KEY?"env-key":process.env.CLAUDE_CODE_USE_BEDROCK==="1"||process.env.CLAUDE_CODE_USE_VERTEX==="1"||process.env.CLAUDE_CODE_USE_FOUNDRY==="1"||process.env.CLAUDE_CODE_USE_ANTHROPIC_AWS==="1"?"enterprise":tc()?nc()?"claude-session-likely":"claude-installed-no-session":"not-installed"}function tc(){let e=process.platform==="win32"?"where claude":"command -v claude";try{return pn(e,{stdio:"ignore"}),!0}catch{return!1}}function nc(){let e=ec(Zl(),".claude");if(!Ql(e))return!1;try{return Xl(e).filter(n=>!n.startsWith(".DS_Store")).length>0}catch{return!1}}function yo(){try{return pn("npm install -g @anthropic-ai/claude-code",{stdio:"inherit"}),{ok:!0}}catch(e){return{ok:!1,error:e.message}}}function wo(){try{return pn("claude login",{stdio:"inherit"}),{ok:!0}}catch(e){return{ok:!1,error:e.message}}}var J={"env-key":{summary:"Using ANTHROPIC_API_KEY env var.",next:""},enterprise:{summary:"Using enterprise provider (Bedrock / Vertex / Foundry).",next:""},"claude-session-likely":{summary:"Using your existing `claude login` session.",next:""},"claude-installed-no-session":{summary:"Claude Code is installed but you are not logged in.",next:"Run `claude login` to sign in with your Claude.ai / Pro / Max account, or set `ANTHROPIC_API_KEY` and re-run."},"not-installed":{summary:"Claude Code is not installed on this machine.",next:"Install it with `npm install -g @anthropic-ai/claude-code` then `claude login`, or set `ANTHROPIC_API_KEY` (get one at https://console.anthropic.com/) and re-run."}};import{marked as bo}from"marked";import{markedTerminal as rc}from"marked-terminal";import fn from"picocolors";var ko=!1;function oc(){ko||(bo.use(rc({reflowText:!1,width:100})),ko=!0)}function Ct(e){if(!e)return e;oc();try{let t=bo.parse(e);return typeof t=="string"?ic(t):e}catch{return e}}function ic(e){return e.replace(/`([^`\n]+)`/g,(t,n)=>fn.yellow(n)).replace(/\*\*([^*\n]+)\*\*/g,(t,n)=>fn.bold(n)).replace(/(^|[\s(])\*([^*\s][^*\n]*?)\*(?=[\s.,;:!?)]|$)/gm,(t,n,r)=>n+fn.italic(r))}async function gn(e={}){let t=process.cwd();if(!D(t))return;if(!process.stdout.isTTY&&!e.yes){c.error(`\`${f("process")}\` needs an interactive TTY for the sync + selection prompts. Use \`--yes\` to skip prompts and process everything (for CI/CD).`),process.exitCode=1;return}if(!await yc(e.yes)){process.exitCode=1;return}if(e.yes)await H({embedded:!0});else{let u=await uc({message:"Sync the inbox before processing?",options:[{value:"sync",label:"Sync (recommended) \u2014 pull pending actions + push local changes"},{value:"pull",label:"Pull only \u2014 get new actions, skip pushing your local changes"},{value:"skip",label:"Skip \u2014 use the current local inbox state"}],initialValue:"sync"});if(Et(u)){c.info("Cancelled.");return}u==="sync"?await H({embedded:!0}):u==="pull"&&await fe({embedded:!0})}let r=pe(t);if(r.length===0){c.info(g.dim("No pending actions to process. Inbox is empty."));return}let o;if(e.yes)o=r.map(u=>u.id),c.message(`Processing all ${r.length} pending action${r.length===1?"":"s"}\u2026`);else{let u=r.some(m=>m.priority!==null),d=u?r.filter(m=>m.priority==="high").map(m=>m.id):r.map(m=>m.id),p=u&&d.length===0?" (no high-priority actions \u2014 toggle to select)":u?` (${d.length} high-priority pre-selected \u2014 space to toggle)`:" (space to toggle)",h=await cc({message:`Which actions to process? ${r.length} pending \u2014${p}`,options:r.map(m=>({value:m.id,label:Ce(m)})),initialValues:d,required:!1});if(Et(h)){c.info("Cancelled \u2014 no actions processed.");return}if(!Array.isArray(h)||h.length===0){c.info("No actions selected. Nothing to do.");return}o=h}let i=0,s=0,a=0,l=Date.now();for(let u=0;u<o.length;u++){let d=o[u],p=r.find(E=>E.id===d);if(!p)continue;pc({index:u+1,total:o.length,entry:p});let h=ac(V(t),p.filename),m;try{m=sc(h,"utf-8")}catch(E){c.error(` Could not read ${p.filename}: ${E.message}`),a++;continue}let C=Date.now(),I=await hc({cwd:t,entry:p,actionContent:m,model:e.model}),K=$o(Date.now()-C);if(I.kind==="applied")try{await te(String(d),{silent:!0}),i++,c.message("");let E=I.summary?`
359
- `+g.dim(" "+I.summary):"";c.message(` ${g.green("\u2713")} id ${d} ${g.dim("\u2014 applied in "+K)}${E}`)}catch(E){c.warn(` Applied but ack failed: ${E.message}. Run \`seoagent ack ${d}\` to retry.`)}else if(I.kind==="declined")try{await te(String(d),{silent:!0,failed:!0,reason:I.reason}),s++,c.message(""),c.message(` ${g.yellow("\u2298")} id ${d} ${g.dim("\u2014 declined: "+G(I.reason,100))}`)}catch(E){c.warn(` Could not ack decline: ${E.message}. Run \`seoagent ack ${d} --failed --reason "${I.reason.replace(/"/g,'\\"')}"\` to retry.`)}else a++,c.message(""),c.message(` ${g.red("\u2717")} id ${d} ${g.dim("\u2014 agent did not converge after "+K)}`)}mc({applied:i,declined:s,failed:a,total:o.length,elapsed:$o(Date.now()-l)})}function pc(e){let{index:t,total:n,entry:r}=e,o=r.issue??r.action_type.replace(/^cli_/,"").replace(/_/g,"-"),i=r.severity??"unknown",s=fc[i]??g.dim,a=[g.bold(`[${t}/${n}]`),g.dim("\xB7"),g.bold(`id ${r.id}`),g.dim("\xB7"),g.cyan(o),s(i)].join(" ");xo(r.title,a)}var fc={critical:e=>g.red(g.bold(e)),high:g.red,medium:g.yellow,low:g.dim};function mc(e){let{applied:t,declined:n,failed:r,total:o,elapsed:i}=e,s=t+n,a;if(s===o&&r===0)a=n===0?g.green(`\u2713 ${t}/${o} applied`):g.green(`\u2713 ${t}/${o} applied \xB7 ${n} declined`);else if(s===0)a=g.red(`\u2717 0/${o} applied`);else{let l=[`${t}/${o} applied`];n>0&&l.push(`${n} declined`),r>0&&l.push(`${r} failed`),a=g.yellow(`\u25D0 ${l.join(" \xB7 ")}`)}xo(`${a}
360
- ${g.dim("elapsed: "+i)}`,g.bold("Done"))}function $o(e){if(e<1e3)return`${e}ms`;let t=Math.round(e/1e3);if(t<60)return`${t}s`;let n=Math.floor(t/60),r=t%60;if(n<60)return r>0?`${n}m ${r}s`:`${n}m`;let o=Math.floor(n/60),i=n%60;return i>0?`${o}h ${i}m`:`${o}h`}function gc(e){if(typeof e!="string"||!e)return null;let t=e.split(`
361
- `);for(let n=t.length-1;n>=0;n--){let r=t[n].match(/^__(APPLIED|DECLINED)__:\s*(.*)$/);if(!r)continue;let o=r[2].trim();return r[1]==="APPLIED"?{kind:"applied",summary:o}:{kind:"declined",reason:o}}return null}async function hc(e){let{cwd:t,entry:n,actionContent:r,model:o}=e,i=Ec(n,r);try{let s=dc({prompt:i,options:{cwd:t,allowedTools:["Read","Write","Edit","Bash","Grep","Glob"],permissionMode:"acceptEdits",...o?{model:o}:{}}}),a={toolUseById:new Map};for await(let l of s)if(l.type==="assistant"){let u=l.message.content;if(Array.isArray(u))for(let d of u)kc(d,a)}else if(l.type==="user"){let u=l.message.content;if(Array.isArray(u))for(let d of u)$c(d,a)}else if(l.type==="result"){if(process.stdout.write(`
362
- `),!(l.subtype==="success"&&!l.is_error))return{kind:"failed"};let d=gc(l.result);return d?.kind==="declined"?{kind:"declined",reason:d.reason}:{kind:"applied",summary:d?.kind==="applied"?d.summary:void 0}}return{kind:"failed"}}catch(s){return process.stdout.write(`
363
- `),c.error(` Agent error: ${s.message}`),{kind:"failed"}}}async function yc(e){let t=He();if(t==="env-key"||t==="enterprise"||t==="claude-session-likely")return c.info(g.dim(J[t].summary)),!0;if(c.warn(J[t].summary),c.message(` ${J[t].next}`),e)return!1;if(t==="not-installed"){let n=await So({message:"Install Claude Code globally now? (runs `npm install -g @anthropic-ai/claude-code`)",initialValue:!0});if(Et(n)||!n)return c.info("Skipped install. Set up auth and re-run when ready."),!1;c.message(g.dim("Installing @anthropic-ai/claude-code globally\u2026"));let r=yo();if(!r.ok)return c.error(`Install failed: ${r.error}`),c.message("Try running the install manually, or set `ANTHROPIC_API_KEY` and re-run."),!1;t=He()}if(t==="claude-installed-no-session"||t==="not-installed"){let n=await So({message:"Run `claude login` now to sign in?",initialValue:!0});if(Et(n)||!n)return c.info("Skipped login. Run `claude login` when ready and try again."),!1;c.message(g.dim("Launching `claude login`\u2026"));let r=wo();if(!r.ok)return c.error(`Login failed: ${r.error}`),!1}return!0}function wc(e){return typeof e=="object"&&e!==null&&e.type==="text"&&typeof e.text=="string"}function kc(e,t){if(!e||typeof e!="object")return;let n=e.type;if(n==="text"&&wc(e)){process.stdout.write(Ct(e.text));return}if(n==="tool_use"){let r=String(e.id??""),o=String(e.name??"unknown"),i=e.input;r&&t.toolUseById.set(r,{name:o,input:i});let s=Sc[o]??g.cyan,a=Cc(o,i);process.stdout.write(s(bc)+" "+g.bold(o)+g.dim("(")+a+g.dim(")")+`
364
- `);return}if(n==="thinking"){let r=e.thinking;typeof r=="string"&&r.trim()&&process.stdout.write(g.dim(g.italic(" "+G(r,200)))+`
365
- `)}}var bc="\u23FA",vo="\u23BF",Sc={Read:g.blue,Glob:g.cyan,Grep:g.cyan,Edit:g.yellow,Write:g.magenta,Bash:g.green,WebFetch:g.magenta,WebSearch:g.magenta};function $c(e,t){if(!e||typeof e!="object"||e.type!=="tool_result")return;let n=e.is_error===!0,r=String(e.tool_use_id??""),o=r?t.toolUseById.get(r):void 0,i=o?.name,s=e.content,a=vc(s);if(n){process.stdout.write(g.red(` ${vo} Error`)+`
366
- `),a&&process.stdout.write(_c(G(a,500)," ",g.red)+`
367
- `);return}let l=xc(i,a,o?.input);l&&process.stdout.write(g.dim(` ${vo} `)+l+`
368
- `)}function vc(e){return typeof e=="string"?e:Array.isArray(e)?e.map(t=>typeof t=="string"?t:t&&typeof t=="object"&&typeof t.text=="string"?t.text:"").join(""):""}function xc(e,t,n){if(!e)return"";switch(e){case"Read":{let r=(t.match(/^\s*\d+→/gm)??[]).length,o=r>0?r:t.split(`
357
+ `);return}await Y({pullOnly:!0,force:e.force,silent:e.silent,embedded:e.embedded})}import{existsSync as ic,readdirSync as sc,unlinkSync as ac}from"fs";import{join as vo}from"path";import{isCancel as lc,select as cc}from"@clack/prompts";async function re(e,t={}){let n=null;if(e){let u=Number.parseInt(e,10);if(Number.isNaN(u)||u<=0){l.error(`Invalid action id: "${e}"`),process.exitCode=1;return}n=u}else if(n=await uc(),n===null)return;let r=n,o=P();if(!o){l.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}if(!D(process.cwd()))return;let i=o.api_base||C.BASE,s=`Bearer ${o.user_token}:${o.website_token}`,a=t.failed?"failed":"completed",c;try{c=await J(`${i}/api/cli/actions/${r}/ack`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:s},body:JSON.stringify({status:a,error_message:t.failed&&t.reason?t.reason:null,result:t.failed?{declined:!0,reason:t.reason??null}:{applied:!0}})})}catch{uo(process.cwd(),{action_id:r,status:a,reason:t.failed?t.reason??null:null}),gn(r),Ct(process.cwd()),t.silent||l.warn(`Network unavailable \u2014 ack queued locally. Run \`${f("sync")}\` when you're back online; it'll flush automatically.`);return}if(!c.ok){let u=await c.text().catch(()=>""),d=null;try{d=JSON.parse(u)}catch{d=null}if(c.status===409&&d?.code==="already_acked"){gn(r),Ct(process.cwd());let E=typeof d.error=="string"?d.error.match(/'([^']+)'/)?.[1]??"settled":"settled";t.silent||l.success(`Action ${r} was already ${E}.`);return}let p=typeof d?.code=="string"?d.code:null,h=typeof d?.error=="string"?d.error:u,m=p?`, code: ${p}`:"";l.error(`Server rejected ack (${c.status}${m}): ${h.slice(0,200)}`),process.exitCode=1;return}gn(r),Ct(process.cwd()),!t.silent&&(t.failed?l.success(`Action ${r} marked failed${t.reason?` (reason: ${t.reason})`:""}.`):l.success(`Action ${r} marked completed.`),l.info(` inbox location: ${vo(b,"inbox")}`))}function gn(e){let t=Q(process.cwd());if(ic(t)){for(let n of sc(t))if(n.endsWith(`-${e}.md`))try{ac(vo(t,n))}catch{}}}async function uc(){let e=process.cwd(),t=fe(e);if(t.length===0)return l.info("No pending actions in .seoagent/inbox/."),l.message(`Run \`${f("sync")}\` to pull anything autopilot has queued.`),null;if(!process.stdout.isTTY)return l.error(`Cannot show interactive picker in non-TTY mode. Pass an action id explicitly, or run \`${f("inbox")}\` to see what's pending.`),process.exitCode=1,null;let n=await cc({message:`Which action do you want to close out? (${t.length} pending)`,options:t.map(r=>({value:r.id,label:Ae(r)}))});return lc(n)?(l.info("Cancelled \u2014 no action closed out."),null):n}import It from"picocolors";async function hn(e={}){let t=process.cwd();if(!e.json&&!D(t))return;let n=fe(t);if(e.json){process.stdout.write(JSON.stringify({count:n.length,inbox_path:Q(t),actions:n})+`
358
+ `);return}if(n.length===0){l.info(It.dim("No pending actions.")),l.message(`Run \`${f("sync")}\` to pull anything autopilot has queued, or \`${f("autopilot status")}\` to check whether autopilot is on.`);return}l.message(`${It.bold("SEOAgent inbox")} \xB7 ${n.length} pending action${n.length===1?"":"s"}`),l.message("");for(let r of n)l.message(Ae(r));l.message(""),l.message(`Apply one: ${It.bold(f("ack <id>"))} \xB7 Interactive picker: ${It.bold(f("ack"))} (no id)`)}import{readFileSync as bc}from"fs";import{join as $c,relative as Sc}from"path";import{confirm as Ao,isCancel as Pt,multiselect as vc,note as Po,select as xc}from"@clack/prompts";import g from"picocolors";import{query as _c}from"@anthropic-ai/claude-agent-sdk";import{existsSync as dc,readdirSync as pc}from"fs";import{homedir as fc}from"os";import{join as mc}from"path";import{execSync as yn}from"child_process";function Je(){return process.env.ANTHROPIC_API_KEY?"env-key":process.env.CLAUDE_CODE_USE_BEDROCK==="1"||process.env.CLAUDE_CODE_USE_VERTEX==="1"||process.env.CLAUDE_CODE_USE_FOUNDRY==="1"||process.env.CLAUDE_CODE_USE_ANTHROPIC_AWS==="1"?"enterprise":gc()?hc()?"claude-session-likely":"claude-installed-no-session":"not-installed"}function gc(){let e=process.platform==="win32"?"where claude":"command -v claude";try{return yn(e,{stdio:"ignore"}),!0}catch{return!1}}function hc(){let e=mc(fc(),".claude");if(!dc(e))return!1;try{return pc(e).filter(n=>!n.startsWith(".DS_Store")).length>0}catch{return!1}}function xo(){try{return yn("npm install -g @anthropic-ai/claude-code",{stdio:"inherit"}),{ok:!0}}catch(e){return{ok:!1,error:e.message}}}function _o(){try{return yn("claude login",{stdio:"inherit"}),{ok:!0}}catch(e){return{ok:!1,error:e.message}}}var X={"env-key":{summary:"Using ANTHROPIC_API_KEY env var.",next:""},enterprise:{summary:"Using enterprise provider (Bedrock / Vertex / Foundry).",next:""},"claude-session-likely":{summary:"Using your existing `claude login` session.",next:""},"claude-installed-no-session":{summary:"Claude Code is installed but you are not logged in.",next:"Run `claude login` to sign in with your Claude.ai / Pro / Max account, or set `ANTHROPIC_API_KEY` and re-run."},"not-installed":{summary:"Claude Code is not installed on this machine.",next:"Install it with `npm install -g @anthropic-ai/claude-code` then `claude login`, or set `ANTHROPIC_API_KEY` (get one at https://console.anthropic.com/) and re-run."}};import{marked as Eo}from"marked";import{markedTerminal as yc}from"marked-terminal";import wn from"picocolors";var Co=!1;function wc(){Co||(Eo.use(yc({reflowText:!1,width:100})),Co=!0)}function Rt(e){if(!e)return e;wc();try{let t=Eo.parse(e);return typeof t=="string"?kc(t):e}catch{return e}}function kc(e){return e.replace(/`([^`\n]+)`/g,(t,n)=>wn.yellow(n)).replace(/\*\*([^*\n]+)\*\*/g,(t,n)=>wn.bold(n)).replace(/(^|[\s(])\*([^*\s][^*\n]*?)\*(?=[\s.,;:!?)]|$)/gm,(t,n,r)=>n+wn.italic(r))}async function bn(e={}){let t=process.cwd();if(!D(t))return;if(!process.stdout.isTTY&&!e.yes){l.error(`\`${f("process")}\` needs an interactive TTY for the sync + selection prompts. Use \`--yes\` to skip prompts and process everything (for CI/CD).`),process.exitCode=1;return}if(!await Pc(e.yes)){process.exitCode=1;return}if(e.yes)await Y({embedded:!0});else{let u=await xc({message:"Sync the inbox before processing?",options:[{value:"sync",label:"Sync (recommended) \u2014 pull pending actions + push local changes"},{value:"pull",label:"Pull only \u2014 get new actions, skip pushing your local changes"},{value:"skip",label:"Skip \u2014 use the current local inbox state"}],initialValue:"sync"});if(Pt(u)){l.info("Cancelled.");return}u==="sync"?await Y({embedded:!0}):u==="pull"&&await me({embedded:!0})}let r=fe(t);if(r.length===0){l.info(g.dim("No pending actions to process. Inbox is empty."));return}let o;if(e.yes)o=r.map(u=>u.id),l.message(`Processing all ${r.length} pending action${r.length===1?"":"s"}\u2026`);else{let u=r.some(m=>m.priority!==null),d=u?r.filter(m=>m.priority==="high").map(m=>m.id):r.map(m=>m.id),p=u&&d.length===0?" (no high-priority actions \u2014 toggle to select)":u?` (${d.length} high-priority pre-selected \u2014 space to toggle)`:" (space to toggle)",h=await vc({message:`Which actions to process? ${r.length} pending \u2014${p}`,options:r.map(m=>({value:m.id,label:Ae(m)})),initialValues:d,required:!1});if(Pt(h)){l.info("Cancelled \u2014 no actions processed.");return}if(!Array.isArray(h)||h.length===0){l.info("No actions selected. Nothing to do.");return}o=h}let i=0,s=0,a=0,c=Date.now();for(let u=0;u<o.length;u++){let d=o[u],p=r.find(_=>_.id===d);if(!p)continue;Cc({index:u+1,total:o.length,entry:p});let h=$c(Q(t),p.filename),m;try{m=bc(h,"utf-8")}catch(_){l.error(` Could not read ${p.filename}: ${_.message}`),a++;continue}let E=Date.now(),I=await Rc({cwd:t,entry:p,actionContent:m,model:e.model}),G=Io(Date.now()-E);if(I.kind==="applied")try{await re(String(d),{silent:!0}),i++,l.message("");let _=I.summary?`
359
+ `+g.dim(" "+I.summary):"";l.message(` ${g.green("\u2713")} id ${d} ${g.dim("\u2014 applied in "+G)}${_}`)}catch(_){l.warn(` Applied but ack failed: ${_.message}. Run \`seoagent ack ${d}\` to retry.`)}else if(I.kind==="declined")try{await re(String(d),{silent:!0,failed:!0,reason:I.reason}),s++,l.message(""),l.message(` ${g.yellow("\u2298")} id ${d} ${g.dim("\u2014 declined: "+K(I.reason,100))}`)}catch(_){l.warn(` Could not ack decline: ${_.message}. Run \`seoagent ack ${d} --failed --reason "${I.reason.replace(/"/g,'\\"')}"\` to retry.`)}else a++,l.message(""),l.message(` ${g.red("\u2717")} id ${d} ${g.dim("\u2014 agent did not converge after "+G)}`)}Ac({applied:i,declined:s,failed:a,total:o.length,elapsed:Io(Date.now()-c)})}function Cc(e){let{index:t,total:n,entry:r}=e,o=r.issue??r.action_type.replace(/^cli_/,"").replace(/_/g,"-"),i=r.severity??"unknown",s=Ec[i]??g.dim,a=[g.bold(`[${t}/${n}]`),g.dim("\xB7"),g.bold(`id ${r.id}`),g.dim("\xB7"),g.cyan(o),s(i)].join(" ");Po(r.title,a)}var Ec={critical:e=>g.red(g.bold(e)),high:g.red,medium:g.yellow,low:g.dim};function Ac(e){let{applied:t,declined:n,failed:r,total:o,elapsed:i}=e,s=t+n,a;if(s===o&&r===0)a=n===0?g.green(`\u2713 ${t}/${o} applied`):g.green(`\u2713 ${t}/${o} applied \xB7 ${n} declined`);else if(s===0)a=g.red(`\u2717 0/${o} applied`);else{let c=[`${t}/${o} applied`];n>0&&c.push(`${n} declined`),r>0&&c.push(`${r} failed`),a=g.yellow(`\u25D0 ${c.join(" \xB7 ")}`)}Po(`${a}
360
+ ${g.dim("elapsed: "+i)}`,g.bold("Done"))}function Io(e){if(e<1e3)return`${e}ms`;let t=Math.round(e/1e3);if(t<60)return`${t}s`;let n=Math.floor(t/60),r=t%60;if(n<60)return r>0?`${n}m ${r}s`:`${n}m`;let o=Math.floor(n/60),i=n%60;return i>0?`${o}h ${i}m`:`${o}h`}function Ic(e){if(typeof e!="string"||!e)return null;let t=e.split(`
361
+ `);for(let n=t.length-1;n>=0;n--){let r=t[n].match(/^__(APPLIED|DECLINED)__:\s*(.*)$/);if(!r)continue;let o=r[2].trim();return r[1]==="APPLIED"?{kind:"applied",summary:o}:{kind:"declined",reason:o}}return null}async function Rc(e){let{cwd:t,entry:n,actionContent:r,model:o}=e,i=Bc(n,r);try{let s=_c({prompt:i,options:{cwd:t,allowedTools:["Read","Write","Edit","Bash","Grep","Glob"],permissionMode:"acceptEdits",...o?{model:o}:{}}}),a={toolUseById:new Map};for await(let c of s)if(c.type==="assistant"){let u=c.message.content;if(Array.isArray(u))for(let d of u)Tc(d,a)}else if(c.type==="user"){let u=c.message.content;if(Array.isArray(u))for(let d of u)Nc(d,a)}else if(c.type==="result"){if(process.stdout.write(`
362
+ `),!(c.subtype==="success"&&!c.is_error))return{kind:"failed"};let d=Ic(c.result);return d?.kind==="declined"?{kind:"declined",reason:d.reason}:{kind:"applied",summary:d?.kind==="applied"?d.summary:void 0}}return{kind:"failed"}}catch(s){return process.stdout.write(`
363
+ `),l.error(` Agent error: ${s.message}`),{kind:"failed"}}}async function Pc(e){let t=Je();if(t==="env-key"||t==="enterprise"||t==="claude-session-likely")return l.info(g.dim(X[t].summary)),!0;if(l.warn(X[t].summary),l.message(` ${X[t].next}`),e)return!1;if(t==="not-installed"){let n=await Ao({message:"Install Claude Code globally now? (runs `npm install -g @anthropic-ai/claude-code`)",initialValue:!0});if(Pt(n)||!n)return l.info("Skipped install. Set up auth and re-run when ready."),!1;l.message(g.dim("Installing @anthropic-ai/claude-code globally\u2026"));let r=xo();if(!r.ok)return l.error(`Install failed: ${r.error}`),l.message("Try running the install manually, or set `ANTHROPIC_API_KEY` and re-run."),!1;t=Je()}if(t==="claude-installed-no-session"||t==="not-installed"){let n=await Ao({message:"Run `claude login` now to sign in?",initialValue:!0});if(Pt(n)||!n)return l.info("Skipped login. Run `claude login` when ready and try again."),!1;l.message(g.dim("Launching `claude login`\u2026"));let r=_o();if(!r.ok)return l.error(`Login failed: ${r.error}`),!1}return!0}function Oc(e){return typeof e=="object"&&e!==null&&e.type==="text"&&typeof e.text=="string"}function Tc(e,t){if(!e||typeof e!="object")return;let n=e.type;if(n==="text"&&Oc(e)){process.stdout.write(Rt(e.text));return}if(n==="tool_use"){let r=String(e.id??""),o=String(e.name??"unknown"),i=e.input;r&&t.toolUseById.set(r,{name:o,input:i});let s=Lc[o]??g.cyan,a=Mc(o,i);process.stdout.write(s(jc)+" "+g.bold(o)+g.dim("(")+a+g.dim(")")+`
364
+ `);return}if(n==="thinking"){let r=e.thinking;typeof r=="string"&&r.trim()&&process.stdout.write(g.dim(g.italic(" "+K(r,200)))+`
365
+ `)}}var jc="\u23FA",Ro="\u23BF",Lc={Read:g.blue,Glob:g.cyan,Grep:g.cyan,Edit:g.yellow,Write:g.magenta,Bash:g.green,WebFetch:g.magenta,WebSearch:g.magenta};function Nc(e,t){if(!e||typeof e!="object"||e.type!=="tool_result")return;let n=e.is_error===!0,r=String(e.tool_use_id??""),o=r?t.toolUseById.get(r):void 0,i=o?.name,s=e.content,a=Fc(s);if(n){process.stdout.write(g.red(` ${Ro} Error`)+`
366
+ `),a&&process.stdout.write(Uc(K(a,500)," ",g.red)+`
367
+ `);return}let c=Dc(i,a,o?.input);c&&process.stdout.write(g.dim(` ${Ro} `)+c+`
368
+ `)}function Fc(e){return typeof e=="string"?e:Array.isArray(e)?e.map(t=>typeof t=="string"?t:t&&typeof t=="object"&&typeof t.text=="string"?t.text:"").join(""):""}function Dc(e,t,n){if(!e)return"";switch(e){case"Read":{let r=(t.match(/^\s*\d+→/gm)??[]).length,o=r>0?r:t.split(`
369
369
  `).filter(Boolean).length;return g.dim(`Read ${o} line${o===1?"":"s"}`)}case"Glob":{let r=t.split(`
370
370
  `).filter(o=>o.trim().length>0).length;return g.dim(`Found ${r} ${r===1?"entry":"entries"}`)}case"Grep":{let r=t.split(`
371
371
  `)[0]?.trim()??"";if(/^Found\s+\d+/.test(r))return g.dim(r);let o=t.split(`
372
- `).filter(i=>i.trim()).length;return g.dim(`${o} result${o===1?"":"s"}`)}case"Edit":case"Write":{let r=n?.file_path,o=e==="Edit"?"Updated":"Created";return g.dim(r?`${o} ${mn(String(r))}`:o)}case"Bash":{let r=t.split(`
373
- `),o=r.slice(0,5).map(u=>G(u.trimEnd(),100)),i=r.length-5,s=o.join(`
372
+ `).filter(i=>i.trim()).length;return g.dim(`${o} result${o===1?"":"s"}`)}case"Edit":case"Write":{let r=n?.file_path,o=e==="Edit"?"Updated":"Created";return g.dim(r?`${o} ${kn(String(r))}`:o)}case"Bash":{let r=t.split(`
373
+ `),o=r.slice(0,5).map(u=>K(u.trimEnd(),100)),i=r.length-5,s=o.join(`
374
374
  `)+(i>0?`
375
- \u2026 (+${i} more line${i===1?"":"s"})`:""),[a,...l]=s.split(`
376
- `);return l.length===0?g.dim(a):g.dim(a)+`
377
- `+g.dim(l.map(u=>" "+u).join(`
378
- `))}case"WebFetch":case"WebSearch":return g.dim(`Fetched ${G(t.replace(/\s+/g," "),80)}`);default:return""}}function _c(e,t,n){return e.split(`
375
+ \u2026 (+${i} more line${i===1?"":"s"})`:""),[a,...c]=s.split(`
376
+ `);return c.length===0?g.dim(a):g.dim(a)+`
377
+ `+g.dim(c.map(u=>" "+u).join(`
378
+ `))}case"WebFetch":case"WebSearch":return g.dim(`Fetched ${K(t.replace(/\s+/g," "),80)}`);default:return""}}function Uc(e,t,n){return e.split(`
379
379
  `).map(r=>n(t+r)).join(`
380
- `)}function Cc(e,t){if(!t||typeof t!="object")return"";let n=t;switch(e){case"Read":case"Write":case"Edit":return g.dim(G(mn(String(n.file_path??"")),80));case"Bash":return g.dim(G(String(n.command??""),80));case"Grep":{let r=String(n.pattern??""),o=n.path?` in ${mn(String(n.path))}`:"";return g.dim(G(r+o,80))}case"Glob":return g.dim(G(String(n.pattern??""),80));case"WebFetch":return g.dim(G(String(n.url??""),80));case"WebSearch":return g.dim(G(String(n.query??""),80));default:return""}}function mn(e){if(!e)return e;let t=process.cwd(),n=lc(t,e);return n.startsWith("..")?e:n||e}function G(e,t){return e.length<=t?e:e.slice(0,t-1)+"\u2026"}function Ec(e,t){return`You are SEOAgent processing one inbox action from \`.seoagent/inbox/\`.
380
+ `)}function Mc(e,t){if(!t||typeof t!="object")return"";let n=t;switch(e){case"Read":case"Write":case"Edit":return g.dim(K(kn(String(n.file_path??"")),80));case"Bash":return g.dim(K(String(n.command??""),80));case"Grep":{let r=String(n.pattern??""),o=n.path?` in ${kn(String(n.path))}`:"";return g.dim(K(r+o,80))}case"Glob":return g.dim(K(String(n.pattern??""),80));case"WebFetch":return g.dim(K(String(n.url??""),80));case"WebSearch":return g.dim(K(String(n.query??""),80));default:return""}}function kn(e){if(!e)return e;let t=process.cwd(),n=Sc(t,e);return n.startsWith("..")?e:n||e}function K(e,t){return e.length<=t?e:e.slice(0,t-1)+"\u2026"}function Bc(e,t){return`You are SEOAgent processing one inbox action from \`.seoagent/inbox/\`.
381
381
 
382
382
  Your job: apply the change this action describes to the codebase at the current working directory. Read the "How to apply" section in the action file \u2014 it tells you what to do and where to look. Make the edit, then briefly state what you changed.
383
383
 
@@ -396,15 +396,15 @@ Action file (\`.seoagent/inbox/${e.filename}\`):
396
396
  \`\`\`
397
397
  ${t}
398
398
  \`\`\`
399
- `}import{spinner as Ac}from"@clack/prompts";import k from"picocolors";var Ic=new Set(["on","off","status"]);async function Ye(e,t={}){let n=(e||"").toLowerCase();if(!Ic.has(n)){c.error(`Usage: seoagent autopilot <on|off|status> (got "${e}")`),process.exitCode=1;return}let r=P();if(!r){c.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}let o=t.apiBase||r.api_base||_.BASE,i=`Bearer ${r.user_token}:${r.website_token}`,a=!!process.stdout.isTTY?Ac():null,l=n==="on"?"Enabling autopilot\u2026":n==="off"?"Disabling autopilot\u2026":"Checking autopilot status\u2026";a?.start(l);let u;try{u=await fetch(`${o}/api/cli/autopilot/${n}`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:i},body:"{}"})}catch(m){w(a,"error",`Network error: ${m.message}`,k.red("Network error.")),process.exitCode=1;return}let d=null;try{d=await u.json()}catch{d=null}if(u.status===402||d?.code==="upgrade_required"){let C=x(process.cwd())?.domain??"",I=`${_.PRICING}?ref=cli${C?`&domain=${encodeURIComponent(C)}`:""}`;w(a,"warn","CLI autopilot is a paid feature.",k.yellow("Autopilot is a paid feature.")),c.message(Rc(I)),process.exitCode=1;return}if(!u.ok||d?.status!=="ok"||!d.autopilot){w(a,"error",`Server rejected request (${u.status})${d?.error?`: ${d.error}`:""}`,k.red(`Server rejected request (${u.status}).`)),process.exitCode=1;return}let{enabled:p,delivery_mode:h}=d.autopilot;if(n==="on"){a?.stop(k.green("Autopilot enabled.")),c.message(hn({enabled:!0,deliveryMode:h,action:n}));return}if(n==="off"){a?.stop(k.dim("Autopilot disabled.")),c.message(hn({enabled:!1,deliveryMode:h,action:n}));return}a?.stop(k.dim("Status:")),c.message(hn({enabled:p,deliveryMode:h,action:n}))}function hn(e){let n=s=>k.dim(s.padEnd(11)),r=e.enabled?`${k.bold(k.green("\u25CF ON"))} ${k.dim("(queueing fixes for your coding agent)")}`:`${k.dim("\u25CB OFF")} ${k.dim("(no new suggestions will be queued)")}`,o=[{content:`${n("Status:")}${r}`}];e.enabled&&e.deliveryMode&&o.push({content:`${n("Mode:")}${k.dim(e.deliveryMode)}`}),o.push({sep:!0}),e.enabled?(o.push({content:`${k.dim("Apply queued fixes:")} ${k.cyan(f("sync"))}`}),o.push({content:`${k.dim("Turn off any time:")} ${k.cyan(f("autopilot off"))}`})):(o.push({content:`${k.dim("Enable (paid):")} ${k.cyan(f("autopilot on"))}`}),o.push({content:k.dim("Queues SEO fixes for your coding agent to apply on each sync.")}));let i=`${k.bold(k.cyan("SEOAgent"))} ${k.dim("\xB7")} ${k.dim("autopilot")}`;return O(o,{width:78,title:i})}function Rc(e){let t=[{content:k.bold(k.yellow("Autopilot is a paid feature."))},{sep:!0},{content:k.dim("SEOAgent continuously audits your site and queues fixes for")},{content:k.dim("your coding agent to apply on each `sync` \u2014 you stay in the")},{content:k.dim("loop; nothing is auto-applied.")},{sep:!0},{content:`${k.dim("Upgrade:")} ${k.cyan(e)}`}],n=`${k.bold(k.cyan("SEOAgent"))} ${k.dim("\xB7")} ${k.dim("autopilot")}`;return O(t,{width:78,title:n})}import{mkdirSync as Gc,writeFileSync as Kc}from"fs";import{join as yn}from"path";import{readdirSync as Pc,readFileSync as Oc,statSync as _o}from"fs";import{join as Tc}from"path";var jc=new Set(["html","htm","md","mdx","markdown","mdoc","tsx","jsx","ts","js","astro","vue","svelte"]),Lc=new Set(["png","jpg","jpeg","gif","svg","webp","avif","ico","bmp","css","js","mjs","json","xml","txt","pdf","zip","gz","woff","woff2","ttf","eot","mp4","webm","mp3","wav","csv"]),Nc=new Set(["node_modules",".git",".next","dist","build",".vercel","out",".seoagent"]),Fc=5e3,Dc=512*1024;function Ro(e){return e?e.trim().toLowerCase().replace(/^sc-domain:/,"").replace(/^https?:\/\//,"").replace(/^www\./,"").replace(/\/.*$/,""):null}function Co(e,t){let n=(e||"").trim();if(!n||(n=n.replace(/[?#].*$/,""),!n)||/^(mailto:|tel:|javascript:|data:)/i.test(n)||n.startsWith("//"))return null;if(/^https?:\/\//i.test(n))try{let i=new URL(n),s=i.hostname.toLowerCase().replace(/^www\./,"");if(!t||s!==t)return null;n=i.pathname||"/"}catch{return null}if(!n.startsWith("/")||n.startsWith("/api/")||n==="/api")return null;let r=n.split("/").pop()||"",o=r.lastIndexOf(".");return o>0&&Lc.has(r.slice(o+1).toLowerCase())?null:(n=n.replace(/\/+$/,""),n===""?"/":n)}var Eo=/\bhref\s*=\s*(?:"([^"]*)"|'([^']*)'|\{\s*[`'"]([^`'"]*)[`'"]\s*\})/gi,Ao=/\]\(\s*([^)\s]+)/g;function Uc(e,t){if(!e)return[];let n=Ro(t),r=[],o;for(Eo.lastIndex=0;(o=Eo.exec(e))!==null;){let i=o[1]??o[2]??o[3]??"",s=Co(i,n);s&&r.push(s)}for(Ao.lastIndex=0;(o=Ao.exec(e))!==null;){let i=Co(o[1],n);i&&r.push(i)}return r}function Mc(e,t,n=0){let r={};for(let s of e)r[s.route]=0;for(let s of t)s in r&&(r[s]+=1);let o=[],i=[];for(let s of e){if(s.route==="/")continue;let a=r[s.route]??0;a===0?o.push({route:s.route,url:s.url}):a===1&&i.push({route:s.route,url:s.url,inbound:a})}return o.sort((s,a)=>s.route.localeCompare(a.route)),i.sort((s,a)=>s.route.localeCompare(a.route)),{pageCount:e.length,linkOccurrences:t.length,orphans:o,weak:i,inboundByRoute:r,filesScanned:n}}function Po(e,t){let n=JSON.stringify(e.orphans.slice(0,100).map(a=>a.url)),r=["---","generated: false",`analyzed_at: ${new Date().toISOString()}`,`page_count: ${e.pageCount}`,`orphan_count: ${e.orphans.length}`,`weak_count: ${e.weak.length}`,`orphans_json: ${n}`,"---"].join(`
400
- `),o=["# Internal Links","",`Internal link analysis of the pages discovered in this repo${t?` (${Ro(t)})`:""}. **Orphans** are pages no other page links to \u2014 they're hard for crawlers`,"and users to reach and tend to underperform. Add relevant internal links","pointing at them (from related, higher-authority pages).","",`Scanned ${e.filesScanned} file${e.filesScanned===1?"":"s"}, ${e.linkOccurrences} internal link${e.linkOccurrences===1?"":"s"}, ${e.pageCount} page${e.pageCount===1?"":"s"}.`,"","_Note: this scans the repo, so links inside CMS-hosted content aren't counted._"].join(`
399
+ `}import{spinner as Gc}from"@clack/prompts";import k from"picocolors";var Wc=new Set(["on","off","status"]);async function Qe(e,t={}){let n=(e||"").toLowerCase();if(!Wc.has(n)){l.error(`Usage: seoagent autopilot <on|off|status> (got "${e}")`),process.exitCode=1;return}let r=P();if(!r){l.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}let o=t.apiBase||r.api_base||C.BASE,i=`Bearer ${r.user_token}:${r.website_token}`,a=!!process.stdout.isTTY?Gc():null,c=n==="on"?"Enabling autopilot\u2026":n==="off"?"Disabling autopilot\u2026":"Checking autopilot status\u2026";a?.start(c);let u;try{u=await fetch(`${o}/api/cli/autopilot/${n}`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:i},body:"{}"})}catch(m){w(a,"error",`Network error: ${m.message}`,k.red("Network error.")),process.exitCode=1;return}let d=null;try{d=await u.json()}catch{d=null}if(u.status===402||d?.code==="upgrade_required"){let E=S(process.cwd())?.domain??"",I=`${C.PRICING}?ref=cli${E?`&domain=${encodeURIComponent(E)}`:""}`;w(a,"warn","CLI autopilot is a paid feature.",k.yellow("Autopilot is a paid feature.")),l.message(Kc(I)),process.exitCode=1;return}if(!u.ok||d?.status!=="ok"||!d.autopilot){w(a,"error",`Server rejected request (${u.status})${d?.error?`: ${d.error}`:""}`,k.red(`Server rejected request (${u.status}).`)),process.exitCode=1;return}let{enabled:p,delivery_mode:h}=d.autopilot;if(n==="on"){a?.stop(k.green("Autopilot enabled.")),l.message($n({enabled:!0,deliveryMode:h,action:n}));return}if(n==="off"){a?.stop(k.dim("Autopilot disabled.")),l.message($n({enabled:!1,deliveryMode:h,action:n}));return}a?.stop(k.dim("Status:")),l.message($n({enabled:p,deliveryMode:h,action:n}))}function $n(e){let n=s=>k.dim(s.padEnd(11)),r=e.enabled?`${k.bold(k.green("\u25CF ON"))} ${k.dim("(queueing fixes for your coding agent)")}`:`${k.dim("\u25CB OFF")} ${k.dim("(no new suggestions will be queued)")}`,o=[{content:`${n("Status:")}${r}`}];e.enabled&&e.deliveryMode&&o.push({content:`${n("Mode:")}${k.dim(e.deliveryMode)}`}),o.push({sep:!0}),e.enabled?(o.push({content:`${k.dim("Apply queued fixes:")} ${k.cyan(f("sync"))}`}),o.push({content:`${k.dim("Turn off any time:")} ${k.cyan(f("autopilot off"))}`})):(o.push({content:`${k.dim("Enable (paid):")} ${k.cyan(f("autopilot on"))}`}),o.push({content:k.dim("Queues SEO fixes for your coding agent to apply on each sync.")}));let i=`${k.bold(k.cyan("SEOAgent"))} ${k.dim("\xB7")} ${k.dim("autopilot")}`;return O(o,{width:78,title:i})}function Kc(e){let t=[{content:k.bold(k.yellow("Autopilot is a paid feature."))},{sep:!0},{content:k.dim("SEOAgent continuously audits your site and queues fixes for")},{content:k.dim("your coding agent to apply on each `sync` \u2014 you stay in the")},{content:k.dim("loop; nothing is auto-applied.")},{sep:!0},{content:`${k.dim("Upgrade:")} ${k.cyan(e)}`}],n=`${k.bold(k.cyan("SEOAgent"))} ${k.dim("\xB7")} ${k.dim("autopilot")}`;return O(t,{width:78,title:n})}import{mkdirSync as nu,writeFileSync as ru}from"fs";import{join as Sn}from"path";import{readdirSync as qc,readFileSync as Hc,statSync as Oo}from"fs";import{join as Yc}from"path";var zc=new Set(["html","htm","md","mdx","markdown","mdoc","tsx","jsx","ts","js","astro","vue","svelte"]),Vc=new Set(["png","jpg","jpeg","gif","svg","webp","avif","ico","bmp","css","js","mjs","json","xml","txt","pdf","zip","gz","woff","woff2","ttf","eot","mp4","webm","mp3","wav","csv"]),Jc=new Set(["node_modules",".git",".next","dist","build",".vercel","out",".seoagent"]),Qc=5e3,Xc=512*1024;function Fo(e){return e?e.trim().toLowerCase().replace(/^sc-domain:/,"").replace(/^https?:\/\//,"").replace(/^www\./,"").replace(/\/.*$/,""):null}function To(e,t){let n=(e||"").trim();if(!n||(n=n.replace(/[?#].*$/,""),!n)||/^(mailto:|tel:|javascript:|data:)/i.test(n)||n.startsWith("//"))return null;if(/^https?:\/\//i.test(n))try{let i=new URL(n),s=i.hostname.toLowerCase().replace(/^www\./,"");if(!t||s!==t)return null;n=i.pathname||"/"}catch{return null}if(!n.startsWith("/")||n.startsWith("/api/")||n==="/api")return null;let r=n.split("/").pop()||"",o=r.lastIndexOf(".");return o>0&&Vc.has(r.slice(o+1).toLowerCase())?null:(n=n.replace(/\/+$/,""),n===""?"/":n)}var jo=/\bhref\s*=\s*(?:"([^"]*)"|'([^']*)'|\{\s*[`'"]([^`'"]*)[`'"]\s*\})/gi,Lo=/\]\(\s*([^)\s]+)/g;function Zc(e,t){if(!e)return[];let n=Fo(t),r=[],o;for(jo.lastIndex=0;(o=jo.exec(e))!==null;){let i=o[1]??o[2]??o[3]??"",s=To(i,n);s&&r.push(s)}for(Lo.lastIndex=0;(o=Lo.exec(e))!==null;){let i=To(o[1],n);i&&r.push(i)}return r}function eu(e,t,n=0){let r={};for(let s of e)r[s.route]=0;for(let s of t)s in r&&(r[s]+=1);let o=[],i=[];for(let s of e){if(s.route==="/")continue;let a=r[s.route]??0;a===0?o.push({route:s.route,url:s.url}):a===1&&i.push({route:s.route,url:s.url,inbound:a})}return o.sort((s,a)=>s.route.localeCompare(a.route)),i.sort((s,a)=>s.route.localeCompare(a.route)),{pageCount:e.length,linkOccurrences:t.length,orphans:o,weak:i,inboundByRoute:r,filesScanned:n}}function Do(e,t){let n=JSON.stringify(e.orphans.slice(0,100).map(a=>a.url)),r=["---","generated: false",`analyzed_at: ${new Date().toISOString()}`,`page_count: ${e.pageCount}`,`orphan_count: ${e.orphans.length}`,`weak_count: ${e.weak.length}`,`orphans_json: ${n}`,"---"].join(`
400
+ `),o=["# Internal Links","",`Internal link analysis of the pages discovered in this repo${t?` (${Fo(t)})`:""}. **Orphans** are pages no other page links to \u2014 they're hard for crawlers`,"and users to reach and tend to underperform. Add relevant internal links","pointing at them (from related, higher-authority pages).","",`Scanned ${e.filesScanned} file${e.filesScanned===1?"":"s"}, ${e.linkOccurrences} internal link${e.linkOccurrences===1?"":"s"}, ${e.pageCount} page${e.pageCount===1?"":"s"}.`,"","_Note: this scans the repo, so links inside CMS-hosted content aren't counted._"].join(`
401
401
  `),i=e.orphans.length===0?`## Orphan pages
402
402
 
403
- None \u2014 every page has at least one inbound internal link. \u{1F389}`:[`## Orphan pages (${e.orphans.length})`,"","No internal links point to these. Add links from related pages.","","| Page | Suggested link source (fill in) |","|---|---|",...e.orphans.map(a=>`| ${Io(a.url)} | \u2014 |`)].join(`
404
- `),s=e.weak.length===0?"":["",`## Weakly linked (${e.weak.length})`,"","Exactly one inbound internal link \u2014 fragile. Consider adding more.","","| Page | Inbound |","|---|---|",...e.weak.map(a=>`| ${Io(a.url)} | ${a.inbound} |`)].join(`
403
+ None \u2014 every page has at least one inbound internal link. \u{1F389}`:[`## Orphan pages (${e.orphans.length})`,"","No internal links point to these. Add links from related pages.","","| Page | Suggested link source (fill in) |","|---|---|",...e.orphans.map(a=>`| ${No(a.url)} | \u2014 |`)].join(`
404
+ `),s=e.weak.length===0?"":["",`## Weakly linked (${e.weak.length})`,"","Exactly one inbound internal link \u2014 fragile. Consider adding more.","","| Page | Inbound |","|---|---|",...e.weak.map(a=>`| ${No(a.url)} | ${a.inbound} |`)].join(`
405
405
  `);return[r,"",o,"",i,s,""].join(`
406
- `)}function Io(e){return e.replace(/\r?\n/g," ").replace(/\|/g,"/").trim()}function*Bc(e){let t=0;function*n(r){let o;try{o=Pc(r,{withFileTypes:!0})}catch{return}for(let i of o){if(t>=Fc)return;if(i.name.startsWith("."))continue;let s=Tc(r,i.name);if(i.isDirectory()){if(Nc.has(i.name))continue;yield*n(s)}else if(i.isFile()){let a=i.name.lastIndexOf("."),l=a===-1?"":i.name.slice(a+1).toLowerCase();if(!jc.has(l))continue;t++,yield s}}}yield*n(e)}function Oo(e,t){let{pages:n}=gt(e,t),r=[],o=0,i=!1;try{i=_o(e).isDirectory()}catch{i=!1}if(i)for(let s of Bc(e)){let a;try{if(_o(s).size>Dc)continue;a=Oc(s,"utf-8")}catch{continue}o++;for(let l of Uc(a,t))r.push(l)}return Mc(n,r,o)}function ze(e={}){let t=process.cwd(),n=D(t);if(!n)return;let r=n.domain&&n.domain!=="unknown"?n.domain:null,o=Oo(t,r);if(e.json){process.stdout.write(JSON.stringify(o,null,2)+`
407
- `);return}let i=yn(t,b);Gc(i,{recursive:!0});let s=yn(i,"internal-links.md");if(Kc(s,Po(o,r),"utf-8"),c.success(`Analyzed ${o.pageCount} page${o.pageCount===1?"":"s"} across ${o.filesScanned} file${o.filesScanned===1?"":"s"}.`),o.orphans.length===0)c.info("No orphan pages \u2014 every page has an inbound internal link.");else{c.warn(`${o.orphans.length} orphan page${o.orphans.length===1?"":"s"} (no inbound internal links):`);for(let a of o.orphans.slice(0,10))c.message(` \u2022 ${a.url}`);o.orphans.length>10&&c.message(` \u2026and ${o.orphans.length-10} more`)}c.info(`Report written to ${yn(b,"internal-links.md")}`)}import Y from"picocolors";import{existsSync as Ee,mkdirSync as At,readdirSync as Wc,readFileSync as qc,statSync as Eg,writeFileSync as To}from"fs";import{dirname as Hc,join as ne,relative as Yc,resolve as zc}from"path";var Ae="okf";function It(e){return ne(e,b,Ae)}var Vc=/^\d{4}-\d{2}-\d{2}(T\d{2}:\d{2}(:\d{2}(\.\d+)?)?(Z|[+-]\d{2}:\d{2})?)?$/;function wn(e){let t=[];for(let n of Wc(e,{withFileTypes:!0})){let r=ne(e,n.name);n.isDirectory()?t.push(...wn(r)):n.isFile()&&n.name.toLowerCase().endsWith(".md")&&t.push(r)}return t}function Jc(e){let t=[],n=/\[[^\]]*\]\(([^)]+)\)/g,r;for(;(r=n.exec(e))!==null;){let o=r[1].trim().split(/\s+/)[0];o&&(/^[a-z][a-z0-9+.-]*:/i.test(o)||o.startsWith("#")||t.push(o))}return t}function jo(e){let t=[],n=[];if(!Ee(e))return{ok:!1,fileCount:0,errors:[{file:Ae,message:"No OKF bundle found. Run `seoagent okf scaffold` first."}],warnings:[]};let r=wn(e);if(r.length===0)return{ok:!1,fileCount:0,errors:[{file:Ae,message:"OKF directory exists but contains no markdown files."}],warnings:[]};Ee(ne(e,"index.md"))||n.push({file:Ae,message:"No top-level index.md \u2014 agents use it for progressive disclosure."});for(let i of r){let s=Yc(e,i),a;try{a=Oe(qc(i,"utf-8"))}catch{t.push({file:s,message:"Could not read or parse file."});continue}let l=a.data.type;(l==null||String(l).trim()==="")&&t.push({file:s,message:"Missing required frontmatter field `type`."});let u=a.data.timestamp;u!=null&&u!==""&&!Vc.test(String(u))&&t.push({file:s,message:`\`timestamp\` is not ISO-8601: "${String(u)}"`});let d=a.data.description;typeof d=="string"&&d.length>200&&n.push({file:s,message:`\`description\` is ${d.length} chars (keep \u2264 200).`});for(let p of Jc(a.body)){let h=p.split("#")[0];if(!h)continue;let m=zc(Hc(i),h);Ee(m)||t.push({file:s,message:`Broken link \u2192 "${p}" (target does not exist).`})}}return{ok:t.length===0,fileCount:r.length,errors:t,warnings:n}}function Rt(e){let t=It(e);if(!Ee(t))return{exists:!1,fileCount:0};try{return{exists:!0,fileCount:wn(t).length}}catch{return{exists:!0,fileCount:0}}}function Lo(e,t){let n=It(e);At(n,{recursive:!0}),At(ne(n,"concepts"),{recursive:!0}),At(ne(n,"faqs"),{recursive:!0}),At(ne(n,"articles"),{recursive:!0});let r=[],o=t&&t!=="unknown"?t:"your site",i=ne(n,"index.md");Ee(i)||(To(i,`---
406
+ `)}function No(e){return e.replace(/\r?\n/g," ").replace(/\|/g,"/").trim()}function*tu(e){let t=0;function*n(r){let o;try{o=qc(r,{withFileTypes:!0})}catch{return}for(let i of o){if(t>=Qc)return;if(i.name.startsWith("."))continue;let s=Yc(r,i.name);if(i.isDirectory()){if(Jc.has(i.name))continue;yield*n(s)}else if(i.isFile()){let a=i.name.lastIndexOf("."),c=a===-1?"":i.name.slice(a+1).toLowerCase();if(!zc.has(c))continue;t++,yield s}}}yield*n(e)}function Uo(e,t){let{pages:n}=be(e,t),r=[],o=0,i=!1;try{i=Oo(e).isDirectory()}catch{i=!1}if(i)for(let s of tu(e)){let a;try{if(Oo(s).size>Xc)continue;a=Hc(s,"utf-8")}catch{continue}o++;for(let c of Zc(a,t))r.push(c)}return eu(n,r,o)}function Xe(e={}){let t=process.cwd(),n=D(t);if(!n)return;let r=n.domain&&n.domain!=="unknown"?n.domain:null,o=Uo(t,r);if(e.json){process.stdout.write(JSON.stringify(o,null,2)+`
407
+ `);return}let i=Sn(t,b);nu(i,{recursive:!0});let s=Sn(i,"internal-links.md");if(ru(s,Do(o,r),"utf-8"),l.success(`Analyzed ${o.pageCount} page${o.pageCount===1?"":"s"} across ${o.filesScanned} file${o.filesScanned===1?"":"s"}.`),o.orphans.length===0)l.info("No orphan pages \u2014 every page has an inbound internal link.");else{l.warn(`${o.orphans.length} orphan page${o.orphans.length===1?"":"s"} (no inbound internal links):`);for(let a of o.orphans.slice(0,10))l.message(` \u2022 ${a.url}`);o.orphans.length>10&&l.message(` \u2026and ${o.orphans.length-10} more`)}l.info(`Report written to ${Sn(b,"internal-links.md")}`)}import z from"picocolors";import{existsSync as Ie,mkdirSync as Ot,readdirSync as ou,readFileSync as iu,statSync as Kg,writeFileSync as Mo}from"fs";import{dirname as su,join as oe,relative as au,resolve as lu}from"path";var Re="okf";function Tt(e){return oe(e,b,Re)}var cu=/^\d{4}-\d{2}-\d{2}(T\d{2}:\d{2}(:\d{2}(\.\d+)?)?(Z|[+-]\d{2}:\d{2})?)?$/;function vn(e){let t=[];for(let n of ou(e,{withFileTypes:!0})){let r=oe(e,n.name);n.isDirectory()?t.push(...vn(r)):n.isFile()&&n.name.toLowerCase().endsWith(".md")&&t.push(r)}return t}function uu(e){let t=[],n=/\[[^\]]*\]\(([^)]+)\)/g,r;for(;(r=n.exec(e))!==null;){let o=r[1].trim().split(/\s+/)[0];o&&(/^[a-z][a-z0-9+.-]*:/i.test(o)||o.startsWith("#")||t.push(o))}return t}function Bo(e){let t=[],n=[];if(!Ie(e))return{ok:!1,fileCount:0,errors:[{file:Re,message:"No OKF bundle found. Run `seoagent okf scaffold` first."}],warnings:[]};let r=vn(e);if(r.length===0)return{ok:!1,fileCount:0,errors:[{file:Re,message:"OKF directory exists but contains no markdown files."}],warnings:[]};Ie(oe(e,"index.md"))||n.push({file:Re,message:"No top-level index.md \u2014 agents use it for progressive disclosure."});for(let i of r){let s=au(e,i),a;try{a=Le(iu(i,"utf-8"))}catch{t.push({file:s,message:"Could not read or parse file."});continue}let c=a.data.type;(c==null||String(c).trim()==="")&&t.push({file:s,message:"Missing required frontmatter field `type`."});let u=a.data.timestamp;u!=null&&u!==""&&!cu.test(String(u))&&t.push({file:s,message:`\`timestamp\` is not ISO-8601: "${String(u)}"`});let d=a.data.description;typeof d=="string"&&d.length>200&&n.push({file:s,message:`\`description\` is ${d.length} chars (keep \u2264 200).`});for(let p of uu(a.body)){let h=p.split("#")[0];if(!h)continue;let m=lu(su(i),h);Ie(m)||t.push({file:s,message:`Broken link \u2192 "${p}" (target does not exist).`})}}return{ok:t.length===0,fileCount:r.length,errors:t,warnings:n}}function jt(e){let t=Tt(e);if(!Ie(t))return{exists:!1,fileCount:0};try{return{exists:!0,fileCount:vn(t).length}}catch{return{exists:!0,fileCount:0}}}function Go(e,t){let n=Tt(e);Ot(n,{recursive:!0}),Ot(oe(n,"concepts"),{recursive:!0}),Ot(oe(n,"faqs"),{recursive:!0}),Ot(oe(n,"articles"),{recursive:!0});let r=[],o=t&&t!=="unknown"?t:"your site",i=oe(n,"index.md");Ie(i)||(Mo(i,`---
408
408
  type: Organization
409
409
  title: ${o}
410
410
  description: Knowledge bundle describing ${o} for AI agents and answer engines.
@@ -431,7 +431,7 @@ _Describe the business in 2\u20134 sentences (pull from \`.seoagent/context.md\`
431
431
  ## Published articles
432
432
 
433
433
  - _Link article files here, e.g._ \`articles/guide-to-x.md\`
434
- `,"utf-8"),r.push("index.md"));let s=ne(n,"log.md");return Ee(s)||(To(s,`---
434
+ `,"utf-8"),r.push("index.md"));let s=oe(n,"log.md");return Ie(s)||(Mo(s,`---
435
435
  type: Log
436
436
  title: Change log
437
437
  description: Chronological history of changes to this OKF bundle.
@@ -440,9 +440,9 @@ description: Chronological history of changes to this OKF bundle.
440
440
  # Change log
441
441
 
442
442
  - Bundle scaffolded.
443
- `,"utf-8"),r.push("log.md")),{created:r,okfDir:n}}var kn=`${b}/${Ae}`;function Ve(e,t={}){let n=process.cwd(),r=D(n);if(!r)return;let o=(e||"status").toLowerCase(),i=r.domain&&r.domain!=="unknown"?r.domain:null;if(o==="scaffold"){let{created:a}=Lo(n,i);a.length===0?c.info(`OKF bundle already scaffolded at ${kn}/.`):(c.success(`Scaffolded ${kn}/ \u2014 created ${a.join(", ")}.`),c.info("Now fill the bundle from your .seoagent/ knowledge, then run `seoagent okf validate`."));return}if(o==="validate"){let a=jo(It(n));if(t.json){process.stdout.write(JSON.stringify(a,null,2)+`
444
- `);return}for(let l of a.errors)c.message(`${Y.red("\u2717")} ${Y.dim(l.file)} \u2014 ${l.message}`);for(let l of a.warnings)c.message(`${Y.yellow("!")} ${Y.dim(l.file)} \u2014 ${l.message}`);a.ok?c.success(`OKF bundle is valid \u2014 ${a.fileCount} file${a.fileCount===1?"":"s"}, ${a.warnings.length} warning${a.warnings.length===1?"":"s"}.`):(c.error(`OKF bundle has ${a.errors.length} error${a.errors.length===1?"":"s"} (see above).`),process.exitCode=1);return}let s=Rt(n);if(t.json){process.stdout.write(JSON.stringify(s,null,2)+`
445
- `);return}c.message(O([{content:Y.bold("Open Knowledge Format")},{sep:!0},{content:`Bundle: ${s.exists?Y.green(kn+"/"):Y.dim("not created")}`},{content:`Files: ${s.exists?String(s.fileCount):"\u2014"}`},{sep:!0},{content:s.exists?Y.dim("Run `seoagent okf validate` to check it."):Y.dim("Run `seoagent okf scaffold` to start one.")}],{title:Y.cyan("OKF")}))}import{mkdirSync as tu,writeFileSync as nu}from"fs";import N from"picocolors";import{query as ru}from"@anthropic-ai/claude-agent-sdk";import{join as No}from"path";var Sn="citations",$n="scorecard.md",Qc=6,Xc=1,Zc=12,Pt="Claude (web-grounded)";function vn(e){return No(e,b,Sn)}function Fo(e){return No(vn(e),$n)}function Do(e){return typeof e!="number"||!Number.isFinite(e)?Qc:Math.max(Xc,Math.min(Zc,Math.floor(e)))}function xn(e){let t=e.results.length;return{cited:e.results.filter(r=>r.surfaced).length,total:t}}function Uo(e,t){return`You are SEOAgent measuring this business's AI-citation visibility (AEO/GEO) \u2014 whether answer engines surface and cite it.
443
+ `,"utf-8"),r.push("log.md")),{created:r,okfDir:n}}var xn=`${b}/${Re}`;function Ze(e,t={}){let n=process.cwd(),r=D(n);if(!r)return;let o=(e||"status").toLowerCase(),i=r.domain&&r.domain!=="unknown"?r.domain:null;if(o==="scaffold"){let{created:a}=Go(n,i);a.length===0?l.info(`OKF bundle already scaffolded at ${xn}/.`):(l.success(`Scaffolded ${xn}/ \u2014 created ${a.join(", ")}.`),l.info("Now fill the bundle from your .seoagent/ knowledge, then run `seoagent okf validate`."));return}if(o==="validate"){let a=Bo(Tt(n));if(t.json){process.stdout.write(JSON.stringify(a,null,2)+`
444
+ `);return}for(let c of a.errors)l.message(`${z.red("\u2717")} ${z.dim(c.file)} \u2014 ${c.message}`);for(let c of a.warnings)l.message(`${z.yellow("!")} ${z.dim(c.file)} \u2014 ${c.message}`);a.ok?l.success(`OKF bundle is valid \u2014 ${a.fileCount} file${a.fileCount===1?"":"s"}, ${a.warnings.length} warning${a.warnings.length===1?"":"s"}.`):(l.error(`OKF bundle has ${a.errors.length} error${a.errors.length===1?"":"s"} (see above).`),process.exitCode=1);return}let s=jt(n);if(t.json){process.stdout.write(JSON.stringify(s,null,2)+`
445
+ `);return}l.message(O([{content:z.bold("Open Knowledge Format")},{sep:!0},{content:`Bundle: ${s.exists?z.green(xn+"/"):z.dim("not created")}`},{content:`Files: ${s.exists?String(s.fileCount):"\u2014"}`},{sep:!0},{content:s.exists?z.dim("Run `seoagent okf validate` to check it."):z.dim("Run `seoagent okf scaffold` to start one.")}],{title:z.cyan("OKF")}))}import{mkdirSync as gu,writeFileSync as hu}from"fs";import N from"picocolors";import{query as yu}from"@anthropic-ai/claude-agent-sdk";import{join as Wo}from"path";var Cn="citations",En="scorecard.md",du=6,pu=1,fu=12,Lt="Claude (web-grounded)";function An(e){return Wo(e,b,Cn)}function Ko(e){return Wo(An(e),En)}function qo(e){return typeof e!="number"||!Number.isFinite(e)?du:Math.max(pu,Math.min(fu,Math.floor(e)))}function In(e){let t=e.results.length;return{cited:e.results.filter(r=>r.surfaced).length,total:t}}function Ho(e,t){return`You are SEOAgent measuring this business's AI-citation visibility (AEO/GEO) \u2014 whether answer engines surface and cite it.
446
446
 
447
447
  Business under audit:
448
448
  ${[`- Domain: ${e.domain}`,e.name?`- Business name: ${e.name}`:null,e.type?`- Business type: ${e.type}`:null,e.description?`- What it does: ${e.description}`:null,`- OKF knowledge bundle present in repo: ${e.hasOkfBundle?"yes":"no"}`].filter(Boolean).join(`
@@ -477,9 +477,9 @@ End your reply with EXACTLY ONE fenced \`\`\`json block (and nothing after it) m
477
477
  }
478
478
  \`\`\`
479
479
 
480
- \`results\` must have exactly ${t} entries. \`rank\` is a number when surfaced, or null when not surfaced or unknown.`}function Mo(e){if(typeof e!="string"||!e.trim())return null;let t=/```json\s*([\s\S]*?)```/gi,n=[],r;for(;(r=t.exec(e))!==null;)r[1].trim()&&n.push(r[1].trim());if(n.length===0)return null;for(let o=n.length-1;o>=0;o--){let i=eu(n[o]);if(i)return i}return null}function eu(e){let t;try{t=JSON.parse(e)}catch{return null}if(!t||typeof t!="object")return null;let n=t,r=typeof n.domain=="string"?n.domain.trim():"";if(!r)return null;let o=typeof n.brand=="string"&&n.brand.trim()?n.brand.trim():r;if(!Array.isArray(n.results))return null;let i=[];for(let s of n.results){if(!s||typeof s!="object")continue;let a=s,l=typeof a.query=="string"?a.query.trim():"";if(!l)continue;let u=a.surfaced===!0,d=typeof a.rank=="number"&&Number.isFinite(a.rank)?Math.round(a.rank):null,p=typeof a.evidence=="string"?a.evidence.trim():"";i.push({query:l,surfaced:u,rank:u?d:null,evidence:p})}return i.length===0?null:{brand:o,domain:r,results:i}}function Bo(e,t){let{cited:n,total:r}=xn(e),o=t.generatedAt.slice(0,10),i=e.results.map((u,d)=>{let p=u.surfaced?"\u2705":"\u2014",h=u.surfaced&&u.rank?`#${u.rank}`:"\u2014",m=bn(u.evidence||(u.surfaced?"surfaced":"not found"));return`| ${d+1} | ${bn(u.query)} | ${p} | ${h} | ${m} |`}).join(`
481
- `),s=e.results.filter(u=>!u.surfaced),a=s.length===0?"_None \u2014 the business surfaced for every query tested. Re-run periodically to catch drift._":s.map(u=>`- **${bn(u.query)}** \u2014 ${u.evidence||"not surfaced"}`).join(`
482
- `),l=e.results.some(u=>!u.surfaced)?"- Enrich the Open Knowledge Format bundle so answer engines understand the business: run `seoagent okf scaffold` then fill it (the skill maps your `.seoagent/` knowledge into it), and publish it at `/.well-known/okf/`.\n- Cover the missed questions directly in your content (a page or FAQ that answers each one), then re-run `seoagent citations`.":"- Keep the OKF bundle current as the business evolves, and re-run to catch regressions.";return`---
480
+ \`results\` must have exactly ${t} entries. \`rank\` is a number when surfaced, or null when not surfaced or unknown.`}function Yo(e){if(typeof e!="string"||!e.trim())return null;let t=/```json\s*([\s\S]*?)```/gi,n=[],r;for(;(r=t.exec(e))!==null;)r[1].trim()&&n.push(r[1].trim());if(n.length===0)return null;for(let o=n.length-1;o>=0;o--){let i=mu(n[o]);if(i)return i}return null}function mu(e){let t;try{t=JSON.parse(e)}catch{return null}if(!t||typeof t!="object")return null;let n=t,r=typeof n.domain=="string"?n.domain.trim():"";if(!r)return null;let o=typeof n.brand=="string"&&n.brand.trim()?n.brand.trim():r;if(!Array.isArray(n.results))return null;let i=[];for(let s of n.results){if(!s||typeof s!="object")continue;let a=s,c=typeof a.query=="string"?a.query.trim():"";if(!c)continue;let u=a.surfaced===!0,d=typeof a.rank=="number"&&Number.isFinite(a.rank)?Math.round(a.rank):null,p=typeof a.evidence=="string"?a.evidence.trim():"";i.push({query:c,surfaced:u,rank:u?d:null,evidence:p})}return i.length===0?null:{brand:o,domain:r,results:i}}function zo(e,t){let{cited:n,total:r}=In(e),o=t.generatedAt.slice(0,10),i=e.results.map((u,d)=>{let p=u.surfaced?"\u2705":"\u2014",h=u.surfaced&&u.rank?`#${u.rank}`:"\u2014",m=_n(u.evidence||(u.surfaced?"surfaced":"not found"));return`| ${d+1} | ${_n(u.query)} | ${p} | ${h} | ${m} |`}).join(`
481
+ `),s=e.results.filter(u=>!u.surfaced),a=s.length===0?"_None \u2014 the business surfaced for every query tested. Re-run periodically to catch drift._":s.map(u=>`- **${_n(u.query)}** \u2014 ${u.evidence||"not surfaced"}`).join(`
482
+ `),c=e.results.some(u=>!u.surfaced)?"- Enrich the Open Knowledge Format bundle so answer engines understand the business: run `seoagent okf scaffold` then fill it (the skill maps your `.seoagent/` knowledge into it), and publish it at `/.well-known/okf/`.\n- Cover the missed questions directly in your content (a page or FAQ that answers each one), then re-run `seoagent citations`.":"- Keep the OKF bundle current as the business evolves, and re-run to catch regressions.";return`---
483
483
  type: Report
484
484
  title: AI Citation Scorecard \u2014 ${e.domain}
485
485
  generated_at: ${t.generatedAt}
@@ -493,7 +493,7 @@ engine: claude-web-grounded
493
493
  > measurement half of the AEO/GEO loop \u2014 \`seoagent okf\` makes you citable, this
494
494
  > tells you whether it's working.
495
495
 
496
- **Cited: ${n} / ${r} queries** \xB7 engine: ${Pt} \xB7 ${o}
496
+ **Cited: ${n} / ${r} queries** \xB7 engine: ${Lt} \xB7 ${o}
497
497
 
498
498
  | # | Query | Cited? | ~Rank | Evidence |
499
499
  |---|-------|--------|-------|----------|
@@ -505,7 +505,7 @@ ${a}
505
505
 
506
506
  ### How to improve these
507
507
 
508
- ${l}
508
+ ${c}
509
509
 
510
510
  ## Methodology \u2014 read before quoting the number
511
511
 
@@ -520,16 +520,16 @@ This is **not a per-engine guarantee**: ChatGPT, Perplexity, and Gemini each
520
520
  rank and cite differently, and tracking them individually is a planned
521
521
  follow-up. Treat the score as directional \u2014 re-run over time to watch the
522
522
  trend rather than fixating on a single number.
523
- `}function bn(e){return e.replace(/\|/g,"\\|").replace(/\n+/g," ").trim()}async function Je(e={}){let t=process.cwd(),n=D(t);if(!n)return;let r=He();if(r!=="env-key"&&r!=="enterprise"&&r!=="claude-session-likely"){c.warn(J[r].summary),J[r].next&&c.message(` ${J[r].next}`),process.exitCode=1;return}c.info(N.dim(J[r].summary));let o=dr(t),i=Rt(t),s={domain:n.domain,name:o?.business.name,type:o?.business.type||n.site_type,description:o?.business.description,hasOkfBundle:i.exists&&i.fileCount>0},a=Do(e.queries);c.message(`${N.cyan("\u25C7")} Auditing AI citations for ${N.bold(s.domain)} \u2014 ${a} web-grounded quer${a===1?"y":"ies"} via ${Pt}.`),c.message(N.dim(` This runs live web searches and can take a minute\u2026
524
- `));let l=Uo(s,a),u=await ou({cwd:t,prompt:l,model:e.model});if(u===null){process.exitCode=1;return}let d=Mo(u);if(!d){c.error(`Couldn't read a citation report from the agent's reply. Re-run \`${f("citations")}\`, optionally with fewer queries (\`--queries 4\`).`),process.exitCode=1;return}let p=new Date().toISOString(),h=Bo(d,{generatedAt:p});tu(vn(t),{recursive:!0}),nu(Fo(t),h,"utf-8");let{cited:m,total:C}=xn(d),I=m===0?N.red:m<C?N.yellow:N.green;c.message(O([{content:N.bold("AI Citation Scorecard")},{sep:!0},{content:`Domain: ${N.cyan(d.domain)}`},{content:`Cited: ${I(`${m} / ${C}`)} ${N.dim("queries")}`},{content:`Engine: ${N.dim(Pt)}`},{sep:!0},{content:N.dim(`Saved \u2192 .seoagent/${Sn}/${$n}`)},{content:m<C?N.dim("Not surfacing everywhere \u2014 see the scorecard, then `seoagent okf`."):N.dim("Surfacing across the board. Re-run periodically to catch drift.")}],{title:N.magenta("citations")})),e.json&&process.stdout.write(JSON.stringify(d,null,2)+`
525
- `)}async function ou(e){let{cwd:t,prompt:n,model:r}=e;try{let o=ru({prompt:n,options:{cwd:t,allowedTools:["WebSearch","WebFetch","Read","Grep","Glob"],permissionMode:"acceptEdits",...r?{model:r}:{}}}),i="";for await(let s of o)if(s.type==="assistant"){let a=s.message.content;if(Array.isArray(a))for(let l of a)iu(l)}else if(s.type==="result"){if(process.stdout.write(`
526
- `),!(s.subtype==="success"&&!s.is_error))return c.error(" Agent did not complete the citation audit (rate limit, auth, or network)."),null;i=String(s.result??"")}return i}catch(o){return process.stdout.write(`
527
- `),c.error(` Agent error: ${o.message}`),null}}function iu(e){if(!e||typeof e!="object")return;let t=e.type;if(t==="text"){let n=e.text;typeof n=="string"&&n&&process.stdout.write(Ct(n));return}if(t==="tool_use"){let n=String(e.name??"tool"),r=e.input,o=n==="WebSearch"?String(r?.query??""):n==="WebFetch"?String(r?.url??""):"";process.stdout.write(N.dim(` ${N.magenta("\u{1F50E}")} ${n}${o?` ${su(o,70)}`:""}
528
- `))}}function su(e,t){return e.length<=t?e:e.slice(0,t-1)+"\u2026"}import Qe from"picocolors";function Xe(e={}){if(e.all){au();return}let t=process.cwd();if(!D(t))return;ae(t);let n=cn(t);Go(t),n.reason==="refreshed"?(c.success(n.from&&n.from!==n.to?`Refreshed the SEOAgent skill ${n.from} \u2192 ${n.to}.`:`Refreshed the SEOAgent skill (now ${n.to}).`),c.info("Your `.seoagent/` knowledge was left untouched.")):(c.error(`Could not refresh the skill (${n.reason}).`),process.exitCode=1)}function au(){let e=ir();if(e.length===0){c.info("No SEOAgent projects are registered on this machine yet. They register themselves on `init` / `sync`.");return}c.message(`Refreshing ${e.length} project${e.length===1?"":"s"} to SEOAgent ${Qe.bold($)}\u2026`);let t=0,n=0;for(let r of e){let o=cn(r);if(Go(r),o.reason==="refreshed"){t++;let i=o.from&&o.from!==o.to?Qe.dim(` (${o.from} \u2192 ${o.to})`):"";c.message(` ${Qe.green("\u2713")} ${r}${i}`)}else n++,c.message(` ${Qe.yellow("!")} ${r} ${Qe.dim("\u2014 "+o.reason)}`)}c.success(`Refreshed ${t}/${e.length} project${e.length===1?"":"s"} to ${$}.`),n>0&&c.info(`${n} could not be refreshed (see above).`)}function Go(e){try{se(e)}catch{}}import{spinner as Wo}from"@clack/prompts";import y from"picocolors";var qo={easy_win:"easy win",striking_distance:"striking distance",competitor_gap:"competitor gap",defend:"defend",low_priority:"low priority"};async function lu(e){let t=process.cwd(),n=Bn(t);if(!n){c.error(`No .seoagent/project.md found. Run \`${f("init")}\` first.`),process.exitCode=1;return}let r=x(t),o=r?.domain&&r.domain!=="unknown"?r.domain:void 0,i=(e.apiBase||_.BASE).replace(/\/$/,""),a=!!process.stdout.isTTY&&!e.json?Wo():null;a?.start(`Looking up ${y.bold(`"${e.keyword}"`)} ${y.dim("via DataForSEO (free peek)\u2026")}`);let l;try{l=await z(`${i}/api/cli/keywords/peek`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({install_id:n,keyword:e.keyword,...o?{domain:o}:{}})})}catch(d){w(a,"error",`Network error: ${d.message}`,y.red("Network error.")),process.exitCode=1;return}let u=null;try{u=await l.json()}catch{u=null}if(e.json){process.stdout.write(JSON.stringify({status:u?.status??"error",http_status:l.status,body:u??null})+`
529
- `);return}if(l.status===429||u?.skipped?.startsWith("rate-limited")){let d=u?.skipped==="rate-limited:ip"?"this network":"this install";w(a,"warn",`Daily peek quota reached for ${d}.`,y.yellow(`Daily peek quota reached for ${d}.`)),c.message(Ko()),process.exitCode=1;return}if(!l.ok||!u){w(a,"error",`Peek failed (${l.status})${u?.error?`: ${u.error}`:""}`,y.red(`Peek failed (${l.status}).`)),process.exitCode=1;return}if(u.skipped==="provider-quota"){w(a,"warn","Real keyword data is temporarily unavailable. Try again later.",y.yellow("Real keyword data is temporarily unavailable. Try again later.")),c.message(y.dim("No action needed on your side \u2014 the maintainer has been notified."));return}if(u.skipped==="no-creds"||u.skipped==="no-table"){w(a,"warn","Real keyword data isn\u2019t enabled on the server yet \u2014 try again later.",y.yellow("Real keyword data is not enabled on the server yet."));return}if(!u.opportunity){w(a,"warn",`No data returned for "${e.keyword}".`,y.yellow(`No data returned for "${e.keyword}".`));return}a?.stop(y.green("Got it.")),c.message(cu(u.opportunity)),u.remaining&&c.message(`${y.dim("Peeks remaining today:")} ${y.bold(String(u.remaining.install))} ${y.dim("\u2014 "+Ko())}`)}function cu(e){let n=u=>y.dim(u.padEnd(14)),r=e.volume!=null?y.bold(String(e.volume)):y.dim("n/a"),o=e.difficulty!=null?`${y.bold(String(e.difficulty))} ${y.dim(uu(e.difficulty))}`:y.dim("n/a"),i=qo[e.opportunity]??e.opportunity,s=e.opportunity==="easy_win"?y.bold(y.green(i)):e.opportunity==="striking_distance"?y.bold(y.cyan(i)):e.opportunity==="competitor_gap"?y.bold(y.yellow(i)):y.dim(i),a=[{content:`${y.green("\u25CF")} ${y.bold(e.keyword)}`},{sep:!0},{content:`${n("Volume:")}${r} ${y.dim("/mo")}`},{content:`${n("Difficulty:")}${o}`},{content:`${n("Opportunity:")}${s}`}],l=`${y.bold(y.cyan("Keyword peek"))}`;return O(a,{width:55,title:l})}function uu(e){return e<=20?"easy":e<=40?"moderate":e<=60?"hard":"very hard"}function Ko(e=P()){return e?`You're logged in \u2014 run \`${f("keywords")}\` for full enrichment (no quota), or \`${f("keywords --discover")}\` / \`${f("keywords --competitors")}\` (paid).`:`Log in for the full top-25 enrichment, no quota: ${f("login")}`}function _n(e){let t=e.filter(n=>n.opportunity!=="low_priority");if(t.length!==0){c.message("Top opportunities:");for(let n of t){let r=n.volume!=null?`vol ${n.volume}`:"vol n/a",o=n.difficulty!=null?`KD ${n.difficulty}`:"KD n/a",i=n.our_position!=null?`, you're #${n.our_position}`:", not ranking";c.message(` \u2022 [${qo[n.opportunity]??n.opportunity}] ${n.keyword} \u2014 ${r}, ${o}${i}`)}}}function du(e){if(e.length!==0){c.message("Top competitor gaps:");for(let t of e){let n=t.volume!=null?`vol ${t.volume}`:"vol n/a",r=t.difficulty!=null?`KD ${t.difficulty}`:"KD n/a",o=t.their_position!=null?`#${t.their_position}`:"top 10";c.message(` \u2022 ${t.keyword} \u2014 ${t.competitor_domain} ranks ${o}, ${n}, ${r}`)}}}async function re(e={}){if(e.peek&&e.peek.trim().length>0){await lu({keyword:e.peek.trim(),apiBase:e.apiBase,json:e.json});return}let t=P();if(!t){c.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}let n=e.apiBase||t.api_base||_.BASE,r=`Bearer ${t.user_token}:${t.website_token}`,o=e.competitors?"competitors":e.discover?"discover":e.seed?"seed":"enrich",i=o==="competitors"?"/api/cli/keywords/competitors":o==="discover"?"/api/cli/keywords/discover":o==="seed"?"/api/cli/keywords/seed":"/api/cli/keywords/enrich",s=o==="competitors"?"Finding keywords your competitors rank for\u2026":o==="discover"?"Discovering new keywords to target\u2026":o==="seed"?"Seeding keywords from your Search Console data\u2026":"Enriching keywords with real volume + difficulty\u2026",l=!!process.stdout.isTTY?Wo():null;l?.start(s);let u=o==="competitors"||o==="discover"||o==="seed",d;try{d=await z(`${n}${i}`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:r},body:"{}"},u?{timeoutMs:6e4,attempts:1}:{})}catch(m){w(l,"error",`Network error: ${m.message}`,y.red("Network error.")),process.exitCode=1;return}let p=null;try{p=await d.json()}catch{p=null}if(d.status===402||p?.code==="upgrade_required"){w(l,"warn",o==="competitors"?"Competitor gap analysis is a paid feature.":"Keyword discovery is a paid feature.",y.yellow("Paid feature \u2014 upgrade to continue.")),c.message(o==="competitors"?`Upgrade to see which keywords competitors rank for that you don't: ${y.cyan(_.PRICING)}`:`Upgrade to find new keywords to target: ${y.cyan(_.PRICING)}`),process.exitCode=1;return}if(!d.ok||p?.status!=="ok"){w(l,"error",`Server rejected request (${d.status})${p?.error?`: ${p.error}`:""}`,y.red(`Server rejected request (${d.status}).`)),process.exitCode=1;return}if(p.skipped==="no-gsc-data"){w(l,"warn","No Search Console data to seed from yet. Connect Google Search Console (run `seoagent login` and link GSC) \u2014 or wait for impressions to accrue on a new site.",y.yellow("No Search Console data yet."));return}if(p.skipped==="no-keywords"||p.skipped==="no-seeds"){w(l,"warn","No keywords yet. Seed from Search Console with `seoagent keywords --seed`, or run the keyword strategy (Phase 2) first, then try again.",y.yellow("No keywords yet."));return}if(p.skipped==="no-competitors"){w(l,"warn","No competitors found yet. Add competitors or run strategy discovery first, then try again.",y.yellow("No competitors yet."));return}if(p.skipped==="no-creds"||p.skipped==="no-columns"||p.skipped==="no-table"){w(l,"warn","Real keyword data isn\u2019t enabled on the server yet \u2014 try again later.",y.yellow("Real keyword data is not enabled on the server yet."));return}if(p.skipped){w(l,"warn",`Skipped: ${p.skipped}`,y.yellow(`Skipped: ${p.skipped}`));return}if(o==="competitors"){let m=p.gaps??0;w(l,"success",`Found ${m} competitor gap${m===1?"":"s"} across ${p.competitors?.length??0} competitor${p.competitors?.length===1?"":"s"} (added as "suggested").`,y.green(`${m} competitor gap${m===1?"":"s"} found.`)),du(p.topGaps??[]),c.message(`Review them in ${y.cyan(".seoagent/keywords.md")} and promote the ones you want into a cluster.`);return}if(o==="discover"){let m=p.discovered??0;w(l,"success",`Discovered ${m} new keyword${m===1?"":"s"} to target (added as "suggested").`,y.green(`${m} new keyword${m===1?"":"s"} discovered.`)),_n(p.opportunities??[]),c.message(`Review them in ${y.cyan(".seoagent/keywords.md")} and promote the ones you want into a cluster.`);return}if(o==="seed"){let m=p.seeded??0;w(l,"success",`Seeded ${m} keyword${m===1?"":"s"} from Search Console (real impressed queries, added as "suggested").`,y.green(`${m} keyword${m===1?"":"s"} seeded from Search Console.`)),_n(p.opportunities??[]),c.message(`These are queries your site already gets impressions for \u2014 striking-distance wins first. Review in ${y.cyan(".seoagent/keywords.md")} and build clusters from them.`);return}let h=p.enriched??0;w(l,"success",`Enriched ${h} keyword${h===1?"":"s"}.`,y.green(`Enriched ${h} keyword${h===1?"":"s"}.`)),_n(p.opportunities??[]),p.paid||c.message(`${y.dim("Free plan:")} enriched up to ${y.bold(String(p.cap??25))} keywords. ${y.dim("Upgrade for full enrichment + discovery + competitor gap:")} ${y.cyan(_.PRICING)}`)}import A from"picocolors";import{existsSync as pu,readFileSync as fu}from"fs";import{join as mu}from"path";var Ho=["openai","fal","replicate"],Ie={openai:["OPENAI_API_KEY"],fal:["FAL_KEY","FAL_API_KEY"],replicate:["REPLICATE_API_TOKEN","REPLICATE_API_KEY"]};function gu(e){let t={};if(!pu(e))return t;let n=fu(e,"utf-8");for(let r of n.split(/\r?\n/)){let o=r.trim();if(!o||o.startsWith("#"))continue;let i=o.indexOf("=");if(i===-1)continue;let s=o.slice(0,i).trim(),a=o.slice(i+1).trim();(a.startsWith('"')&&a.endsWith('"')||a.startsWith("'")&&a.endsWith("'"))&&(a=a.slice(1,-1)),t[s]=a}return t}function Yo(e,t){let n={};for(let r of t){let o=process.env[r];o&&o.trim().length>0&&(n[r]={value:o,source:"process"})}for(let r of me){let o=mu(e,r),i=gu(o);for(let s of t){if(n[s])continue;let a=i[s];a&&a.length>0&&(n[s]={value:a,source:r})}}return{found:n}}function Ot(e){let t=[].concat(...Ho.map(a=>Ie[a])),n=Yo(e,t),r=[];for(let a of Ho)Ie[a].some(l=>n.found[l])&&r.push(a);if(r.length===0)return{provider:"none",matched_key:null,source:null,available_providers:[]};let o=r[0],i=Ie[o].find(a=>n.found[a])??null,s=i?n.found[i].source:null;return{provider:o,matched_key:i,source:s,available_providers:r}}function zo(e,t){let n=Yo(e,Ie[t]);for(let r of Ie[t])if(n.found[r])return{key:n.found[r].value,envName:r};return null}function Vo(){return Ie}function Ze(e={}){let t=process.cwd(),n=x(t),r=Ot(t);if(e.json){process.stdout.write(JSON.stringify(r,null,2)+`
530
- `);return}if(c.message(hu(r)),!n){c.warn(`No SEOAgent project here. Run \`${f("init")}\` first to persist the provider.`);return}B(t,{image_provider:r.provider}),c.info(`Saved to ${A.cyan(".seoagent/project.md")} ${A.dim(`(image_provider: ${r.provider})`)}`)}function hu(e){let n=i=>A.dim(i.padEnd(12)),r=[];if(e.provider==="none"){r.push({content:`${A.dim("\u25CB")} ${A.bold(A.yellow("No image provider detected"))}`}),r.push({sep:!0}),r.push({content:A.dim("Set ONE of these to enable image generation:")});let i=Vo();for(let s of Object.keys(i))r.push({content:`${n(s+":")}${A.cyan(i[s].join(" or "))}`});r.push({sep:!0}),r.push({content:A.dim("Add to your shell, .env.local, or .env, then re-run:")}),r.push({content:` ${A.cyan(f("env-check"))}`})}else{r.push({content:`${A.green("\u2713")} ${A.dim("Image provider:")} ${A.bold(A.green(e.provider))}`}),r.push({sep:!0}),e.matched_key&&r.push({content:`${n("Key:")}${A.bold(e.matched_key)}`}),e.source&&r.push({content:`${n("Source:")}${A.cyan(e.source)}`});let i=e.available_providers.filter(s=>s!==e.provider);i.length>0&&r.push({content:`${n("Available:")}${A.dim(i.join(", "))}`})}let o=`${A.bold(A.cyan("SEOAgent"))} ${A.dim("\xB7")} ${A.dim("env-check")}`;return O(r,{width:64,title:o})}import{existsSync as En,mkdirSync as Xo,writeFileSync as Zo}from"fs";import{dirname as jt,isAbsolute as Su,join as Tt,resolve as $u}from"path";import{tmpdir as vu}from"os";import{spinner as xu}from"@clack/prompts";import T from"picocolors";import{Buffer as Jo}from"buffer";async function Cn(e){let t=await fetch(e);if(!t.ok)throw new Error(`Image download failed: ${t.status} ${t.statusText}`);let n=await t.arrayBuffer();return Jo.from(n)}async function yu(e){let t=e.size??"1024x1024",n=await fetch("https://api.openai.com/v1/images/generations",{method:"POST",headers:{Authorization:`Bearer ${e.apiKey}`,"Content-Type":"application/json"},body:JSON.stringify({model:"gpt-image-1",prompt:e.prompt,size:t,n:1})});if(!n.ok){let i=await n.text().catch(()=>"");throw new Error(`OpenAI image API ${n.status}: ${i.slice(0,300)}`)}let o=(await n.json()).data?.[0];if(!o)throw new Error("OpenAI image API returned no data");if(o.b64_json)return{bytes:Jo.from(o.b64_json,"base64"),contentType:"image/png"};if(o.url)return{bytes:await Cn(o.url),contentType:"image/png"};throw new Error("OpenAI image API returned neither b64_json nor url")}async function wu(e){let t=process.env.FAL_MODEL||"fal-ai/flux/schnell",n=await fetch(`https://fal.run/${t}`,{method:"POST",headers:{Authorization:`Key ${e.apiKey}`,"Content-Type":"application/json"},body:JSON.stringify({prompt:e.prompt,image_size:"landscape_16_9",num_images:1})});if(!n.ok){let s=await n.text().catch(()=>"");throw new Error(`fal.ai API ${n.status}: ${s.slice(0,300)}`)}let o=(await n.json()).images?.[0];if(!o?.url)throw new Error("fal.ai API returned no image url");return{bytes:await Cn(o.url),contentType:o.content_type??"image/png"}}async function ku(e,t,n=9e4){let r=Date.now(),o=1e3;for(;Date.now()-r<n;){let i=await fetch(`https://api.replicate.com/v1/predictions/${e}`,{headers:{Authorization:`Token ${t}`}});if(!i.ok)throw new Error(`Replicate poll failed: ${i.status}`);let s=await i.json();if(s.status==="succeeded"||s.status==="failed"||s.status==="canceled")return s;await new Promise(a=>setTimeout(a,o)),o=Math.min(o*1.5,5e3)}throw new Error("Replicate prediction timed out")}async function bu(e){let t=process.env.REPLICATE_MODEL||"black-forest-labs/flux-schnell",n=await fetch(`https://api.replicate.com/v1/models/${t}/predictions`,{method:"POST",headers:{Authorization:`Token ${e.apiKey}`,"Content-Type":"application/json",Prefer:"wait"},body:JSON.stringify({input:{prompt:e.prompt,aspect_ratio:"16:9"}})});if(!n.ok){let s=await n.text().catch(()=>"");throw new Error(`Replicate API ${n.status}: ${s.slice(0,300)}`)}let r=await n.json();if(r.status!=="succeeded"&&r.status!=="failed"&&(r=await ku(r.id,e.apiKey)),r.status!=="succeeded")throw new Error(`Replicate prediction ${r.status}: ${r.error??""}`);let o=Array.isArray(r.output)?r.output[0]:r.output;if(!o)throw new Error("Replicate prediction returned no output");return{bytes:await Cn(o),contentType:"image/png",providerImageId:r.id}}async function Qo(e,t){switch(e){case"openai":return yu(t);case"fal":return wu(t);case"replicate":return bu(t);default:throw new Error(`Unknown image provider: ${e}`)}}function _u(e){return e==="openai"||e==="fal"||e==="replicate"}async function et(e={}){let t=process.cwd();if(!e.prompt){c.warn(`Missing --prompt. Example: ${f('generate-image --prompt "..." --out content/images/hero.png')}`),process.exitCode=1;return}if(!e.out){c.warn("Missing --out. Example: --out .seoagent/content/images/hero.png"),process.exitCode=1;return}let n=x(t),r=null;if(e.provider){if(!_u(e.provider)){c.warn(`Invalid --provider "${e.provider}". Use one of: openai, fal, replicate.`),process.exitCode=1;return}r=e.provider}else n?.image_provider&&n.image_provider!=="none"?r=n.image_provider:r=Ot(t).provider;if(!r||r==="none"){c.warn(`No image generation provider available. Set OPENAI_API_KEY, FAL_KEY, or REPLICATE_API_TOKEN, then run \`${f("env-check")}\`.`),process.exitCode=1;return}let o=zo(t,r);if(!o){c.warn(`Provider "${r}" selected but no API key found. Set the env var, then re-run.`),process.exitCode=1;return}let i=Su(e.out)?e.out:$u(t,e.out),a=!e.silent&&!!process.stdout.isTTY?xu():null;a?.start(`Generating image with ${T.bold(r)} ${T.dim(`(${o.envName})`)}\u2026`);try{let l=await Qo(r,{prompt:e.prompt,apiKey:o.key,size:e.size});En(jt(i))||Xo(jt(i),{recursive:!0}),Zo(i,l.bytes),e.silent||w(a,"success",`Wrote ${i} (${l.bytes.length} bytes, ${l.contentType}).`,T.green(`Wrote ${i} ${T.dim(`(${l.bytes.length} bytes, ${l.contentType})`)}`))}catch(l){a?.stop(T.red("Image generation failed."));let u=Eu(t,{provider:r,envName:o.envName,prompt:e.prompt,size:e.size,outPath:i,error:l});c.message(Cu({provider:r,envName:o.envName,prompt:e.prompt,size:e.size,message:l.message})),u&&c.message(`${T.dim("Full error log:")} ${T.cyan(u)}`),process.exitCode=1}}function Cu(e){let n=d=>T.dim(d.padEnd(10)),o=e.prompt.length>54?`${e.prompt.slice(0,53)}\u2026`:e.prompt,i=[{content:`${T.red("\u2717")} ${T.bold(T.red("Image generation failed"))}`},{sep:!0},{content:`${n("Provider:")}${T.bold(e.provider)}`},{content:`${n("Key:")}${e.envName}`},{content:`${n("Prompt:")}${T.dim(`"${o}"`)}`}];e.size&&i.push({content:`${n("Size:")}${e.size}`}),i.push({sep:!0});let s=e.message.replace(/\s+/g," ").trim(),a=64,l=s.length>a?`${s.slice(0,a-1)}\u2026`:s;i.push({content:T.red(l)});let u=`${T.bold(T.cyan("SEOAgent"))} ${T.dim("\xB7")} ${T.dim("generate-image")}`;return O(i,{width:70,title:u})}function Eu(e,t){let r=`seoagent-generate-image-${new Date().toISOString().replace(/[:.]/g,"-")}.log`,o=Tt(e,b),i=Tt(o,".errors"),s=En(o)?Tt(i,r):Tt(vu(),r),a=["# SEOAgent generate-image error",`# ${new Date().toISOString()}`,"","## Request",`provider: ${t.provider}`,`env_var: ${t.envName}`,`prompt: ${JSON.stringify(t.prompt)}`,`size: ${t.size??"(default)"}`,`out_path: ${t.outPath}`,`cwd: ${e}`,"","## Error",`message: ${t.error.message}`,"","## Stack",t.error.stack??"(no stack)",""];t.error.cause&&a.push("## Cause",String(t.error.cause),"");try{return En(jt(s))||Xo(jt(s),{recursive:!0}),Zo(s,a.join(`
531
- `)),s}catch{return null}}import U from"picocolors";async function tt(e={}){let t=P();if(!t){e.json?process.stdout.write(`${JSON.stringify({logged_in:!1})}
532
- `):c.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}let n=(e.apiBase||t.api_base||_.BASE).replace(/\/$/,""),r=`Bearer ${t.user_token}:${t.website_token}`,o;try{o=await fetch(`${n}/api/cli/whoami`,{method:"GET",headers:{Authorization:r,Accept:"application/json"}})}catch(s){c.error(`Network error: ${s.message}`),process.exitCode=1;return}if(o.status===404){if(e.json){process.stdout.write(`${JSON.stringify({logged_in:!0,server_supports_whoami:!1,api_base:n})}
533
- `);return}c.warn(`Logged in, but the server at this API base does not support \`/api/cli/whoami\` yet. Update with \`${f("update-cli")}\` (or re-deploy your server).`),c.message(`API base: ${n}`);return}let i=null;try{i=await o.json()}catch{i=null}if(!o.ok||!i||i.status!=="ok"){e.json?process.stdout.write(`${JSON.stringify({logged_in:!0,error:i?.error??`HTTP ${o.status}`})}
534
- `):c.error(`Could not fetch your account (HTTP ${o.status})${i?.error?`: ${i.error}`:""}`),process.exitCode=1;return}if(e.json){process.stdout.write(`${JSON.stringify({logged_in:!0,...i},null,2)}
535
- `);return}c.message(Au(i)),i.paid===!1&&c.message(`${U.dim("Upgrade for autopilot:")} ${U.cyan(_.PRICING)}`)}function Au(e){let n=i=>U.dim(i.padEnd(10)),r=[];if(e.email&&(r.push({content:`${U.green("\u2713")} ${U.dim("Logged in as")} ${U.bold(e.email)}`}),r.push({sep:!0})),e.domain&&r.push({content:`${n("Website:")}${U.cyan(e.domain)}`}),e.plan){let i=e.paid?U.bold(U.green(e.plan)):U.bold(e.plan);r.push({content:`${n("Plan:")}${i}`})}e.api_base&&r.push({content:`${n("API:")}${U.dim(e.api_base)}`});let o=`${U.bold(U.cyan("SEOAgent"))} ${U.dim("\xB7")} ${U.dim("whoami")}`;return O(r,{width:55,title:o})}import{select as rt,text as nt,confirm as ni,isCancel as M,intro as Iu,outro as Ru}from"@clack/prompts";import Lt from"picocolors";function Pu(){return[{command:"status",label:"Show project status",hint:"Audit, strategy, briefs, content, roadmap \u2014 everything at a glance.",run:async()=>Ue()},{command:"sync",label:"Sync with the cloud dashboard",hint:"Push local .seoagent/ changes + pull dashboard edits.",run:async()=>await H()},{command:"init",label:"Initialize a SEOAgent project",hint:"Scaffold .seoagent/ + the skill file in this directory.",run:async()=>{await Ne()}},{command:"login",label:"Connect this CLI to seoagent.com",hint:"Opens the browser to bind your account.",run:async()=>await We()},{command:"whoami",label:"Show logged-in account",hint:"Email, bound website, plan, API base.",run:async()=>await tt()},{command:"keywords",label:"Keyword research",hint:"Peek (free, one keyword) \xB7 enrich \xB7 discover \xB7 competitor gaps.",run:async()=>{let e=await rt({message:"Which mode?",options:[{value:"peek",label:"peek",hint:"Free, one keyword, no login required"},{value:"enrich",label:"enrich (default)",hint:"Enrich your full strategy (requires login)"},{value:"discover",label:"discover",hint:"Find new keywords to target (paid)"},{value:"competitors",label:"competitors",hint:"Find competitor keyword gaps (paid)"}]});if(!M(e))if(e==="peek"){let t=await nt({message:"Keyword to peek:",placeholder:"saas seo",validate:n=>String(n??"").trim()?void 0:"A keyword is required."});if(M(t))return;await re({peek:String(t)})}else e==="discover"?await re({discover:!0}):e==="competitors"?await re({competitors:!0}):await re()}},{command:"internal-links",label:"Analyze internal links",hint:"Find orphan pages \u2192 .seoagent/internal-links.md",run:async()=>ze({})},{command:"okf",label:"Open Knowledge Format bundle",hint:"Make your site AI-readable (AEO/GEO) \u2192 .seoagent/okf/",run:async()=>{let e=await rt({message:"Which OKF action?",options:[{value:"status",label:"status",hint:"Is a bundle present?"},{value:"scaffold",label:"scaffold",hint:"Create the starter bundle"},{value:"validate",label:"validate",hint:"Check type fields, timestamps, links"}]});M(e)||Ve(e==="status"?void 0:String(e))}},{command:"citations",label:"Measure AI citations (AEO/GEO)",hint:"Are answer engines citing you? Web-grounded \u2192 .seoagent/citations/scorecard.md",run:async()=>await Je()},{command:"generate-image",label:"Generate an image",hint:"Uses the detected (or explicit) provider.",run:async()=>{let e=await nt({message:"Image prompt:",placeholder:"a minimalist cyan box logo",validate:n=>String(n??"").trim()?void 0:"A prompt is required."});if(M(e))return;let t=await nt({message:"Output file path:",placeholder:".seoagent/content/images/hero.png",validate:n=>String(n??"").trim()?void 0:"An output path is required."});M(t)||await et({prompt:String(e),out:String(t)})}},{command:"env-check",label:"Check image-generation provider",hint:"Detect openai / fal / replicate from your env.",run:async()=>Ze({})},{command:"autopilot",label:"Toggle CLI autopilot",hint:"on / off / status \u2014 paid feature for queueing SEO fixes.",run:async()=>{let e=await rt({message:"Autopilot action:",options:[{value:"status",label:"status",hint:"Show current state"},{value:"on",label:"on",hint:"Turn autopilot ON (paid)"},{value:"off",label:"off",hint:"Turn autopilot OFF"}]});M(e)||await Ye(String(e))}},{command:"pull",label:"Pull dashboard changes only",hint:"Cloud \u2192 local. Same as the second half of `sync`.",run:async()=>await fe()},{command:"ack",label:"Close out a pending inbox action",hint:"Mark a .seoagent/inbox/ action completed or failed.",run:async()=>{let e=await nt({message:"Action ID to close out:",placeholder:"action-abc123",validate:r=>String(r??"").trim()?void 0:"Action ID is required."});if(M(e))return;let t=await ni({message:"Mark as failed instead of completed?",initialValue:!1});if(M(t))return;let n;if(t===!0){let r=await nt({message:"Reason for failure (optional):",placeholder:"couldn't apply because\u2026"});if(M(r))return;String(r).trim()&&(n=String(r))}await te(String(e),{failed:t===!0,reason:n})}},{command:"upgrade",label:"Upgrade your SEOAgent plan",hint:"Open the pricing page; contextual prompt if logged in.",run:async()=>await Ge()},{command:"update-cli",label:"Update the CLI to the latest version",hint:"npm install -g @seoagent-official/seoagent@latest + refresh your projects",run:async()=>await Ke({})},{command:"refresh",label:"Refresh the skill to your CLI version",hint:"This project \u2014 or every project on the machine via `refresh --all`.",run:async()=>{let e=await rt({message:"Refresh which?",options:[{value:"this",label:"This project",hint:"Just the current directory"},{value:"all",label:"All projects",hint:"Every SEOAgent project on this machine"}]});M(e)||Xe({all:e==="all"})}},{command:"logout",label:"Log out",hint:"Clear stored credentials for seoagent.com.",run:async()=>qe()},{command:"uninstall",label:"Uninstall SEOAgent from this project",hint:"Remove .seoagent/, the skill bundle, and the sync hook.",run:async()=>await Fe({})}]}var ei="__exit__";async function ti(e=Pu()){let t=e.map(o=>({value:o.command,label:o.label,hint:o.hint}));t.push({value:ei,label:"Exit",hint:"Close the menu"});let n=await rt({message:"What would you like to do?",options:t});if(M(n)||n===ei)return!0;let r=e.find(o=>o.command===n);if(!r)return c.warn(`Unknown menu pick "${String(n)}" \u2014 returning to menu.`),!1;try{await r.run()}catch(o){c.error(`\`${r.command}\` failed: ${o.message??String(o)}`)}return!1}async function An(){if(!process.stdin.isTTY){c.info("The menu needs an interactive terminal. Use the regular commands directly, e.g. `seoagent --help`.");return}Iu(`${Lt.bold(Lt.cyan("SEOAgent"))} ${Lt.dim("\xB7 menu")}`);let e=await ti();for(;!e;){let t=await ni({message:"Do another?",initialValue:!0});if(M(t)||t===!1){e=!0;break}e=await ti()}Ru(Lt.dim("See you next time."))}var v=new Ou;v.name("seoagent").description("AI SEO agent for Claude Code").version($).showSuggestionAfterError(!0).showHelpAfterError(!0);v.command("init").description("Initialize SEOAgent project \u2014 creates .seoagent/ and installs the skill file").option("-y, --yes","Non-interactive: use inferred/env/flag values only (requires domain if not inferable)").option("--domain <domain>","Website domain (non-interactive or override)").option("--site-type <type>","Site type: saas, service, product, content, etc.").action(e=>{Ne({yes:e.yes,domain:e.domain,siteType:e.siteType})});v.command("uninstall").description("Remove SEOAgent from this project \u2014 deletes .seoagent/, the skill bundle, and the sync hook").option("-y, --yes","Skip the confirmation prompt (also implied in a non-TTY shell)").option("--global","Also wipe ~/.config/seoagent (login + sync state, all projects)").action(e=>{Fe({yes:e.yes,global:e.global})});v.command("status").description("Show current SEO project state").action(Ue);v.command("login").description("Connect this CLI to your seoagent.com account (browser flow)").option("--api-base <url>","Override API base URL (for testing)").action(e=>{We({apiBase:e.apiBase})});v.command("logout").description("Remove stored credentials for seoagent.com").action(qe);v.command("sync").description("Sync .seoagent/ with your dashboard \u2014 push local changes then pull cloud changes (no-op when not logged in)").option("--silent","Suppress output (used by the Claude Code hook)").option("--force","Re-send every artifact on push; take cloud on every pull conflict").option("--path <relpath>","Push only files matching this path suffix").option("--push-only","Skip the cloud \u2192 local pull pass").option("--pull-only","Skip the local \u2192 cloud push pass (same as `seoagent pull`)").action(e=>{H({silent:e.silent,force:e.force,path:e.path,pushOnly:e.pushOnly,pullOnly:e.pullOnly})});v.command("pull").description("Pull cloud changes into .seoagent/ (dashboard / autopilot / chat edits)").option("--silent","Suppress output").option("--force","Take the cloud version on every conflict (discards local edits)").option("--print <path>","Read-only: print the current cloud body of one artifact to stdout (writes nothing). For conflict diffs.").action(e=>{fe({force:e.force,silent:e.silent,print:e.print})});v.command("ack [action_id]").description("Close out a pending action from .seoagent/inbox/ (omit id for an interactive picker)").option("--failed","Mark as failed instead of completed").option("--reason <text>","Reason for failure (used with --failed)").action((e,t)=>{te(e,{failed:t.failed,reason:t.reason})});v.command("inbox").description("List pending actions queued by autopilot in .seoagent/inbox/").option("--json","Output as JSON (handy for scripting / `jq`)").action(e=>{dn({json:e.json})});v.command("process").description("Sync the inbox, pick which actions to apply, and run them via the Claude Agent SDK (uses your `claude login` session or ANTHROPIC_API_KEY)").option("--yes, -y","Skip the sync + selection prompts; process every pending action (for CI)").option("--model <name>","Override the model the Agent SDK uses (e.g. claude-sonnet-4-5-20250929)").action(e=>{gn({yes:e.yes,model:e.model})});v.command("autopilot <action>").description("Turn CLI autopilot on|off or show status (paid; queues fixes for your agent)").option("--api-base <url>","Override API base URL (for testing)").action((e,t)=>{Ye(e,{apiBase:t.apiBase})});v.command("keywords").description("Enrich keywords with real volume + difficulty + opportunity labels (requires login)").option("--peek <keyword>","Free one-keyword DataForSEO lookup (no login required; daily quota)").option("--seed","Add the queries your site already ranks for (Google Search Console) to the inventory \u2014 additive, keeps existing keywords (requires login + GSC)").option("--discover","Find NEW keywords to target from your existing strategy (paid)").option("--competitors","Find keywords competitors rank for that you don\u2019t (paid)").option("--json","Output as JSON (handy for scripting / `jq` \u2014 currently --peek only)").option("--api-base <url>","Override API base URL (for testing)").action(e=>{re({peek:e.peek,seed:e.seed,discover:e.discover,competitors:e.competitors,json:e.json,apiBase:e.apiBase})});v.command("internal-links").description("Analyze the repo for orphan pages (no inbound internal links) \u2192 .seoagent/internal-links.md").option("--json","Print the analysis as JSON instead of writing the report").action(e=>{ze({json:e.json})});v.command("okf [action]").description("Manage the Open Knowledge Format bundle for AI agents \u2014 [validate|scaffold] \u2192 .seoagent/okf/").option("--json","Output result as JSON").action((e,t)=>{Ve(e,{json:t.json})});v.command("citations").description("Measure whether answer engines cite you (AEO/GEO) \u2014 web-grounded via the Claude Agent SDK \u2192 .seoagent/citations/scorecard.md").option("--queries <n>","How many answer-engine queries to test (1\u201312, default 6)",e=>parseInt(e,10)).option("--model <name>","Override the model the Agent SDK uses").option("--json","Also print the parsed report as JSON").action(e=>{Je({queries:e.queries,model:e.model,json:e.json})});v.command("env-check").description("Detect which image generation provider is available (OPENAI / FAL / REPLICATE)").option("--json","Output detection result as JSON").action(e=>{Ze({json:e.json})});v.command("generate-image").description("Generate an image via the detected (or explicit) provider").requiredOption("--prompt <text>","Image prompt").requiredOption("--out <path>","Output file path (relative to cwd or absolute)").option("--provider <name>","Force provider: openai | fal | replicate").option("--size <wxh>","Pixel size hint, e.g. 1024x1024").option("--silent","Suppress progress output").action(e=>{et({prompt:e.prompt,out:e.out,provider:e.provider,size:e.size,silent:e.silent})});v.command("whoami").description("Show the logged-in account: email, bound website, plan, and API base").option("--json","Output as JSON (handy for scripting / `jq`)").option("--api-base <url>","Override API base URL (for testing)").action(e=>{tt({json:e.json,apiBase:e.apiBase})});v.command("upgrade").description("Open the SEOAgent Cloud pricing page in your browser (plan upgrade)").action(Ge);v.command("update-cli").description("Update the SEOAgent CLI to the latest npm version, then refresh every project on this machine").option("--dry-run","Show what would happen without running the install").option("--no-projects","Skip refreshing your other projects after the update").action(e=>{Ke({dryRun:e.dryRun,projects:e.projects})});v.command("refresh").description("Refresh the installed skill to your CLI version. `--all` sweeps every project on this machine.").option("--all","Refresh every registered project, not just this one").action(e=>{Xe({all:e.all})});v.command("menu").description("Interactive menu \u2014 pick a command from a list (no flags required)").action(()=>{An()});process.argv.length===2&&(v.outputHelp(),process.exit(0));v.parse();
523
+ `}function _n(e){return e.replace(/\|/g,"\\|").replace(/\n+/g," ").trim()}async function et(e={}){let t=process.cwd(),n=D(t);if(!n)return;let r=Je();if(r!=="env-key"&&r!=="enterprise"&&r!=="claude-session-likely"){l.warn(X[r].summary),X[r].next&&l.message(` ${X[r].next}`),process.exitCode=1;return}l.info(N.dim(X[r].summary));let o=hr(t),i=jt(t),s={domain:n.domain,name:o?.business.name,type:o?.business.type||n.site_type,description:o?.business.description,hasOkfBundle:i.exists&&i.fileCount>0},a=qo(e.queries);l.message(`${N.cyan("\u25C7")} Auditing AI citations for ${N.bold(s.domain)} \u2014 ${a} web-grounded quer${a===1?"y":"ies"} via ${Lt}.`),l.message(N.dim(` This runs live web searches and can take a minute\u2026
524
+ `));let c=Ho(s,a),u=await wu({cwd:t,prompt:c,model:e.model});if(u===null){process.exitCode=1;return}let d=Yo(u);if(!d){l.error(`Couldn't read a citation report from the agent's reply. Re-run \`${f("citations")}\`, optionally with fewer queries (\`--queries 4\`).`),process.exitCode=1;return}let p=new Date().toISOString(),h=zo(d,{generatedAt:p});gu(An(t),{recursive:!0}),hu(Ko(t),h,"utf-8");let{cited:m,total:E}=In(d),I=m===0?N.red:m<E?N.yellow:N.green;l.message(O([{content:N.bold("AI Citation Scorecard")},{sep:!0},{content:`Domain: ${N.cyan(d.domain)}`},{content:`Cited: ${I(`${m} / ${E}`)} ${N.dim("queries")}`},{content:`Engine: ${N.dim(Lt)}`},{sep:!0},{content:N.dim(`Saved \u2192 .seoagent/${Cn}/${En}`)},{content:m<E?N.dim("Not surfacing everywhere \u2014 see the scorecard, then `seoagent okf`."):N.dim("Surfacing across the board. Re-run periodically to catch drift.")}],{title:N.magenta("citations")})),e.json&&process.stdout.write(JSON.stringify(d,null,2)+`
525
+ `)}async function wu(e){let{cwd:t,prompt:n,model:r}=e;try{let o=yu({prompt:n,options:{cwd:t,allowedTools:["WebSearch","WebFetch","Read","Grep","Glob"],permissionMode:"acceptEdits",...r?{model:r}:{}}}),i="";for await(let s of o)if(s.type==="assistant"){let a=s.message.content;if(Array.isArray(a))for(let c of a)ku(c)}else if(s.type==="result"){if(process.stdout.write(`
526
+ `),!(s.subtype==="success"&&!s.is_error))return l.error(" Agent did not complete the citation audit (rate limit, auth, or network)."),null;i=String(s.result??"")}return i}catch(o){return process.stdout.write(`
527
+ `),l.error(` Agent error: ${o.message}`),null}}function ku(e){if(!e||typeof e!="object")return;let t=e.type;if(t==="text"){let n=e.text;typeof n=="string"&&n&&process.stdout.write(Rt(n));return}if(t==="tool_use"){let n=String(e.name??"tool"),r=e.input,o=n==="WebSearch"?String(r?.query??""):n==="WebFetch"?String(r?.url??""):"";process.stdout.write(N.dim(` ${N.magenta("\u{1F50E}")} ${n}${o?` ${bu(o,70)}`:""}
528
+ `))}}function bu(e,t){return e.length<=t?e:e.slice(0,t-1)+"\u2026"}import Pe from"picocolors";function tt(e={}){if(e.all){$u();return}let t=process.cwd();if(!D(t))return;ce(t);let n=mn(t);Jo(t);let r=Vo(t);n.reason==="refreshed"?(l.success(n.from&&n.from!==n.to?`Refreshed the SEOAgent skill ${n.from} \u2192 ${n.to}.`:`Refreshed the SEOAgent skill (now ${n.to}).`),l.info("Your `.seoagent/` knowledge was left untouched.")):(l.error(`Could not refresh the skill (${n.reason}).`),process.exitCode=1),r.added>0?l.success(`Re-scanned the codebase: +${r.added} new page${r.added===1?"":"s"} merged into .seoagent/pages.md (${r.total} total).`):r.total>0&&l.info(`Page inventory already current (${r.total} pages).`)}function Vo(e){try{let t=S(e),n=t?.domain&&t.domain!=="unknown"?t.domain:null,{pages:r}=be(e,n),o=bt(e,r);return{added:o.added,total:o.total}}catch{return{added:0,total:0}}}function $u(){let e=ur();if(e.length===0){l.info("No SEOAgent projects are registered on this machine yet. They register themselves on `init` / `sync`.");return}l.message(`Refreshing ${e.length} project${e.length===1?"":"s"} to SEOAgent ${Pe.bold(v)}\u2026`);let t=0,n=0;for(let r of e){let o=mn(r);Jo(r);let i=Vo(r),s=i.added>0?Pe.cyan(` +${i.added} page${i.added===1?"":"s"}`):"";if(o.reason==="refreshed"){t++;let a=o.from&&o.from!==o.to?Pe.dim(` (${o.from} \u2192 ${o.to})`):"";l.message(` ${Pe.green("\u2713")} ${r}${a}${s}`)}else n++,l.message(` ${Pe.yellow("!")} ${r} ${Pe.dim("\u2014 "+o.reason)}${s}`)}l.success(`Refreshed ${t}/${e.length} project${e.length===1?"":"s"} to ${v}.`),n>0&&l.info(`${n} could not be refreshed (see above).`)}function Jo(e){try{le(e)}catch{}}import{spinner as Xo}from"@clack/prompts";import y from"picocolors";var Zo={easy_win:"easy win",striking_distance:"striking distance",competitor_gap:"competitor gap",defend:"defend",low_priority:"low priority"};async function Su(e){let t=process.cwd(),n=Hn(t);if(!n){l.error(`No .seoagent/project.md found. Run \`${f("init")}\` first.`),process.exitCode=1;return}let r=S(t),o=r?.domain&&r.domain!=="unknown"?r.domain:void 0,i=(e.apiBase||C.BASE).replace(/\/$/,""),a=!!process.stdout.isTTY&&!e.json?Xo():null;a?.start(`Looking up ${y.bold(`"${e.keyword}"`)} ${y.dim("via DataForSEO (free peek)\u2026")}`);let c;try{c=await J(`${i}/api/cli/keywords/peek`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({install_id:n,keyword:e.keyword,...o?{domain:o}:{}})})}catch(d){w(a,"error",`Network error: ${d.message}`,y.red("Network error.")),process.exitCode=1;return}let u=null;try{u=await c.json()}catch{u=null}if(e.json){process.stdout.write(JSON.stringify({status:u?.status??"error",http_status:c.status,body:u??null})+`
529
+ `);return}if(c.status===429||u?.skipped?.startsWith("rate-limited")){let d=u?.skipped==="rate-limited:ip"?"this network":"this install";w(a,"warn",`Daily peek quota reached for ${d}.`,y.yellow(`Daily peek quota reached for ${d}.`)),l.message(Qo()),process.exitCode=1;return}if(!c.ok||!u){w(a,"error",`Peek failed (${c.status})${u?.error?`: ${u.error}`:""}`,y.red(`Peek failed (${c.status}).`)),process.exitCode=1;return}if(u.skipped==="provider-quota"){w(a,"warn","Real keyword data is temporarily unavailable. Try again later.",y.yellow("Real keyword data is temporarily unavailable. Try again later.")),l.message(y.dim("No action needed on your side \u2014 the maintainer has been notified."));return}if(u.skipped==="no-creds"||u.skipped==="no-table"){w(a,"warn","Real keyword data isn\u2019t enabled on the server yet \u2014 try again later.",y.yellow("Real keyword data is not enabled on the server yet."));return}if(!u.opportunity){w(a,"warn",`No data returned for "${e.keyword}".`,y.yellow(`No data returned for "${e.keyword}".`));return}a?.stop(y.green("Got it.")),l.message(vu(u.opportunity)),u.remaining&&l.message(`${y.dim("Peeks remaining today:")} ${y.bold(String(u.remaining.install))} ${y.dim("\u2014 "+Qo())}`)}function vu(e){let n=u=>y.dim(u.padEnd(14)),r=e.volume!=null?y.bold(String(e.volume)):y.dim("n/a"),o=e.difficulty!=null?`${y.bold(String(e.difficulty))} ${y.dim(xu(e.difficulty))}`:y.dim("n/a"),i=Zo[e.opportunity]??e.opportunity,s=e.opportunity==="easy_win"?y.bold(y.green(i)):e.opportunity==="striking_distance"?y.bold(y.cyan(i)):e.opportunity==="competitor_gap"?y.bold(y.yellow(i)):y.dim(i),a=[{content:`${y.green("\u25CF")} ${y.bold(e.keyword)}`},{sep:!0},{content:`${n("Volume:")}${r} ${y.dim("/mo")}`},{content:`${n("Difficulty:")}${o}`},{content:`${n("Opportunity:")}${s}`}],c=`${y.bold(y.cyan("Keyword peek"))}`;return O(a,{width:55,title:c})}function xu(e){return e<=20?"easy":e<=40?"moderate":e<=60?"hard":"very hard"}function Qo(e=P()){return e?`You're logged in \u2014 run \`${f("keywords")}\` for full enrichment (no quota), or \`${f("keywords --discover")}\` / \`${f("keywords --competitors")}\` (paid).`:`Log in for the full top-25 enrichment, no quota: ${f("login")}`}function Rn(e){let t=e.filter(n=>n.opportunity!=="low_priority");if(t.length!==0){l.message("Top opportunities:");for(let n of t){let r=n.volume!=null?`vol ${n.volume}`:"vol n/a",o=n.difficulty!=null?`KD ${n.difficulty}`:"KD n/a",i=n.our_position!=null?`, you're #${n.our_position}`:", not ranking";l.message(` \u2022 [${Zo[n.opportunity]??n.opportunity}] ${n.keyword} \u2014 ${r}, ${o}${i}`)}}}function _u(e){if(e.length!==0){l.message("Top competitor gaps:");for(let t of e){let n=t.volume!=null?`vol ${t.volume}`:"vol n/a",r=t.difficulty!=null?`KD ${t.difficulty}`:"KD n/a",o=t.their_position!=null?`#${t.their_position}`:"top 10";l.message(` \u2022 ${t.keyword} \u2014 ${t.competitor_domain} ranks ${o}, ${n}, ${r}`)}}}async function ie(e={}){if(e.peek&&e.peek.trim().length>0){await Su({keyword:e.peek.trim(),apiBase:e.apiBase,json:e.json});return}let t=P();if(!t){l.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}let n=e.apiBase||t.api_base||C.BASE,r=`Bearer ${t.user_token}:${t.website_token}`,o=e.competitors?"competitors":e.discover?"discover":e.seed?"seed":"enrich",i=o==="competitors"?"/api/cli/keywords/competitors":o==="discover"?"/api/cli/keywords/discover":o==="seed"?"/api/cli/keywords/seed":"/api/cli/keywords/enrich",s=o==="competitors"?"Finding keywords your competitors rank for\u2026":o==="discover"?"Discovering new keywords to target\u2026":o==="seed"?"Seeding keywords from your Search Console data\u2026":"Enriching keywords with real volume + difficulty\u2026",c=!!process.stdout.isTTY?Xo():null;c?.start(s);let u=o==="competitors"||o==="discover"||o==="seed",d;try{d=await J(`${n}${i}`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:r},body:"{}"},u?{timeoutMs:6e4,attempts:1}:{})}catch(m){w(c,"error",`Network error: ${m.message}`,y.red("Network error.")),process.exitCode=1;return}let p=null;try{p=await d.json()}catch{p=null}if(d.status===402||p?.code==="upgrade_required"){w(c,"warn",o==="competitors"?"Competitor gap analysis is a paid feature.":"Keyword discovery is a paid feature.",y.yellow("Paid feature \u2014 upgrade to continue.")),l.message(o==="competitors"?`Upgrade to see which keywords competitors rank for that you don't: ${y.cyan(C.PRICING)}`:`Upgrade to find new keywords to target: ${y.cyan(C.PRICING)}`),process.exitCode=1;return}if(!d.ok||p?.status!=="ok"){w(c,"error",`Server rejected request (${d.status})${p?.error?`: ${p.error}`:""}`,y.red(`Server rejected request (${d.status}).`)),process.exitCode=1;return}if(p.skipped==="no-gsc-data"){w(c,"warn","No Search Console data to seed from yet. Connect Google Search Console (run `seoagent login` and link GSC) \u2014 or wait for impressions to accrue on a new site.",y.yellow("No Search Console data yet."));return}if(p.skipped==="no-keywords"||p.skipped==="no-seeds"){w(c,"warn","No keywords yet. Seed from Search Console with `seoagent keywords --seed`, or run the keyword strategy (Phase 2) first, then try again.",y.yellow("No keywords yet."));return}if(p.skipped==="no-competitors"){w(c,"warn","No competitors found yet. Add competitors or run strategy discovery first, then try again.",y.yellow("No competitors yet."));return}if(p.skipped==="no-creds"||p.skipped==="no-columns"||p.skipped==="no-table"){w(c,"warn","Real keyword data isn\u2019t enabled on the server yet \u2014 try again later.",y.yellow("Real keyword data is not enabled on the server yet."));return}if(p.skipped){w(c,"warn",`Skipped: ${p.skipped}`,y.yellow(`Skipped: ${p.skipped}`));return}if(o==="competitors"){let m=p.gaps??0;w(c,"success",`Found ${m} competitor gap${m===1?"":"s"} across ${p.competitors?.length??0} competitor${p.competitors?.length===1?"":"s"} (added as "suggested").`,y.green(`${m} competitor gap${m===1?"":"s"} found.`)),_u(p.topGaps??[]),l.message(`Review them in ${y.cyan(".seoagent/keywords.md")} and promote the ones you want into a cluster.`);return}if(o==="discover"){let m=p.discovered??0;w(c,"success",`Discovered ${m} new keyword${m===1?"":"s"} to target (added as "suggested").`,y.green(`${m} new keyword${m===1?"":"s"} discovered.`)),Rn(p.opportunities??[]),l.message(`Review them in ${y.cyan(".seoagent/keywords.md")} and promote the ones you want into a cluster.`);return}if(o==="seed"){let m=p.seeded??0;w(c,"success",`Seeded ${m} keyword${m===1?"":"s"} from Search Console (real impressed queries, added as "suggested").`,y.green(`${m} keyword${m===1?"":"s"} seeded from Search Console.`)),Rn(p.opportunities??[]),l.message(`These are queries your site already gets impressions for \u2014 striking-distance wins first. Review in ${y.cyan(".seoagent/keywords.md")} and build clusters from them.`);return}let h=p.enriched??0;w(c,"success",`Enriched ${h} keyword${h===1?"":"s"}.`,y.green(`Enriched ${h} keyword${h===1?"":"s"}.`)),Rn(p.opportunities??[]),p.paid||l.message(`${y.dim("Free plan:")} enriched up to ${y.bold(String(p.cap??25))} keywords. ${y.dim("Upgrade for full enrichment + discovery + competitor gap:")} ${y.cyan(C.PRICING)}`)}import A from"picocolors";import{existsSync as Cu,readFileSync as Eu}from"fs";import{join as Au}from"path";var ei=["openai","fal","replicate"],Oe={openai:["OPENAI_API_KEY"],fal:["FAL_KEY","FAL_API_KEY"],replicate:["REPLICATE_API_TOKEN","REPLICATE_API_KEY"]};function Iu(e){let t={};if(!Cu(e))return t;let n=Eu(e,"utf-8");for(let r of n.split(/\r?\n/)){let o=r.trim();if(!o||o.startsWith("#"))continue;let i=o.indexOf("=");if(i===-1)continue;let s=o.slice(0,i).trim(),a=o.slice(i+1).trim();(a.startsWith('"')&&a.endsWith('"')||a.startsWith("'")&&a.endsWith("'"))&&(a=a.slice(1,-1)),t[s]=a}return t}function ti(e,t){let n={};for(let r of t){let o=process.env[r];o&&o.trim().length>0&&(n[r]={value:o,source:"process"})}for(let r of ge){let o=Au(e,r),i=Iu(o);for(let s of t){if(n[s])continue;let a=i[s];a&&a.length>0&&(n[s]={value:a,source:r})}}return{found:n}}function Nt(e){let t=[].concat(...ei.map(a=>Oe[a])),n=ti(e,t),r=[];for(let a of ei)Oe[a].some(c=>n.found[c])&&r.push(a);if(r.length===0)return{provider:"none",matched_key:null,source:null,available_providers:[]};let o=r[0],i=Oe[o].find(a=>n.found[a])??null,s=i?n.found[i].source:null;return{provider:o,matched_key:i,source:s,available_providers:r}}function ni(e,t){let n=ti(e,Oe[t]);for(let r of Oe[t])if(n.found[r])return{key:n.found[r].value,envName:r};return null}function ri(){return Oe}function nt(e={}){let t=process.cwd(),n=S(t),r=Nt(t);if(e.json){process.stdout.write(JSON.stringify(r,null,2)+`
530
+ `);return}if(l.message(Ru(r)),!n){l.warn(`No SEOAgent project here. Run \`${f("init")}\` first to persist the provider.`);return}W(t,{image_provider:r.provider}),l.info(`Saved to ${A.cyan(".seoagent/project.md")} ${A.dim(`(image_provider: ${r.provider})`)}`)}function Ru(e){let n=i=>A.dim(i.padEnd(12)),r=[];if(e.provider==="none"){r.push({content:`${A.dim("\u25CB")} ${A.bold(A.yellow("No image provider detected"))}`}),r.push({sep:!0}),r.push({content:A.dim("Set ONE of these to enable image generation:")});let i=ri();for(let s of Object.keys(i))r.push({content:`${n(s+":")}${A.cyan(i[s].join(" or "))}`});r.push({sep:!0}),r.push({content:A.dim("Add to your shell, .env.local, or .env, then re-run:")}),r.push({content:` ${A.cyan(f("env-check"))}`})}else{r.push({content:`${A.green("\u2713")} ${A.dim("Image provider:")} ${A.bold(A.green(e.provider))}`}),r.push({sep:!0}),e.matched_key&&r.push({content:`${n("Key:")}${A.bold(e.matched_key)}`}),e.source&&r.push({content:`${n("Source:")}${A.cyan(e.source)}`});let i=e.available_providers.filter(s=>s!==e.provider);i.length>0&&r.push({content:`${n("Available:")}${A.dim(i.join(", "))}`})}let o=`${A.bold(A.cyan("SEOAgent"))} ${A.dim("\xB7")} ${A.dim("env-check")}`;return O(r,{width:64,title:o})}import{existsSync as On,mkdirSync as si,writeFileSync as ai}from"fs";import{dirname as Dt,isAbsolute as Lu,join as Ft,resolve as Nu}from"path";import{tmpdir as Fu}from"os";import{spinner as Du}from"@clack/prompts";import T from"picocolors";import{Buffer as oi}from"buffer";async function Pn(e){let t=await fetch(e);if(!t.ok)throw new Error(`Image download failed: ${t.status} ${t.statusText}`);let n=await t.arrayBuffer();return oi.from(n)}async function Pu(e){let t=e.size??"1024x1024",n=await fetch("https://api.openai.com/v1/images/generations",{method:"POST",headers:{Authorization:`Bearer ${e.apiKey}`,"Content-Type":"application/json"},body:JSON.stringify({model:"gpt-image-1",prompt:e.prompt,size:t,n:1})});if(!n.ok){let i=await n.text().catch(()=>"");throw new Error(`OpenAI image API ${n.status}: ${i.slice(0,300)}`)}let o=(await n.json()).data?.[0];if(!o)throw new Error("OpenAI image API returned no data");if(o.b64_json)return{bytes:oi.from(o.b64_json,"base64"),contentType:"image/png"};if(o.url)return{bytes:await Pn(o.url),contentType:"image/png"};throw new Error("OpenAI image API returned neither b64_json nor url")}async function Ou(e){let t=process.env.FAL_MODEL||"fal-ai/flux/schnell",n=await fetch(`https://fal.run/${t}`,{method:"POST",headers:{Authorization:`Key ${e.apiKey}`,"Content-Type":"application/json"},body:JSON.stringify({prompt:e.prompt,image_size:"landscape_16_9",num_images:1})});if(!n.ok){let s=await n.text().catch(()=>"");throw new Error(`fal.ai API ${n.status}: ${s.slice(0,300)}`)}let o=(await n.json()).images?.[0];if(!o?.url)throw new Error("fal.ai API returned no image url");return{bytes:await Pn(o.url),contentType:o.content_type??"image/png"}}async function Tu(e,t,n=9e4){let r=Date.now(),o=1e3;for(;Date.now()-r<n;){let i=await fetch(`https://api.replicate.com/v1/predictions/${e}`,{headers:{Authorization:`Token ${t}`}});if(!i.ok)throw new Error(`Replicate poll failed: ${i.status}`);let s=await i.json();if(s.status==="succeeded"||s.status==="failed"||s.status==="canceled")return s;await new Promise(a=>setTimeout(a,o)),o=Math.min(o*1.5,5e3)}throw new Error("Replicate prediction timed out")}async function ju(e){let t=process.env.REPLICATE_MODEL||"black-forest-labs/flux-schnell",n=await fetch(`https://api.replicate.com/v1/models/${t}/predictions`,{method:"POST",headers:{Authorization:`Token ${e.apiKey}`,"Content-Type":"application/json",Prefer:"wait"},body:JSON.stringify({input:{prompt:e.prompt,aspect_ratio:"16:9"}})});if(!n.ok){let s=await n.text().catch(()=>"");throw new Error(`Replicate API ${n.status}: ${s.slice(0,300)}`)}let r=await n.json();if(r.status!=="succeeded"&&r.status!=="failed"&&(r=await Tu(r.id,e.apiKey)),r.status!=="succeeded")throw new Error(`Replicate prediction ${r.status}: ${r.error??""}`);let o=Array.isArray(r.output)?r.output[0]:r.output;if(!o)throw new Error("Replicate prediction returned no output");return{bytes:await Pn(o),contentType:"image/png",providerImageId:r.id}}async function ii(e,t){switch(e){case"openai":return Pu(t);case"fal":return Ou(t);case"replicate":return ju(t);default:throw new Error(`Unknown image provider: ${e}`)}}function Uu(e){return e==="openai"||e==="fal"||e==="replicate"}async function rt(e={}){let t=process.cwd();if(!e.prompt){l.warn(`Missing --prompt. Example: ${f('generate-image --prompt "..." --out content/images/hero.png')}`),process.exitCode=1;return}if(!e.out){l.warn("Missing --out. Example: --out .seoagent/content/images/hero.png"),process.exitCode=1;return}let n=S(t),r=null;if(e.provider){if(!Uu(e.provider)){l.warn(`Invalid --provider "${e.provider}". Use one of: openai, fal, replicate.`),process.exitCode=1;return}r=e.provider}else n?.image_provider&&n.image_provider!=="none"?r=n.image_provider:r=Nt(t).provider;if(!r||r==="none"){l.warn(`No image generation provider available. Set OPENAI_API_KEY, FAL_KEY, or REPLICATE_API_TOKEN, then run \`${f("env-check")}\`.`),process.exitCode=1;return}let o=ni(t,r);if(!o){l.warn(`Provider "${r}" selected but no API key found. Set the env var, then re-run.`),process.exitCode=1;return}let i=Lu(e.out)?e.out:Nu(t,e.out),a=!e.silent&&!!process.stdout.isTTY?Du():null;a?.start(`Generating image with ${T.bold(r)} ${T.dim(`(${o.envName})`)}\u2026`);try{let c=await ii(r,{prompt:e.prompt,apiKey:o.key,size:e.size});On(Dt(i))||si(Dt(i),{recursive:!0}),ai(i,c.bytes),e.silent||w(a,"success",`Wrote ${i} (${c.bytes.length} bytes, ${c.contentType}).`,T.green(`Wrote ${i} ${T.dim(`(${c.bytes.length} bytes, ${c.contentType})`)}`))}catch(c){a?.stop(T.red("Image generation failed."));let u=Bu(t,{provider:r,envName:o.envName,prompt:e.prompt,size:e.size,outPath:i,error:c});l.message(Mu({provider:r,envName:o.envName,prompt:e.prompt,size:e.size,message:c.message})),u&&l.message(`${T.dim("Full error log:")} ${T.cyan(u)}`),process.exitCode=1}}function Mu(e){let n=d=>T.dim(d.padEnd(10)),o=e.prompt.length>54?`${e.prompt.slice(0,53)}\u2026`:e.prompt,i=[{content:`${T.red("\u2717")} ${T.bold(T.red("Image generation failed"))}`},{sep:!0},{content:`${n("Provider:")}${T.bold(e.provider)}`},{content:`${n("Key:")}${e.envName}`},{content:`${n("Prompt:")}${T.dim(`"${o}"`)}`}];e.size&&i.push({content:`${n("Size:")}${e.size}`}),i.push({sep:!0});let s=e.message.replace(/\s+/g," ").trim(),a=64,c=s.length>a?`${s.slice(0,a-1)}\u2026`:s;i.push({content:T.red(c)});let u=`${T.bold(T.cyan("SEOAgent"))} ${T.dim("\xB7")} ${T.dim("generate-image")}`;return O(i,{width:70,title:u})}function Bu(e,t){let r=`seoagent-generate-image-${new Date().toISOString().replace(/[:.]/g,"-")}.log`,o=Ft(e,b),i=Ft(o,".errors"),s=On(o)?Ft(i,r):Ft(Fu(),r),a=["# SEOAgent generate-image error",`# ${new Date().toISOString()}`,"","## Request",`provider: ${t.provider}`,`env_var: ${t.envName}`,`prompt: ${JSON.stringify(t.prompt)}`,`size: ${t.size??"(default)"}`,`out_path: ${t.outPath}`,`cwd: ${e}`,"","## Error",`message: ${t.error.message}`,"","## Stack",t.error.stack??"(no stack)",""];t.error.cause&&a.push("## Cause",String(t.error.cause),"");try{return On(Dt(s))||si(Dt(s),{recursive:!0}),ai(s,a.join(`
531
+ `)),s}catch{return null}}import U from"picocolors";async function ot(e={}){let t=P();if(!t){e.json?process.stdout.write(`${JSON.stringify({logged_in:!1})}
532
+ `):l.error(`Not logged in. Run \`${f("login")}\` first.`),process.exitCode=1;return}let n=(e.apiBase||t.api_base||C.BASE).replace(/\/$/,""),r=`Bearer ${t.user_token}:${t.website_token}`,o;try{o=await fetch(`${n}/api/cli/whoami`,{method:"GET",headers:{Authorization:r,Accept:"application/json"}})}catch(s){l.error(`Network error: ${s.message}`),process.exitCode=1;return}if(o.status===404){if(e.json){process.stdout.write(`${JSON.stringify({logged_in:!0,server_supports_whoami:!1,api_base:n})}
533
+ `);return}l.warn(`Logged in, but the server at this API base does not support \`/api/cli/whoami\` yet. Update with \`${f("update-cli")}\` (or re-deploy your server).`),l.message(`API base: ${n}`);return}let i=null;try{i=await o.json()}catch{i=null}if(!o.ok||!i||i.status!=="ok"){e.json?process.stdout.write(`${JSON.stringify({logged_in:!0,error:i?.error??`HTTP ${o.status}`})}
534
+ `):l.error(`Could not fetch your account (HTTP ${o.status})${i?.error?`: ${i.error}`:""}`),process.exitCode=1;return}if(e.json){process.stdout.write(`${JSON.stringify({logged_in:!0,...i},null,2)}
535
+ `);return}l.message(Gu(i)),i.paid===!1&&l.message(`${U.dim("Upgrade for autopilot:")} ${U.cyan(C.PRICING)}`)}function Gu(e){let n=i=>U.dim(i.padEnd(10)),r=[];if(e.email&&(r.push({content:`${U.green("\u2713")} ${U.dim("Logged in as")} ${U.bold(e.email)}`}),r.push({sep:!0})),e.domain&&r.push({content:`${n("Website:")}${U.cyan(e.domain)}`}),e.plan){let i=e.paid?U.bold(U.green(e.plan)):U.bold(e.plan);r.push({content:`${n("Plan:")}${i}`})}e.api_base&&r.push({content:`${n("API:")}${U.dim(e.api_base)}`});let o=`${U.bold(U.cyan("SEOAgent"))} ${U.dim("\xB7")} ${U.dim("whoami")}`;return O(r,{width:55,title:o})}import{select as st,text as it,confirm as ui,isCancel as B,intro as Wu,outro as Ku}from"@clack/prompts";import Ut from"picocolors";function qu(){return[{command:"status",label:"Show project status",hint:"Audit, strategy, briefs, content, roadmap \u2014 everything at a glance.",run:async()=>Ke()},{command:"sync",label:"Sync with the cloud dashboard",hint:"Push local .seoagent/ changes + pull dashboard edits.",run:async()=>await Y()},{command:"init",label:"Initialize a SEOAgent project",hint:"Scaffold .seoagent/ + the skill file in this directory.",run:async()=>{await Be()}},{command:"login",label:"Connect this CLI to seoagent.com",hint:"Opens the browser to bind your account.",run:async()=>await ze()},{command:"whoami",label:"Show logged-in account",hint:"Email, bound website, plan, API base.",run:async()=>await ot()},{command:"keywords",label:"Keyword research",hint:"Peek (free, one keyword) \xB7 enrich \xB7 discover \xB7 competitor gaps.",run:async()=>{let e=await st({message:"Which mode?",options:[{value:"peek",label:"peek",hint:"Free, one keyword, no login required"},{value:"enrich",label:"enrich (default)",hint:"Enrich your full strategy (requires login)"},{value:"discover",label:"discover",hint:"Find new keywords to target (paid)"},{value:"competitors",label:"competitors",hint:"Find competitor keyword gaps (paid)"}]});if(!B(e))if(e==="peek"){let t=await it({message:"Keyword to peek:",placeholder:"saas seo",validate:n=>String(n??"").trim()?void 0:"A keyword is required."});if(B(t))return;await ie({peek:String(t)})}else e==="discover"?await ie({discover:!0}):e==="competitors"?await ie({competitors:!0}):await ie()}},{command:"internal-links",label:"Analyze internal links",hint:"Find orphan pages \u2192 .seoagent/internal-links.md",run:async()=>Xe({})},{command:"okf",label:"Open Knowledge Format bundle",hint:"Make your site AI-readable (AEO/GEO) \u2192 .seoagent/okf/",run:async()=>{let e=await st({message:"Which OKF action?",options:[{value:"status",label:"status",hint:"Is a bundle present?"},{value:"scaffold",label:"scaffold",hint:"Create the starter bundle"},{value:"validate",label:"validate",hint:"Check type fields, timestamps, links"}]});B(e)||Ze(e==="status"?void 0:String(e))}},{command:"citations",label:"Measure AI citations (AEO/GEO)",hint:"Are answer engines citing you? Web-grounded \u2192 .seoagent/citations/scorecard.md",run:async()=>await et()},{command:"generate-image",label:"Generate an image",hint:"Uses the detected (or explicit) provider.",run:async()=>{let e=await it({message:"Image prompt:",placeholder:"a minimalist cyan box logo",validate:n=>String(n??"").trim()?void 0:"A prompt is required."});if(B(e))return;let t=await it({message:"Output file path:",placeholder:".seoagent/content/images/hero.png",validate:n=>String(n??"").trim()?void 0:"An output path is required."});B(t)||await rt({prompt:String(e),out:String(t)})}},{command:"env-check",label:"Check image-generation provider",hint:"Detect openai / fal / replicate from your env.",run:async()=>nt({})},{command:"autopilot",label:"Toggle CLI autopilot",hint:"on / off / status \u2014 paid feature for queueing SEO fixes.",run:async()=>{let e=await st({message:"Autopilot action:",options:[{value:"status",label:"status",hint:"Show current state"},{value:"on",label:"on",hint:"Turn autopilot ON (paid)"},{value:"off",label:"off",hint:"Turn autopilot OFF"}]});B(e)||await Qe(String(e))}},{command:"pull",label:"Pull dashboard changes only",hint:"Cloud \u2192 local. Same as the second half of `sync`.",run:async()=>await me()},{command:"ack",label:"Close out a pending inbox action",hint:"Mark a .seoagent/inbox/ action completed or failed.",run:async()=>{let e=await it({message:"Action ID to close out:",placeholder:"action-abc123",validate:r=>String(r??"").trim()?void 0:"Action ID is required."});if(B(e))return;let t=await ui({message:"Mark as failed instead of completed?",initialValue:!1});if(B(t))return;let n;if(t===!0){let r=await it({message:"Reason for failure (optional):",placeholder:"couldn't apply because\u2026"});if(B(r))return;String(r).trim()&&(n=String(r))}await re(String(e),{failed:t===!0,reason:n})}},{command:"upgrade",label:"Upgrade your SEOAgent plan",hint:"Open the pricing page; contextual prompt if logged in.",run:async()=>await He()},{command:"update-cli",label:"Update the CLI to the latest version",hint:"npm install -g @seoagent-official/seoagent@latest + refresh your projects",run:async()=>await Ye({})},{command:"refresh",label:"Refresh the skill to your CLI version",hint:"This project \u2014 or every project on the machine via `refresh --all`.",run:async()=>{let e=await st({message:"Refresh which?",options:[{value:"this",label:"This project",hint:"Just the current directory"},{value:"all",label:"All projects",hint:"Every SEOAgent project on this machine"}]});B(e)||tt({all:e==="all"})}},{command:"logout",label:"Log out",hint:"Clear stored credentials for seoagent.com.",run:async()=>Ve()},{command:"uninstall",label:"Uninstall SEOAgent from this project",hint:"Remove .seoagent/, the skill bundle, and the sync hook.",run:async()=>await Ge({})}]}var li="__exit__";async function ci(e=qu()){let t=e.map(o=>({value:o.command,label:o.label,hint:o.hint}));t.push({value:li,label:"Exit",hint:"Close the menu"});let n=await st({message:"What would you like to do?",options:t});if(B(n)||n===li)return!0;let r=e.find(o=>o.command===n);if(!r)return l.warn(`Unknown menu pick "${String(n)}" \u2014 returning to menu.`),!1;try{await r.run()}catch(o){l.error(`\`${r.command}\` failed: ${o.message??String(o)}`)}return!1}async function Tn(){if(!process.stdin.isTTY){l.info("The menu needs an interactive terminal. Use the regular commands directly, e.g. `seoagent --help`.");return}Wu(`${Ut.bold(Ut.cyan("SEOAgent"))} ${Ut.dim("\xB7 menu")}`);let e=await ci();for(;!e;){let t=await ui({message:"Do another?",initialValue:!0});if(B(t)||t===!1){e=!0;break}e=await ci()}Ku(Ut.dim("See you next time."))}var x=new Hu;x.name("seoagent").description("AI SEO agent for Claude Code").version(v).showSuggestionAfterError(!0).showHelpAfterError(!0);x.command("init").description("Initialize SEOAgent project \u2014 creates .seoagent/ and installs the skill file").option("-y, --yes","Non-interactive: use inferred/env/flag values only (requires domain if not inferable)").option("--domain <domain>","Website domain (non-interactive or override)").option("--site-type <type>","Site type: saas, service, product, content, etc.").action(e=>{Be({yes:e.yes,domain:e.domain,siteType:e.siteType})});x.command("uninstall").description("Remove SEOAgent from this project \u2014 deletes .seoagent/, the skill bundle, and the sync hook").option("-y, --yes","Skip the confirmation prompt (also implied in a non-TTY shell)").option("--global","Also wipe ~/.config/seoagent (login + sync state, all projects)").action(e=>{Ge({yes:e.yes,global:e.global})});x.command("status").description("Show current SEO project state").action(Ke);x.command("login").description("Connect this CLI to your seoagent.com account (browser flow)").option("--api-base <url>","Override API base URL (for testing)").action(e=>{ze({apiBase:e.apiBase})});x.command("logout").description("Remove stored credentials for seoagent.com").action(Ve);x.command("sync").description("Sync .seoagent/ with your dashboard \u2014 push local changes then pull cloud changes (no-op when not logged in)").option("--silent","Suppress output (used by the Claude Code hook)").option("--force","Re-send every artifact on push; take cloud on every pull conflict").option("--path <relpath>","Push only files matching this path suffix").option("--push-only","Skip the cloud \u2192 local pull pass").option("--pull-only","Skip the local \u2192 cloud push pass (same as `seoagent pull`)").action(e=>{Y({silent:e.silent,force:e.force,path:e.path,pushOnly:e.pushOnly,pullOnly:e.pullOnly})});x.command("pull").description("Pull cloud changes into .seoagent/ (dashboard / autopilot / chat edits)").option("--silent","Suppress output").option("--force","Take the cloud version on every conflict (discards local edits)").option("--print <path>","Read-only: print the current cloud body of one artifact to stdout (writes nothing). For conflict diffs.").action(e=>{me({force:e.force,silent:e.silent,print:e.print})});x.command("ack [action_id]").description("Close out a pending action from .seoagent/inbox/ (omit id for an interactive picker)").option("--failed","Mark as failed instead of completed").option("--reason <text>","Reason for failure (used with --failed)").action((e,t)=>{re(e,{failed:t.failed,reason:t.reason})});x.command("inbox").description("List pending actions queued by autopilot in .seoagent/inbox/").option("--json","Output as JSON (handy for scripting / `jq`)").action(e=>{hn({json:e.json})});x.command("process").description("Sync the inbox, pick which actions to apply, and run them via the Claude Agent SDK (uses your `claude login` session or ANTHROPIC_API_KEY)").option("--yes, -y","Skip the sync + selection prompts; process every pending action (for CI)").option("--model <name>","Override the model the Agent SDK uses (e.g. claude-sonnet-4-5-20250929)").action(e=>{bn({yes:e.yes,model:e.model})});x.command("autopilot <action>").description("Turn CLI autopilot on|off or show status (paid; queues fixes for your agent)").option("--api-base <url>","Override API base URL (for testing)").action((e,t)=>{Qe(e,{apiBase:t.apiBase})});x.command("keywords").description("Enrich keywords with real volume + difficulty + opportunity labels (requires login)").option("--peek <keyword>","Free one-keyword DataForSEO lookup (no login required; daily quota)").option("--seed","Add the queries your site already ranks for (Google Search Console) to the inventory \u2014 additive, keeps existing keywords (requires login + GSC)").option("--discover","Find NEW keywords to target from your existing strategy (paid)").option("--competitors","Find keywords competitors rank for that you don\u2019t (paid)").option("--json","Output as JSON (handy for scripting / `jq` \u2014 currently --peek only)").option("--api-base <url>","Override API base URL (for testing)").action(e=>{ie({peek:e.peek,seed:e.seed,discover:e.discover,competitors:e.competitors,json:e.json,apiBase:e.apiBase})});x.command("internal-links").description("Analyze the repo for orphan pages (no inbound internal links) \u2192 .seoagent/internal-links.md").option("--json","Print the analysis as JSON instead of writing the report").action(e=>{Xe({json:e.json})});x.command("okf [action]").description("Manage the Open Knowledge Format bundle for AI agents \u2014 [validate|scaffold] \u2192 .seoagent/okf/").option("--json","Output result as JSON").action((e,t)=>{Ze(e,{json:t.json})});x.command("citations").description("Measure whether answer engines cite you (AEO/GEO) \u2014 web-grounded via the Claude Agent SDK \u2192 .seoagent/citations/scorecard.md").option("--queries <n>","How many answer-engine queries to test (1\u201312, default 6)",e=>parseInt(e,10)).option("--model <name>","Override the model the Agent SDK uses").option("--json","Also print the parsed report as JSON").action(e=>{et({queries:e.queries,model:e.model,json:e.json})});x.command("env-check").description("Detect which image generation provider is available (OPENAI / FAL / REPLICATE)").option("--json","Output detection result as JSON").action(e=>{nt({json:e.json})});x.command("generate-image").description("Generate an image via the detected (or explicit) provider").requiredOption("--prompt <text>","Image prompt").requiredOption("--out <path>","Output file path (relative to cwd or absolute)").option("--provider <name>","Force provider: openai | fal | replicate").option("--size <wxh>","Pixel size hint, e.g. 1024x1024").option("--silent","Suppress progress output").action(e=>{rt({prompt:e.prompt,out:e.out,provider:e.provider,size:e.size,silent:e.silent})});x.command("whoami").description("Show the logged-in account: email, bound website, plan, and API base").option("--json","Output as JSON (handy for scripting / `jq`)").option("--api-base <url>","Override API base URL (for testing)").action(e=>{ot({json:e.json,apiBase:e.apiBase})});x.command("upgrade").description("Open the SEOAgent Cloud pricing page in your browser (plan upgrade)").action(He);x.command("update-cli").description("Update the SEOAgent CLI to the latest npm version, then refresh every project on this machine").option("--dry-run","Show what would happen without running the install").option("--no-projects","Skip refreshing your other projects after the update").action(e=>{Ye({dryRun:e.dryRun,projects:e.projects})});x.command("refresh").description("Refresh the installed skill + re-scan the codebase for new pages. `--all` sweeps every project on this machine.").option("--all","Refresh every registered project, not just this one").action(e=>{tt({all:e.all})});x.command("menu").description("Interactive menu \u2014 pick a command from a list (no flags required)").action(()=>{Tn()});process.argv.length===2&&(x.outputHelp(),process.exit(0));x.parse();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seoagent-official/seoagent",
3
- "version": "1.56.0",
3
+ "version": "1.56.2",
4
4
  "description": "The persistent AI SEO agent for Claude Code. Audits, keyword strategy, briefs, articles, and the autopilot loop (cloud detects → CLI executes → ack closes) — other SEO tools write the prompt, SEOAgent runs it.",
5
5
  "type": "module",
6
6
  "bin": {