@seoagent-official/seoagent 1.48.0 → 1.49.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +92 -15
  2. package/index.js +61 -59
  3. package/package.json +24 -3
package/README.md CHANGED
@@ -146,29 +146,106 @@ SEOAgent runs as a CLI on top of the [Claude Agent SDK](https://github.com/anthr
146
146
  audit-checks.md # Full audit check list with severity tiers
147
147
  ```
148
148
 
149
- ## CLI Commands
149
+ ## The Autopilot Loop
150
150
 
151
- Run via `npx` (works after a local install or as a one-shot fetch):
151
+ `seoagent process` is the executive function over the rest of the CLI. It's how SEOAgent runs work end-to-end without you driving every step manually:
152
+
153
+ ```
154
+ ┌──────────────────────┐ ┌──────────────────────┐ ┌──────────────────────┐ ┌──────────────────────┐
155
+ │ Cloud autopilot │ │ CLI inbox │ │ Claude Agent SDK │ │ Cloud dashboard │
156
+ │ (seoagent.com) │ → │ .seoagent/inbox/ │ → │ seoagent process │ → │ Action closed │
157
+ │ detects + queues │ │ (sync pulls down) │ │ edits files, │ │ with applied OR │
158
+ │ technical fixes, │ │ Read with │ │ decides apply │ │ declined + reason │
159
+ │ content gaps, │ │ seoagent inbox │ │ vs decline, │ │ (seoagent ack │
160
+ │ off-strategy KWs… │ │ │ │ emits verdict │ │ fires automatically)│
161
+ └──────────────────────┘ └──────────────────────┘ └──────────────────────┘ └──────────────────────┘
162
+ ```
163
+
164
+ What that looks like in your terminal:
152
165
 
153
166
  ```bash
154
- npx @seoagent-official/seoagent init # Create .seoagent/ project + install skill
155
- npx @seoagent-official/seoagent keywords --peek "<kw>" # Free single-keyword DataForSEO peek (no login, daily quota)
156
- npx @seoagent-official/seoagent uninstall # Remove .seoagent/, the skill, and the sync hook (--global also wipes login)
157
- npx @seoagent-official/seoagent status # Show project state summary
158
- npx @seoagent-official/seoagent login # Connect this CLI to seoagent.com (browser flow)
159
- npx @seoagent-official/seoagent logout # Remove stored credentials
160
- npx @seoagent-official/seoagent sync # Push artifacts to dashboard (no-op when not logged in)
161
- npx @seoagent-official/seoagent env-check # Detect image generation provider (OPENAI/FAL/REPLICATE)
162
- npx @seoagent-official/seoagent generate-image # Generate an image via your provider
163
- npx @seoagent-official/seoagent upgrade # Open SEOAgent Cloud pricing page
167
+ $ seoagent sync # Pull pending actions from your dashboard
168
+ Pulled 3 pending actions .seoagent/inbox/
169
+
170
+ $ seoagent inbox # See what's queued
171
+ SEOAgent inbox · 3 pending actions
172
+ id 2017 · canonical · high · p:high · ⇧ +12% CTR · ⏱ 2 min — Auth pages in sitemap.xml
173
+ id 2018 · meta · medium · p:medium · +4 positions · ⏱ 5 min — Generic meta description on /pricing
174
+ id 2176 · new-landing-page · medium New page for keyword "3/0"
175
+
176
+ $ seoagent process # Pick what to run; agent does the rest
177
+ [1/2] · id 2017 · canonical · high
178
+ ⏺ Read(apps/web/src/app/sitemap.ts)
179
+ ⎿ Read 47 lines
180
+ ⏺ Edit(apps/web/src/app/sitemap.ts)
181
+ ⎿ Updated apps/web/src/app/sitemap.ts
182
+ ✓ id 2017 — applied in 47s
183
+ Removed 3 auth routes from sitemap.xml
184
+
185
+ [2/2] · id 2018 · meta · medium
186
+
187
+ ⊘ id 2176 — declined: keyword "3/0" is off-strategy for our domain
188
+
189
+ Done · ✓ 2/3 applied · 1 declined (elapsed: 2m 14s)
164
190
  ```
165
191
 
166
- > Prefer the shorter `seoagent <cmd>` form? Install globally once:
167
- > `npm install -g @seoagent-official/seoagent`. After that, bare `seoagent <cmd>` works in any directory.
192
+ Three things to notice:
193
+
194
+ 1. **No copy-paste step.** Other "agentic SEO" tools (Hado SEO's *SEO Trace*, etc.) emit paste-ready prompts you shuttle into Lovable/Cursor/Bolt yourself. `seoagent process` runs the action end-to-end via the [Claude Agent SDK](https://github.com/anthropics/claude-agent-sdk-typescript) — agent reads the action, edits the files, verifies, closes the action server-side. No copy-paste.
195
+ 2. **Priority badges** (`p:high · ⇧ +12% CTR · ⏱ 2 min`) tell you *which* actions to run first. The picker pre-selects high-priority entries by default — one Enter ships the highest-leverage work.
196
+ 3. **Declines self-ack.** When the agent decides an action is off-strategy, ambiguous, or a false positive, it emits `__DECLINED__: <reason>` and `seoagent ack --failed --reason "…"` fires automatically. You never type the reason by hand.
197
+
198
+ ## CLI Commands (all 18)
199
+
200
+ Grouped by what they're for. Run via `npx -y @seoagent-official/seoagent <cmd>` or, after `npm install -g @seoagent-official/seoagent`, just `seoagent <cmd>`.
201
+
202
+ **Setup + lifecycle**
203
+
204
+ | Command | What it does |
205
+ |---|---|
206
+ | `init` | Scaffold `.seoagent/` + install the SKILL bundle + write the sync hook. Run once per repo. Auto-detects domain + site type; supports `--yes --domain <d> --site-type <t>` for CI. |
207
+ | `login` | Connect this CLI to seoagent.com (browser OAuth flow). Free dashboard access; required for `sync` / `process` / `ack` / paid features. |
208
+ | `logout` | Clear stored credentials. |
209
+ | `uninstall` | Remove `.seoagent/`, the skill, and the sync hook. `--global` also wipes the login session and cache. |
210
+
211
+ **The autopilot loop**
212
+
213
+ | Command | What it does |
214
+ |---|---|
215
+ | `sync` | Two-way sync with the dashboard: pushes local `.seoagent/` artifacts up + pulls new pending actions down to `.seoagent/inbox/`. Push-only via `--push-only`. Pull-only via `seoagent pull`. Also flushes any offline-queued acks. |
216
+ | `pull` | Pull-only sync (no push). Useful when you want fresh inbox state without uploading edits. Also supports `--print <path>` to dump a single cloud artifact to stdout. |
217
+ | `inbox` | List pending actions with id, category, severity, and (when the server emits them) priority + impact + effort badges. `--json` for scripting. |
218
+ | `process` | The executive function: pick pending actions + run them end-to-end via the Claude Agent SDK. Streams Claude-Code-style narration (tool bullets, result previews, markdown). `--yes` for CI; `--model <name>` to override. |
219
+ | `ack [<id>]` | Mark an action settled server-side. With no id, opens an interactive picker. `--failed --reason "<text>"` to decline. Survives network blips via the offline ack queue. |
220
+ | `autopilot <on\|off\|status>` | Toggle the cloud-side autopilot mode (whether the dashboard actively queues actions). |
221
+
222
+ **Inspection + diagnostics**
223
+
224
+ | Command | What it does |
225
+ |---|---|
226
+ | `status` | Boxed summary of project state: account, audit, strategy, briefs, content, roadmap. Zero-network. |
227
+ | `whoami` | Show the currently logged-in account. |
228
+ | `env-check` | Detect image generation provider (`OPENAI_API_KEY` / `FAL_KEY` / `REPLICATE_API_TOKEN`). |
229
+ | `menu` | Interactive launcher — pick a command from a list when you don't remember the name. |
230
+
231
+ **Research + content**
232
+
233
+ | Command | What it does |
234
+ |---|---|
235
+ | `keywords --peek "<kw>"` | Free single-keyword DataForSEO peek (no login, daily quota per install). |
236
+ | `keywords` | Enrich your existing keyword inventory with real search volume + difficulty. `--discover` finds new targets; `--competitors` shows the gap (paid). |
237
+ | `internal-links` | Generate internal-linking recommendations from your existing pages + topic clusters. |
238
+ | `generate-image` | Generate hero / inline images via the detected provider (BYO API key). |
239
+
240
+ **Account**
241
+
242
+ | Command | What it does |
243
+ |---|---|
244
+ | `upgrade` | Open the seoagent.com pricing page. |
168
245
 
169
246
  ## Auto-Sync Hook
170
247
 
171
- `init` writes a `PostToolUse` hook to `.claude/settings.json` so every Write/Edit to `.seoagent/` triggers `npx @seoagent-official/seoagent sync` automatically. No-op when not logged in. Merges into existing settings without clobbering them.
248
+ `init` writes a `PostToolUse` hook to `.claude/settings.json` so every Write/Edit to `.seoagent/` triggers `npx @seoagent-official/seoagent sync --silent` automatically. No-op when not logged in. The hook is race-safe: a cooperative lock keeps a manual `seoagent sync` from clobbering an in-flight hook run (and vice versa).
172
249
 
173
250
  ## SEOAgent Cloud
174
251
 
package/index.js CHANGED
@@ -1,32 +1,34 @@
1
1
  #!/usr/bin/env node
2
- import{Command as fl}from"commander";import{dirname as Qo,relative as In}from"path";import{intro as Zo,outro as ei,text as An,select as St,spinner as ti,isCancel as ae,cancel as le,confirm as ni}from"@clack/prompts";function lt(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 p(e,t=lt()){return t?`seoagent ${e}`:`npx -y @seoagent-official/seoagent ${e}`}import{randomUUID as eo}from"crypto";import{existsSync as Xt,mkdirSync as Qt,readFileSync as to,writeFileSync as Zt}from"fs";import{join as pt}from"path";var ne=[".env.local",".env.production",".env"],zt=["NEXT_PUBLIC_SITE_URL","SITE_URL","NEXT_PUBLIC_URL","NEXTAUTH_URL","VITE_SITE_URL"];import{homedir as Wr}from"os";import{join as De}from"path";var S=".seoagent",Yt=["audit","strategy/clusters","briefs","content","content/images","performance"],V={AGENTS:".agents/skills/seoagent",CLAUDE:".claude/skills/seoagent"},Be=".claude/settings.json",qt=".pull-receipt.json",Vt=`# SEOAgent local files
2
+ import{Command as Vl}from"commander";import{dirname as yi,relative as Fn}from"path";import{intro as wi,outro as ki,text as Un,select as At,spinner as bi,isCancel as ue,cancel as de,confirm as $i}from"@clack/prompts";function ft(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 p(e,t=ft()){return t?`seoagent ${e}`:`npx -y @seoagent-official/seoagent ${e}`}import{randomUUID as bo}from"crypto";import{existsSync as an,mkdirSync as ln,readFileSync as $o,writeFileSync as cn}from"fs";import{join as wt}from"path";var ie=[".env.local",".env.production",".env"],Zt=["NEXT_PUBLIC_SITE_URL","SITE_URL","NEXT_PUBLIC_URL","NEXTAUTH_URL","VITE_SITE_URL"];import{homedir as ao}from"os";import{join as We}from"path";var $=".seoagent",en=["audit","strategy/clusters","briefs","content","content/images","performance"],Q={AGENTS:".agents/skills/seoagent",CLAUDE:".claude/skills/seoagent"},Ge=".claude/settings.json",tn=".pull-receipt.json",nn=".ack-queue.json",rn=".sync.lock",on=`# SEOAgent local files
3
3
  .legacy/
4
4
  content/images/*
5
5
  !content/images/.gitkeep
6
6
  .pull-receipt.json
7
- `,Gr=process.env.XDG_CONFIG_HOME&&process.env.XDG_CONFIG_HOME.trim().length>0?process.env.XDG_CONFIG_HOME:De(Wr(),".config"),U=De(Gr,"seoagent"),K=De(U,"auth.json"),ct=De(U,"state");var ge="https://seoagent.com",re=process.env.SEOAGENT_API_BASE&&process.env.SEOAGENT_API_BASE.trim().length>0?process.env.SEOAGENT_API_BASE.replace(/\/$/,""):ge,b={BASE:re,PRICING:`${re}/pricing`,LEAD_API:`${re}/api/cli/lead`,CLI_AUTH_PAGE:`${re}/cli/auth`,CLI_AUTH_POLL:`${re}/api/cli/auth/poll`,CLI_SYNC:`${re}/api/cli/sync`};import{readFileSync as Kr}from"fs";import{fileURLToPath as Hr}from"url";import{dirname as zr,join as Yr}from"path";var Jt="0.0.0";function qr(e){try{let t=JSON.parse(e);if(typeof t.version=="string"&&/^\d+\.\d+\.\d+/.test(t.version))return t.version}catch{}return Jt}function Vr(e=t=>Kr(t,"utf-8")){try{let t=zr(Hr(import.meta.url));return qr(e(Yr(t,"package.json")))}catch{return Jt}}var oe=Vr();import{existsSync as Jr,readFileSync as Xr}from"fs";var Me="---";function Qr(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 ut(e){let t=e.split(/\r?\n/);if(t[0]?.trim()!==Me)return{data:{},body:e};let n={},r=1;for(;r<t.length;r++){if(t[r].trim()===Me){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]=Qr(a))}return{data:n,body:t.slice(r).join(`
8
- `)}}function We(e){if(!Jr(e))return null;try{return ut(Xr(e,"utf-8"))}catch{return null}}function Zr(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 dt(e,t=""){let n=[Me];for(let[o,i]of Object.entries(e))i!==void 0&&n.push(`${o}: ${Zr(i)}`);n.push(Me);let r=t.length===0?"":t.startsWith(`
7
+ .ack-queue.json
8
+ .sync.lock
9
+ `,lo=process.env.XDG_CONFIG_HOME&&process.env.XDG_CONFIG_HOME.trim().length>0?process.env.XDG_CONFIG_HOME:We(ao(),".config"),D=We(lo,"seoagent"),q=We(D,"auth.json"),gt=We(D,"state");var ke="https://seoagent.com",se=process.env.SEOAGENT_API_BASE&&process.env.SEOAGENT_API_BASE.trim().length>0?process.env.SEOAGENT_API_BASE.replace(/\/$/,""):ke,S={BASE:se,PRICING:`${se}/pricing`,LEAD_API:`${se}/api/cli/lead`,CLI_AUTH_PAGE:`${se}/cli/auth`,CLI_AUTH_POLL:`${se}/api/cli/auth/poll`,CLI_SYNC:`${se}/api/cli/sync`};import{readFileSync as co}from"fs";import{fileURLToPath as uo}from"url";import{dirname as po,join as mo}from"path";var sn="0.0.0";function fo(e){try{let t=JSON.parse(e);if(typeof t.version=="string"&&/^\d+\.\d+\.\d+/.test(t.version))return t.version}catch{}return sn}function go(e=t=>co(t,"utf-8")){try{let t=po(uo(import.meta.url));return fo(e(mo(t,"package.json")))}catch{return sn}}var ae=go();import{existsSync as ho,readFileSync as yo}from"fs";var Ke="---";function wo(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 ht(e){let t=e.split(/\r?\n/);if(t[0]?.trim()!==Ke)return{data:{},body:e};let n={},r=1;for(;r<t.length;r++){if(t[r].trim()===Ke){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]=wo(a))}return{data:n,body:t.slice(r).join(`
10
+ `)}}function He(e){if(!ho(e))return null;try{return ht(yo(e,"utf-8"))}catch{return null}}function ko(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 yt(e,t=""){let n=[Ke];for(let[o,i]of Object.entries(e))i!==void 0&&n.push(`${o}: ${ko(i)}`);n.push(Ke);let r=t.length===0?"":t.startsWith(`
9
11
  `)?t:`
10
12
  ${t}`;return n.join(`
11
13
  `)+r+(r.endsWith(`
12
14
  `)?"":`
13
- `)}var no=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;function mt(){return eo()}var ro=new Set(["strapi","wordpress","sanity","contentful","ghost","webflow","shopify","payload","directus","mdx-local","none"]),oo="project.md";function he(e){return pt(e,S)}function Ge(e){return pt(he(e),oo)}function en(e){return Xt(Ge(e))}function C(e){let t=We(Ge(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&&ro.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:"",install_id:s&&no.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 tn(e){let t=C(e);if(!t)return null;if(t.install_id)return t.install_id;let n=mt();return ye(e,{install_id:n}),n}function io(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(`
14
- `)}function so(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.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 nn(e,t){let n=he(e);Qt(n,{recursive:!0});let r=dt(so(t),io(t));Zt(Ge(e),r,"utf-8")}function ye(e,t){let n=Ge(e);if(!Xt(n))return!1;let r=ut(to(n,"utf-8")),o={...r.data,...t};return Zt(n,dt(o,r.body),"utf-8"),!0}function rn(e){let t=he(e);for(let n of Yt)Qt(pt(t,n),{recursive:!0})}import{existsSync as Ke,lstatSync as ao,mkdirSync as we,readFileSync as on,readdirSync as lo,rmSync as co,statSync as uo,symlinkSync as po,writeFileSync as sn}from"fs";import{dirname as He,join as D,relative as an}from"path";import{fileURLToPath as mo}from"url";var fo=He(mo(import.meta.url));function ln(){return D(fo,"skills")}function go(){let e=D(ln(),"seoagent.md");if(Ke(e))return on(e,"utf-8");throw new Error(`Could not find skill file at: ${e}`)}function cn(e,t){let n=[];if(!Ke(e))return n;for(let r of lo(e,{withFileTypes:!0})){let o=D(e,r.name),i=D(t,r.name);r.isDirectory()?(we(i,{recursive:!0}),n.push(...cn(o,i))):r.isFile()&&(we(He(i),{recursive:!0}),sn(i,on(o)),n.push(i))}return n}function un(e,t){let n=Ke(D(e,".agents")),r=D(e,n?V.AGENTS:V.CLAUDE),o=D(r,"SKILL.md");we(r,{recursive:!0}),sn(o,t??go(),"utf-8");let i=D(ln(),"references"),s=D(r,"references"),a=[];try{Ke(i)&&uo(i).isDirectory()&&(we(s,{recursive:!0}),a=cn(i,s).map(u=>an(r,u)))}catch{}let l=n?ho(e,r):void 0;return{skillFile:o,referenceFiles:a,claudeSymlink:l}}function ho(e,t){let n=D(e,V.CLAUDE),r=null;try{r=ao(n)}catch{}if(r){if(!r.isSymbolicLink())return;try{co(n,{force:!0})}catch{return}}try{we(He(n),{recursive:!0});let o=an(He(n),t);return po(o,n,"dir"),n}catch{return}}import{existsSync as ze,mkdirSync as ft,readFileSync as yo,writeFileSync as ke}from"fs";import{dirname as dn,join as ie}from"path";var wo="npx -y @seoagent-official/seoagent sync --silent";function pn(e){let t=ie(e,S);ft(t,{recursive:!0});let n=ie(t,".gitignore");ke(n,Vt,"utf-8");let r=ie(t,"content","images",".gitkeep");return ft(dn(r),{recursive:!0}),ze(r)||ke(r,"","utf-8"),n}function gt(e){if(!ze(e))return{};try{let t=yo(e,"utf-8");return JSON.parse(t)}catch{return{}}}function ht(e){return e.command.includes("@seoagent-official/seoagent")&&e.command.includes("sync")}function mn(e){let t=ie(e,Be);ft(dn(t),{recursive:!0});let n=gt(t);n.hooks=n.hooks??{};let r=n.hooks.PostToolUse=n.hooks.PostToolUse??[],o=r.find(i=>(i.matcher??"").includes("Write"));return o||(o={matcher:"Write|Edit",hooks:[]},r.push(o)),o.hooks.some(ht)?(ke(t,JSON.stringify(n,null,2)+`
15
- `,"utf-8"),{file:t,added:!1}):(o.hooks.push({type:"command",command:wo}),ke(t,JSON.stringify(n,null,2)+`
16
- `,"utf-8"),{file:t,added:!0})}function fn(e){let t=ie(e,Be);if(!ze(t))return!1;let n=gt(t).hooks?.PostToolUse;return Array.isArray(n)?n.some(r=>r.hooks?.some(ht)):!1}function gn(e){let t=ie(e,Be);if(!ze(t))return{file:t,removed:!1};let n=gt(t),r=n.hooks?.PostToolUse;if(!Array.isArray(r))return{file:t,removed:!1};let o=!1;for(let i of r){let s=i.hooks.length;i.hooks=i.hooks.filter(a=>!ht(a)),i.hooks.length!==s&&(o=!0)}return o?(n.hooks.PostToolUse=r.filter(i=>i.hooks.length>0),n.hooks.PostToolUse.length===0&&delete n.hooks.PostToolUse,n.hooks&&Object.keys(n.hooks).length===0&&delete n.hooks,ke(t,JSON.stringify(n,null,2)+`
17
- `,"utf-8"),{file:t,removed:!0}):{file:t,removed:!1}}import{readFileSync as Ql,writeFileSync as ko,existsSync as Zl}from"fs";import{join as bo}from"path";function hn(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(`
18
- `)}var $o="context.md";function So(e,t){let n=bo(e,".seoagent",$o),r=hn(t);ko(n,r,"utf-8")}function yn(e,t){So(e,{business:{type:t||""},writingInstructions:[],referenceUrls:[],topicsToAvoid:[],contentTone:null,additionalNotes:null})}import{existsSync as be,readFileSync as wn,readdirSync as vo,statSync as kn}from"fs";import{join as J}from"path";var xo=[{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 _o(e){let t=J(e,"package.json");if(!be(t))return{deps:{},source:"package.json"};try{let n=JSON.parse(wn(t,"utf-8"));return{deps:{...n.dependencies,...n.devDependencies,...n.peerDependencies},source:"package.json"}}catch{return{deps:{},source:"package.json"}}}function Co(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 Eo(e){let t={};for(let n of ne){let r=J(e,n);if(be(r))try{let o=wn(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 Io(e,t){let n=J(e,t.replace(/\/$/,""));if(!be(n))return!1;if(t.endsWith("/"))try{return kn(n).isDirectory()}catch{return!1}return!0}function Ao(e){let t=["content","_posts","posts",J("src","content")];for(let n of t){let r=J(e,n);if(be(r))try{if(!kn(r).isDirectory())continue;let o=[r],i=0;for(;o.length>0&&i<50;){let s=o.pop();for(let a of vo(s,{withFileTypes:!0}))if(i++,!a.name.startsWith(".")){if(a.isDirectory()&&o.length<5){o.push(J(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 Po(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(be(J(e,n.marker)))return n.path;return null}function bn(e){let t=[],{deps:n}=_o(e),r=Eo(e),o="none";for(let s of xo){let a=[];for(let l of Object.keys(n))if(Co(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(Io(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=Ao(e);s&&(o="mdx-local",t.push(s))}let i=Po(e);return{cms:o,blog_path:i,evidence:t}}import{existsSync as X,readFileSync as yt}from"fs";import{join as Q}from"path";function $n(e){try{return new URL(e).hostname}catch{return e}}function Sn(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 Ro(e){for(let t of ne){let n=Q(e,t);if(!X(n))continue;let r=yt(n,"utf-8");for(let o of zt){let i=r.match(new RegExp(`^${o}=(.+)$`,"m"));if(i){let s=i[1].trim().replace(/^["']|["']$/g,""),a=$n(s);if(Sn(a))continue;return{value:a,source:`${t} (${o})`}}}}return null}function To(e){let t=Q(e,"package.json");if(!X(t))return null;try{let n=JSON.parse(yt(t,"utf-8"));if(!n.homepage)return null;let r=$n(n.homepage);return Sn(r)?null:{value:r,source:"package.json (homepage)"}}catch{return null}}function vn(e,t){let n=[];t?.("Checking for monorepo / workspace layout\u2026"),X(Q(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=Ro(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=To(e);a&&(r=a.value,n.push({field:"domain",detail:a.value,source:a.source}))}let i=Q(e,"package.json"),s=null;if(X(i))try{t?.("Reading dependencies to infer site type\u2026");let a=JSON.parse(yt(i,"utf-8")),l=Object.keys({...a.dependencies,...a.devDependencies}),u=(...d)=>d.some(m=>l.includes(m));if(u("@shopify/hydrogen","@shopify/polaris")||X(Q(e,"shopify.config.js"))||X(Q(e,"shopify.config.ts"))){s="product";let d=u("@shopify/hydrogen","@shopify/polaris")?"Shopify-related dependencies in package.json":X(Q(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"),m=u("next-auth","@auth/core","lucia","clerk","@clerk/nextjs","@clerk/clerk-react"),g=u("next");d&&(g||m)?(s="saas",n.push({field:"site_type",detail:"saas",source:g?"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 Oo,readFileSync as Lo,readdirSync as jo,statSync as No}from"fs";import{join as Z,sep as Fo}from"path";var xn=["tsx","jsx","js","mdx","md"],Uo=["astro","md","mdx"],Do=5e3;function Ye(e,t){let n=new Map,r=0,o=(i,s,a=!1)=>{let l=Bo(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:Vo(t,l),in_sitemap:a,source:s})};for(let i of["app",Z("src","app")]){let s=Z(e,i);if(wt(s))for(let a of kt(s)){let l=bt(s,a),u=l[l.length-1];Ho(u)&&(l.some(d=>d.startsWith("@"))||o(Mo(l.slice(0,-1)),"app router"))}}for(let i of["pages",Z("src","pages")]){let s=Z(e,i);if(wt(s))for(let a of kt(s)){let l=bt(s,a);if(l[0]==="api")continue;let u=l[l.length-1],d=$t(u),m=xn.includes(d),g=Uo.includes(d);if(!m&&!g)continue;let x=qe(u);zo(x)||o(Wo(l),g?"astro":"pages router")}}for(let i of[".","public"]){let s=Z(e,i);if(wt(s))for(let a of kt(s,i==="."?1:1/0)){let l=bt(s,a),u=l[l.length-1];$t(u)==="html"&&(l.some(d=>d==="node_modules"||d.startsWith("."))||o(Go(l),"static html"))}}for(let i of["public/sitemap.xml","sitemap.xml"]){let s=Z(e,...i.split("/"));if(Oo(s)){for(let a of Yo(s)){let l=Ko(a);l!==null&&o(l,"sitemap.xml",!0)}break}}return{pages:[...n.values()].sort((i,s)=>i.route.localeCompare(s.route)),dynamicCount:r}}function Bo(e){let t=e.trim();return t===""||t==="/"||(t.startsWith("/")||(t=`/${t}`),t=t.replace(/\/+$/,""),t==="")?"/":/\[.*\]/.test(t)?null:t}function Mo(e){return"/"+e.filter(n=>!(n.startsWith("(")&&n.endsWith(")"))).join("/")}function Wo(e){let t=[...e],n=qe(t[t.length-1]);return n==="index"?t.pop():t[t.length-1]=n,"/"+t.join("/")}function Go(e){let t=[...e],n=qe(t[t.length-1]);return n==="index"?t.pop():t[t.length-1]=n,"/"+t.join("/")}function Ko(e){try{return new URL(e).pathname||"/"}catch{return e.startsWith("/")?e:null}}function Ho(e){return qe(e)==="page"&&xn.includes($t(e))}function zo(e){return["_app","_document","_error","404","500","middleware"].includes(e)}function Yo(e){try{let t=Lo(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 qo=new Set(["node_modules",".git",".next","dist","build",".vercel","out"]);function wt(e){try{return No(e).isDirectory()}catch{return!1}}function*kt(e,t=1/0){let n=0;function*r(o,i){if(i>t)return;let s;try{s=jo(o,{withFileTypes:!0})}catch{return}for(let a of s){if(n>=Do)return;if(a.name.startsWith("."))continue;let l=Z(o,a.name);if(a.isDirectory()){if(qo.has(a.name))continue;yield*r(l,i+1)}else a.isFile()&&(n++,yield l)}}yield*r(e,1)}function bt(e,t){return t.slice(e.length).replace(/^[/\\]+/,"").split(Fo).filter(Boolean)}function $t(e){let t=e.lastIndexOf(".");return t===-1?"":e.slice(t+1).toLowerCase()}function qe(e){let t=e.lastIndexOf(".");return t===-1?e:e.slice(0,t)}function Vo(e,t){return e?`https://${e.replace(/^https?:\/\//,"").replace(/\/$/,"")}${t==="/"?"/":t}`:t}import{mkdirSync as Jo,writeFileSync as Xo}from"fs";import{join as _n}from"path";function En(e,t){if(t.length===0)return;let n=_n(e,S);Jo(n,{recursive:!0});let r=["---","generated: false",`discovered_at: ${new Date().toISOString()}`,`row_count: ${t.length}`,"---"].join(`
15
+ `)}var So=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;function kt(){return bo()}var vo=new Set(["strapi","wordpress","sanity","contentful","ghost","webflow","shopify","payload","directus","mdx-local","none"]),xo="project.md";function be(e){return wt(e,$)}function qe(e){return wt(be(e),xo)}function un(e){return an(qe(e))}function C(e){let t=He(qe(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&&vo.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:"",install_id:s&&So.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 dn(e){let t=C(e);if(!t)return null;if(t.install_id)return t.install_id;let n=kt();return $e(e,{install_id:n}),n}function _o(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 Eo(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.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 pn(e,t){let n=be(e);ln(n,{recursive:!0});let r=yt(Eo(t),_o(t));cn(qe(e),r,"utf-8")}function $e(e,t){let n=qe(e);if(!an(n))return!1;let r=ht($o(n,"utf-8")),o={...r.data,...t};return cn(n,yt(o,r.body),"utf-8"),!0}function mn(e){let t=be(e);for(let n of en)ln(wt(t,n),{recursive:!0})}import{existsSync as ze,lstatSync as Co,mkdirSync as Se,readFileSync as fn,readdirSync as Ao,rmSync as Io,statSync as Po,symlinkSync as Ro,writeFileSync as gn}from"fs";import{dirname as Ye,join as M,relative as hn}from"path";import{fileURLToPath as To}from"url";var Oo=Ye(To(import.meta.url));function yn(){return M(Oo,"skills")}function Lo(){let e=M(yn(),"seoagent.md");if(ze(e))return fn(e,"utf-8");throw new Error(`Could not find skill file at: ${e}`)}function wn(e,t){let n=[];if(!ze(e))return n;for(let r of Ao(e,{withFileTypes:!0})){let o=M(e,r.name),i=M(t,r.name);r.isDirectory()?(Se(i,{recursive:!0}),n.push(...wn(o,i))):r.isFile()&&(Se(Ye(i),{recursive:!0}),gn(i,fn(o)),n.push(i))}return n}function kn(e,t){let n=ze(M(e,".agents")),r=M(e,n?Q.AGENTS:Q.CLAUDE),o=M(r,"SKILL.md");Se(r,{recursive:!0}),gn(o,t??Lo(),"utf-8");let i=M(yn(),"references"),s=M(r,"references"),a=[];try{ze(i)&&Po(i).isDirectory()&&(Se(s,{recursive:!0}),a=wn(i,s).map(u=>hn(r,u)))}catch{}let l=n?jo(e,r):void 0;return{skillFile:o,referenceFiles:a,claudeSymlink:l}}function jo(e,t){let n=M(e,Q.CLAUDE),r=null;try{r=Co(n)}catch{}if(r){if(!r.isSymbolicLink())return;try{Io(n,{force:!0})}catch{return}}try{Se(Ye(n),{recursive:!0});let o=hn(Ye(n),t);return Ro(o,n,"dir"),n}catch{return}}import{existsSync as Je,mkdirSync as bt,readFileSync as No,writeFileSync as ve}from"fs";import{dirname as bn,join as le}from"path";var Fo="npx -y @seoagent-official/seoagent sync --silent";function $n(e){let t=le(e,$);bt(t,{recursive:!0});let n=le(t,".gitignore");ve(n,on,"utf-8");let r=le(t,"content","images",".gitkeep");return bt(bn(r),{recursive:!0}),Je(r)||ve(r,"","utf-8"),n}function $t(e){if(!Je(e))return{};try{let t=No(e,"utf-8");return JSON.parse(t)}catch{return{}}}function St(e){return e.command.includes("@seoagent-official/seoagent")&&e.command.includes("sync")}function Sn(e){let t=le(e,Ge);bt(bn(t),{recursive:!0});let n=$t(t);n.hooks=n.hooks??{};let r=n.hooks.PostToolUse=n.hooks.PostToolUse??[],o=r.find(i=>(i.matcher??"").includes("Write"));return o||(o={matcher:"Write|Edit",hooks:[]},r.push(o)),o.hooks.some(St)?(ve(t,JSON.stringify(n,null,2)+`
17
+ `,"utf-8"),{file:t,added:!1}):(o.hooks.push({type:"command",command:Fo}),ve(t,JSON.stringify(n,null,2)+`
18
+ `,"utf-8"),{file:t,added:!0})}function vn(e){let t=le(e,Ge);if(!Je(t))return!1;let n=$t(t).hooks?.PostToolUse;return Array.isArray(n)?n.some(r=>r.hooks?.some(St)):!1}function xn(e){let t=le(e,Ge);if(!Je(t))return{file:t,removed:!1};let n=$t(t),r=n.hooks?.PostToolUse;if(!Array.isArray(r))return{file:t,removed:!1};let o=!1;for(let i of r){let s=i.hooks.length;i.hooks=i.hooks.filter(a=>!St(a)),i.hooks.length!==s&&(o=!0)}return o?(n.hooks.PostToolUse=r.filter(i=>i.hooks.length>0),n.hooks.PostToolUse.length===0&&delete n.hooks.PostToolUse,n.hooks&&Object.keys(n.hooks).length===0&&delete n.hooks,ve(t,JSON.stringify(n,null,2)+`
19
+ `,"utf-8"),{file:t,removed:!0}):{file:t,removed:!1}}import{readFileSync as Lc,writeFileSync as Uo,existsSync as jc}from"fs";import{join as Do}from"path";function _n(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
+ `)}var Mo="context.md";function Bo(e,t){let n=Do(e,".seoagent",Mo),r=_n(t);Uo(n,r,"utf-8")}function En(e,t){Bo(e,{business:{type:t||""},writingInstructions:[],referenceUrls:[],topicsToAvoid:[],contentTone:null,additionalNotes:null})}import{existsSync as xe,readFileSync as Cn,readdirSync as Wo,statSync as An}from"fs";import{join as Z}from"path";var Go=[{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 Ko(e){let t=Z(e,"package.json");if(!xe(t))return{deps:{},source:"package.json"};try{let n=JSON.parse(Cn(t,"utf-8"));return{deps:{...n.dependencies,...n.devDependencies,...n.peerDependencies},source:"package.json"}}catch{return{deps:{},source:"package.json"}}}function Ho(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 qo(e){let t={};for(let n of ie){let r=Z(e,n);if(xe(r))try{let o=Cn(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 zo(e,t){let n=Z(e,t.replace(/\/$/,""));if(!xe(n))return!1;if(t.endsWith("/"))try{return An(n).isDirectory()}catch{return!1}return!0}function Yo(e){let t=["content","_posts","posts",Z("src","content")];for(let n of t){let r=Z(e,n);if(xe(r))try{if(!An(r).isDirectory())continue;let o=[r],i=0;for(;o.length>0&&i<50;){let s=o.pop();for(let a of Wo(s,{withFileTypes:!0}))if(i++,!a.name.startsWith(".")){if(a.isDirectory()&&o.length<5){o.push(Z(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 Jo(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(xe(Z(e,n.marker)))return n.path;return null}function In(e){let t=[],{deps:n}=Ko(e),r=qo(e),o="none";for(let s of Go){let a=[];for(let l of Object.keys(n))if(Ho(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(zo(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=Yo(e);s&&(o="mdx-local",t.push(s))}let i=Jo(e);return{cms:o,blog_path:i,evidence:t}}import{existsSync as ee,readFileSync as vt}from"fs";import{join as te}from"path";function Pn(e){try{return new URL(e).hostname}catch{return e}}function Rn(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 Vo(e){for(let t of ie){let n=te(e,t);if(!ee(n))continue;let r=vt(n,"utf-8");for(let o of Zt){let i=r.match(new RegExp(`^${o}=(.+)$`,"m"));if(i){let s=i[1].trim().replace(/^["']|["']$/g,""),a=Pn(s);if(Rn(a))continue;return{value:a,source:`${t} (${o})`}}}}return null}function Xo(e){let t=te(e,"package.json");if(!ee(t))return null;try{let n=JSON.parse(vt(t,"utf-8"));if(!n.homepage)return null;let r=Pn(n.homepage);return Rn(r)?null:{value:r,source:"package.json (homepage)"}}catch{return null}}function Tn(e,t){let n=[];t?.("Checking for monorepo / workspace layout\u2026"),ee(te(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=Vo(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=Xo(e);a&&(r=a.value,n.push({field:"domain",detail:a.value,source:a.source}))}let i=te(e,"package.json"),s=null;if(ee(i))try{t?.("Reading dependencies to infer site type\u2026");let a=JSON.parse(vt(i,"utf-8")),l=Object.keys({...a.dependencies,...a.devDependencies}),u=(...d)=>d.some(m=>l.includes(m));if(u("@shopify/hydrogen","@shopify/polaris")||ee(te(e,"shopify.config.js"))||ee(te(e,"shopify.config.ts"))){s="product";let d=u("@shopify/hydrogen","@shopify/polaris")?"Shopify-related dependencies in package.json":ee(te(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"),m=u("next-auth","@auth/core","lucia","clerk","@clerk/nextjs","@clerk/clerk-react"),g=u("next");d&&(g||m)?(s="saas",n.push({field:"site_type",detail:"saas",source:g?"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 Qo,readFileSync as Zo,readdirSync as ei,statSync as ti}from"fs";import{join as ne,sep as ni}from"path";var On=["tsx","jsx","js","mdx","md"],ri=["astro","md","mdx"],oi=5e3;function Ve(e,t){let n=new Map,r=0,o=(i,s,a=!1)=>{let l=ii(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:fi(t,l),in_sitemap:a,source:s})};for(let i of["app",ne("src","app")]){let s=ne(e,i);if(xt(s))for(let a of _t(s)){let l=Et(s,a),u=l[l.length-1];ui(u)&&(l.some(d=>d.startsWith("@"))||o(si(l.slice(0,-1)),"app router"))}}for(let i of["pages",ne("src","pages")]){let s=ne(e,i);if(xt(s))for(let a of _t(s)){let l=Et(s,a);if(l[0]==="api")continue;let u=l[l.length-1],d=Ct(u),m=On.includes(d),g=ri.includes(d);if(!m&&!g)continue;let y=Xe(u);di(y)||o(ai(l),g?"astro":"pages router")}}for(let i of[".","public"]){let s=ne(e,i);if(xt(s))for(let a of _t(s,i==="."?1:1/0)){let l=Et(s,a),u=l[l.length-1];Ct(u)==="html"&&(l.some(d=>d==="node_modules"||d.startsWith("."))||o(li(l),"static html"))}}for(let i of["public/sitemap.xml","sitemap.xml"]){let s=ne(e,...i.split("/"));if(Qo(s)){for(let a of pi(s)){let l=ci(a);l!==null&&o(l,"sitemap.xml",!0)}break}}return{pages:[...n.values()].sort((i,s)=>i.route.localeCompare(s.route)),dynamicCount:r}}function ii(e){let t=e.trim();return t===""||t==="/"||(t.startsWith("/")||(t=`/${t}`),t=t.replace(/\/+$/,""),t==="")?"/":/\[.*\]/.test(t)?null:t}function si(e){return"/"+e.filter(n=>!(n.startsWith("(")&&n.endsWith(")"))).join("/")}function ai(e){let t=[...e],n=Xe(t[t.length-1]);return n==="index"?t.pop():t[t.length-1]=n,"/"+t.join("/")}function li(e){let t=[...e],n=Xe(t[t.length-1]);return n==="index"?t.pop():t[t.length-1]=n,"/"+t.join("/")}function ci(e){try{return new URL(e).pathname||"/"}catch{return e.startsWith("/")?e:null}}function ui(e){return Xe(e)==="page"&&On.includes(Ct(e))}function di(e){return["_app","_document","_error","404","500","middleware"].includes(e)}function pi(e){try{let t=Zo(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 mi=new Set(["node_modules",".git",".next","dist","build",".vercel","out"]);function xt(e){try{return ti(e).isDirectory()}catch{return!1}}function*_t(e,t=1/0){let n=0;function*r(o,i){if(i>t)return;let s;try{s=ei(o,{withFileTypes:!0})}catch{return}for(let a of s){if(n>=oi)return;if(a.name.startsWith("."))continue;let l=ne(o,a.name);if(a.isDirectory()){if(mi.has(a.name))continue;yield*r(l,i+1)}else a.isFile()&&(n++,yield l)}}yield*r(e,1)}function Et(e,t){return t.slice(e.length).replace(/^[/\\]+/,"").split(ni).filter(Boolean)}function Ct(e){let t=e.lastIndexOf(".");return t===-1?"":e.slice(t+1).toLowerCase()}function Xe(e){let t=e.lastIndexOf(".");return t===-1?e:e.slice(0,t)}function fi(e,t){return e?`https://${e.replace(/^https?:\/\//,"").replace(/\/$/,"")}${t==="/"?"/":t}`:t}import{mkdirSync as gi,writeFileSync as hi}from"fs";import{join as Ln}from"path";function Nn(e,t){if(t.length===0)return;let n=Ln(e,$);gi(n,{recursive:!0});let r=["---","generated: false",`discovered_at: ${new Date().toISOString()}`,`row_count: ${t.length}`,"---"].join(`
19
21
  `),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(`
20
- `),i="| URL | In sitemap | In nav | Status | Rendered | Notes |",s="|---|---|---|---|---|---|",a=t.map(u=>`| ${Cn(u.url)} | ${u.in_sitemap?"yes":"no"} | \u2014 | \u2014 | \u2014 | ${Cn(u.source)} |`),l=[r,"",o,"",i,s,...a,""].join(`
21
- `);Xo(_n(n,"pages.md"),l,"utf-8")}function Cn(e){return e.replace(/\r?\n/g," ").replace(/\|/g,"/").trim()}import{log as se}from"@clack/prompts";var c={info:e=>se.info(e),warn:e=>se.warn(e),error:e=>se.error(e),success:e=>se.success(e),step:e=>se.step(e),message:e=>se.message(e)};function w(e,t,n,r=n){e?e.stop(r):c[t](n)}var Pn=[{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"}],Tn="unknown",ri=new Set(["saas","service","product","content","marketplace","tool","app","nonprofit","community","unknown"]);function oi(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 Ve(e){if(!e?.trim())return null;let t=e.trim().toLowerCase();return ri.has(t)?t:null}async function $e(e={}){let t=process.cwd();if(en(t)){c.warn("SEOAgent project already exists in this directory."),c.info(`Run \`${p("status")}\` to see your project state.`),c.info(`To start fresh, run \`${p("uninstall")}\` then init again.`);return}let n=!!e.yes||!process.stdin.isTTY;n||Zo("SEOAgent \u2014 AI SEO Agent");let r=vn(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 ${oi(a)}`)}},i=e.domain?.trim()||process.env.SEOAGENT_DOMAIN?.trim()||r.domain||null,s=Ve(e.siteType)||Ve(process.env.SEOAGENT_SITE_TYPE)||r.siteType||null;if(n){e.siteType?.trim()&&Ve(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()&&Ve(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=Tn),s||(s="unknown"),await Rn(t,i,s);return}if(o(),!i){let a=await An({message:"Website domain",placeholder:"example.com",validate:l=>l.trim()?void 0:"Domain is required"});ae(a)&&(le("Cancelled"),process.exit(0)),i=String(a)}if(!s){let a=await St({message:"What kind of site is this?",options:[...Pn]});ae(a)&&(le("Cancelled"),process.exit(0)),s=a}for(;;){let a=await ni({message:`Create .seoagent for ${i} (${s})?`});if(ae(a)&&(le("Cancelled"),process.exit(0)),a)break;let l=await St({message:"What should we change?",options:[{value:"domain",label:"Domain"},{value:"site_type",label:"Site type"},{value:"abort",label:"Cancel setup"}]});if((ae(l)||l==="abort")&&(le("Cancelled"),process.exit(0)),l==="domain"){let u=await An({message:"Website domain",placeholder:"example.com",validate:d=>d.trim()?void 0:"Domain is required"});ae(u)&&(le("Cancelled"),process.exit(0)),i=String(u)}else{let u=await St({message:"What kind of site is this?",options:[...Pn]});ae(u)&&(le("Cancelled"),process.exit(0)),s=u}}await Rn(t,i,s)}async function Rn(e,t,n){let r=ti();r.start("Setting up your SEO project");let o=bn(e),i={domain:t,site_type:n,language:"en",initialized_at:new Date().toISOString(),seoagent_version:oe,install_id:mt(),...o.cms!=="none"?{cms:o.cms}:{},...o.blog_path?{blog_path:o.blog_path}:{}};rn(e),nn(e,i),yn(e,n),pn(e);let s=un(e),a=In(e,s.skillFile),l=Qo(a),u=`${l}/references/audit-checks.md`,d=s.claudeSymlink?In(e,s.claudeSymlink):void 0;mn(e);let m=t!==Tn,g={pages:[],dynamicCount:0};try{g=Ye(e,m?t:null),En(e,g.pages)}catch{}if(r.stop(m?`Created .seoagent/ project for ${i.domain}`:"Created .seoagent/ project (site URL not detected yet \u2014 see step 2)"),o.cms!=="none"){let _=o.evidence.map(L=>`${L.detail} (${L.source})`).slice(0,2).join(", ");c.info(`CMS detected: ${o.cms} \u2014 ${_}`)}o.blog_path&&c.info(`Blog route: ${o.blog_path}`),g.pages.length>0&&c.info(`Found ${g.pages.length} page${g.pages.length===1?"":"s"} in your codebase \u2192 .seoagent/pages.md`+(g.dynamicCount>0?` (plus ${g.dynamicCount} dynamic route template${g.dynamicCount===1?"":"s"} \u2014 the audit will discover their instances)`:""));let x=m?i.domain:"your site",O=m?[" 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."];ei([m?`\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):","",...O,"",` 2. The headline next step: offer to run a Phase 1 SEO audit on ${x}`," (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:",` ${p("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:","",` ${p("login")}`,""].join(`
22
- `))}import{existsSync as jn}from"fs";import{intro as si,outro as ai,confirm as li,isCancel as ci,cancel as ui}from"@clack/prompts";import{existsSync as Je,rmSync as ii}from"fs";import{join as Xe}from"path";function On(e,t={}){let n=[],r=Xe(e,S);Je(r)&&n.push({label:".seoagent/ \u2014 project state + all generated work",path:r,kind:"dir"});let o=Xe(e,V.CLAUDE);Je(o)&&n.push({label:".claude/skills/seoagent/ \u2014 installed skill bundle",path:o,kind:"dir"});let i=Xe(e,V.AGENTS);return Je(i)&&n.push({label:".agents/skills/seoagent/ \u2014 installed skill bundle",path:i,kind:"dir"}),fn(e)&&n.push({label:".claude/settings.json \u2014 sync hook entry (other settings preserved)",path:Xe(e,".claude","settings.json"),kind:"hook"}),t.global&&Je(U)&&n.push({label:"~/.config/seoagent/ \u2014 login credentials + sync state (all projects)",path:U,kind:"global"}),n}function Ln(e,t){for(let n of t)n.kind==="hook"?gn(e):ii(n.path,{recursive:!0,force:!0})}async function Se(e={}){let t=process.cwd(),n=On(t,{global:e.global});if(n.length===0){c.info("No SEOAgent install found in this directory \u2014 nothing to remove."),!e.global&&jn(U)&&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(`
23
- `);if(!r){si("SEOAgent \u2014 uninstall"),c.message(`This will remove:
24
- ${o}`);let s=await li({message:"Remove these and start fresh?"});if(ci(s)||!s){ui("Cancelled \u2014 nothing was removed.");return}}Ln(t,n);let i=n.map(s=>` \u2713 ${s.label}`).join(`
22
+ `),i="| URL | In sitemap | In nav | Status | Rendered | Notes |",s="|---|---|---|---|---|---|",a=t.map(u=>`| ${jn(u.url)} | ${u.in_sitemap?"yes":"no"} | \u2014 | \u2014 | \u2014 | ${jn(u.source)} |`),l=[r,"",o,"",i,s,...a,""].join(`
23
+ `);hi(Ln(n,"pages.md"),l,"utf-8")}function jn(e){return e.replace(/\r?\n/g," ").replace(/\|/g,"/").trim()}import{log as ce}from"@clack/prompts";var c={info:e=>ce.info(e),warn:e=>ce.warn(e),error:e=>ce.error(e),success:e=>ce.success(e),step:e=>ce.step(e),message:e=>ce.message(e)};function k(e,t,n,r=n){e?e.stop(r):c[t](n)}var Dn=[{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"}],Bn="unknown",Si=new Set(["saas","service","product","content","marketplace","tool","app","nonprofit","community","unknown"]);function vi(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 Qe(e){if(!e?.trim())return null;let t=e.trim().toLowerCase();return Si.has(t)?t:null}async function _e(e={}){let t=process.cwd();if(un(t)){c.warn("SEOAgent project already exists in this directory."),c.info(`Run \`${p("status")}\` to see your project state.`),c.info(`To start fresh, run \`${p("uninstall")}\` then init again.`);return}let n=!!e.yes||!process.stdin.isTTY;n||wi("SEOAgent \u2014 AI SEO Agent");let r=Tn(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 ${vi(a)}`)}},i=e.domain?.trim()||process.env.SEOAGENT_DOMAIN?.trim()||r.domain||null,s=Qe(e.siteType)||Qe(process.env.SEOAGENT_SITE_TYPE)||r.siteType||null;if(n){e.siteType?.trim()&&Qe(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()&&Qe(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=Bn),s||(s="unknown"),await Mn(t,i,s);return}if(o(),!i){let a=await Un({message:"Website domain",placeholder:"example.com",validate:l=>l.trim()?void 0:"Domain is required"});ue(a)&&(de("Cancelled"),process.exit(0)),i=String(a)}if(!s){let a=await At({message:"What kind of site is this?",options:[...Dn]});ue(a)&&(de("Cancelled"),process.exit(0)),s=a}for(;;){let a=await $i({message:`Create .seoagent for ${i} (${s})?`});if(ue(a)&&(de("Cancelled"),process.exit(0)),a)break;let l=await At({message:"What should we change?",options:[{value:"domain",label:"Domain"},{value:"site_type",label:"Site type"},{value:"abort",label:"Cancel setup"}]});if((ue(l)||l==="abort")&&(de("Cancelled"),process.exit(0)),l==="domain"){let u=await Un({message:"Website domain",placeholder:"example.com",validate:d=>d.trim()?void 0:"Domain is required"});ue(u)&&(de("Cancelled"),process.exit(0)),i=String(u)}else{let u=await At({message:"What kind of site is this?",options:[...Dn]});ue(u)&&(de("Cancelled"),process.exit(0)),s=u}}await Mn(t,i,s)}async function Mn(e,t,n){let r=bi();r.start("Setting up your SEO project");let o=In(e),i={domain:t,site_type:n,language:"en",initialized_at:new Date().toISOString(),seoagent_version:ae,install_id:kt(),...o.cms!=="none"?{cms:o.cms}:{},...o.blog_path?{blog_path:o.blog_path}:{}};mn(e),pn(e,i),En(e,n),$n(e);let s=kn(e),a=Fn(e,s.skillFile),l=yi(a),u=`${l}/references/audit-checks.md`,d=s.claudeSymlink?Fn(e,s.claudeSymlink):void 0;Sn(e);let m=t!==Bn,g={pages:[],dynamicCount:0};try{g=Ve(e,m?t:null),Nn(e,g.pages)}catch{}if(r.stop(m?`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(F=>`${F.detail} (${F.source})`).slice(0,2).join(", ");c.info(`CMS detected: ${o.cms} \u2014 ${I}`)}o.blog_path&&c.info(`Blog route: ${o.blog_path}`),g.pages.length>0&&c.info(`Found ${g.pages.length} page${g.pages.length===1?"":"s"} in your codebase \u2192 .seoagent/pages.md`+(g.dynamicCount>0?` (plus ${g.dynamicCount} dynamic route template${g.dynamicCount===1?"":"s"} \u2014 the audit will discover their instances)`:""));let y=m?i.domain:"your site",R=m?[" 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."];ki([m?`\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):","",...R,"",` 2. The headline next step: offer to run a Phase 1 SEO audit on ${y}`," (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:",` ${p("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:","",` ${p("login")}`,""].join(`
24
+ `))}import{existsSync as Kn}from"fs";import{intro as _i,outro as Ei,confirm as Ci,isCancel as Ai,cancel as Ii}from"@clack/prompts";import{existsSync as Ze,rmSync as xi}from"fs";import{join as et}from"path";function Wn(e,t={}){let n=[],r=et(e,$);Ze(r)&&n.push({label:".seoagent/ \u2014 project state + all generated work",path:r,kind:"dir"});let o=et(e,Q.CLAUDE);Ze(o)&&n.push({label:".claude/skills/seoagent/ \u2014 installed skill bundle",path:o,kind:"dir"});let i=et(e,Q.AGENTS);return Ze(i)&&n.push({label:".agents/skills/seoagent/ \u2014 installed skill bundle",path:i,kind:"dir"}),vn(e)&&n.push({label:".claude/settings.json \u2014 sync hook entry (other settings preserved)",path:et(e,".claude","settings.json"),kind:"hook"}),t.global&&Ze(D)&&n.push({label:"~/.config/seoagent/ \u2014 login credentials + sync state (all projects)",path:D,kind:"global"}),n}function Gn(e,t){for(let n of t)n.kind==="hook"?xn(e):xi(n.path,{recursive:!0,force:!0})}async function Ee(e={}){let t=process.cwd(),n=Wn(t,{global:e.global});if(n.length===0){c.info("No SEOAgent install found in this directory \u2014 nothing to remove."),!e.global&&Kn(D)&&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(`
25
+ `);if(!r){_i("SEOAgent \u2014 uninstall"),c.message(`This will remove:
26
+ ${o}`);let s=await Ci({message:"Remove these and start fresh?"});if(Ai(s)||!s){Ii("Cancelled \u2014 nothing was removed.");return}}Gn(t,n);let i=n.map(s=>` \u2713 ${s.label}`).join(`
25
27
  `);r?c.success(`Removed:
26
- ${i}`):ai(`Removed:
27
- ${i}`),!e.global&&jn(U)&&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 \`${p("init")}\`.`)}import k from"picocolors";import{existsSync as Fn,mkdirSync as Nn,readFileSync as di,writeFileSync as pi,chmodSync as mi,unlinkSync as fi}from"fs";import{dirname as gi}from"path";function E(){if(!Fn(K))return null;try{let e=JSON.parse(di(K,"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||ge}}catch{return null}}function Un(e){Nn(U,{recursive:!0}),Nn(gi(K),{recursive:!0}),pi(K,JSON.stringify(e,null,2)+`
28
- `,"utf-8");try{mi(K,384)}catch{}}function Dn(){if(!Fn(K))return!1;try{return fi(K),!0}catch{return!1}}import{existsSync as ve,readdirSync as vt,statSync as hi,readFileSync as Bn}from"fs";import{join as ce}from"path";function yi(e){let t=(e.match(/^\s*-\s+\[\s\]/gm)??[]).length,n=(e.match(/^\s*-\s+\[x\]/gim)??[]).length;return{open:t,done:n}}function wi(e){let t=ce(e,"audit","latest.md");if(!ve(t))return null;let n=We(t);if(!n)return null;let r=Bn(t,"utf-8"),o=yi(r);return{exists:!0,date:typeof n.data.audited_at=="string"?n.data.audited_at:void 0,issueCount:o.open}}function ki(e){try{let n=Bn(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 bi(e){let t=ce(e,"strategy","clusters");if(!ve(t))return null;let n=vt(t).filter(o=>o.endsWith(".md"));if(n.length===0)return null;let r=0;for(let o of n)r+=ki(ce(t,o));return{exists:!0,clusterCount:n.length,articleCount:r}}function $i(e){let t=ce(e,"briefs");if(!ve(t))return null;let n=vt(t).filter(r=>r.endsWith(".md"));return n.length>0?{exists:!0,count:n.length}:null}function Si(e){let t=ce(e,"content");if(!ve(t))return null;let n=vt(t).filter(r=>r.endsWith(".md"));return n.length===0?null:{exists:!0,count:n.length}}function vi(e){let t=ce(e,"roadmap.md");return ve(t)?{exists:!0,updatedAt:hi(t).mtime.toISOString()}:null}function Mn(e){let t=C(e);if(!t)return null;let n=he(e);return{domain:t.domain,audit:wi(n),strategy:bi(n),briefs:$i(n),content:Si(n),roadmap:vi(n)}}import H from"picocolors";var xi=/\x1b\[[0-9;]*m/g;function Wn(e){return e.replace(xi,"").length}function R(e,t={}){let n=t.width??51,r=n-4,o="\u2500".repeat(n-2),i=_i(n,t.title),s=H.dim(`\u251C${o}\u2524`),a=H.dim(`\u2514${o}\u2518`),l=[i];for(let u of e){if("sep"in u){l.push(s);continue}l.push(Ci(u.content,r))}return l.push(a),l.join(`
29
- `)}function _i(e,t){if(!t)return H.dim(`\u250C${"\u2500".repeat(e-2)}\u2510`);let n=Wn(t),r=e-5-n;return r<1?H.dim(`\u250C${"\u2500".repeat(e-2)}\u2510`):`${H.dim("\u250C\u2500 ")}${t}${H.dim(` ${"\u2500".repeat(r)}\u2510`)}`}function Ci(e,t){let n=Wn(e),r;return n<=t?r=e+" ".repeat(t-n):r=e,`${H.dim("\u2502")} ${r} ${H.dim("\u2502")}`}function xt(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 xe(){let e=Mn(process.cwd());if(!e){c.warn("No SEOAgent project found in this directory."),c.info(`Run \`${p("init")}\` to get started.`);return}c.message(Ei(e))}function Ei(e){if(!e)return"";let t=11,n=s=>k.dim(s.padEnd(t)),r=[];E()?(r.push({content:`${k.green("\u2713")} ${k.dim("Logged in")}`}),r.push({content:k.dim(` Run \`${p("whoami")}\` for email / plan.`)})):(r.push({content:`${k.dim("\u25CB Not logged in")}`}),r.push({content:k.dim(` Run \`${p("login")}\` to connect.`)})),r.push({sep:!0}),r.push({content:e.audit?.exists?`${n("Audit:")}${k.green(`last run ${xt(e.audit.date??"")}`)} ${k.dim(`(${e.audit.issueCount??0} issues)`)}`:`${n("Audit:")}${k.dim("not yet run")}`}),r.push({content:e.strategy?.exists?`${n("Strategy:")}${k.bold(k.cyan(String(e.strategy.clusterCount??0)))} ${k.dim("clusters")} \xB7 ${k.bold(k.cyan(String(e.strategy.articleCount??0)))} ${k.dim("ideas")}`:`${n("Strategy:")}${k.dim("not yet created")}`}),r.push({content:e.briefs?.exists?`${n("Briefs:")}${k.bold(k.cyan(String(e.briefs.count??0)))} ${k.dim("ready")}`:`${n("Briefs:")}${k.dim("none created")}`}),r.push({content:e.content?.exists?`${n("Content:")}${k.green("\u2713")} ${k.bold(k.cyan(String(e.content.count??0)))} ${k.dim("articles written")}`:`${n("Content:")}${k.dim("no articles yet")}`}),r.push({content:e.roadmap?.exists?`${n("Roadmap:")}${k.green("updated")} ${k.dim(xt(e.roadmap.updatedAt??""))}`:`${n("Roadmap:")}${k.dim("not yet created")}`});let i=`${k.bold(k.cyan("SEOAgent"))} ${k.dim("\xB7")} ${k.bold(e.domain)}`;return R(r,{width:78,title:i})}import{exec as Ii,spawn as Ai}from"child_process";import{confirm as Pi,isCancel as Ri}from"@clack/prompts";import P from"picocolors";var Ti="https://registry.npmjs.org/@seoagent-official/seoagent/latest",_e="@seoagent-official/seoagent",Ce=["free","starter","pro","scale","enterprise"],Qe={free:"Free",starter:"Starter",pro:"Pro",scale:"Scale",enterprise:"Enterprise"};function Oi(e){let t=e.trim().toLowerCase().split(/\s+/)[0];return Ce.includes(t)?t:null}function Li(e){let t=Ce.indexOf(e);return t===-1||t===Ce.length-1?null:Ce[t+1]}async function ji(e,t=fetch){if(!e)return null;try{let n=(e.api_base||b.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 Ni(e){let t=[],r=s=>P.dim(s.padEnd(10)),o=!1;e.email&&(t.push({content:`${r("Email:")}${P.bold(e.email)}`}),o=!0),e.domain&&(t.push({content:`${r("Website:")}${P.cyan(e.domain)}`}),o=!0),o&&t.push({sep:!0});for(let s of Ce){let a=Qe[s];s===e.current?t.push({content:`${P.bold(P.green("\u25CF"))} ${P.bold(P.green(a.padEnd(11)))} ${P.dim("\u2190 you are here")}`}):s===e.next?t.push({content:`${P.yellow("\u25C6")} ${P.bold(P.yellow(a.padEnd(11)))} ${P.yellow("next tier")}`}):t.push({content:P.dim(` ${a}`)})}let i=`${P.bold(P.cyan("SEOAgent Cloud"))} ${P.dim("\xB7")} ${P.dim("your plan")}`;return R(t,{width:55,title:i})}async function Ee(){let e=E(),t=!!process.stdin.isTTY;if(e&&t){let n=await ji(e);if(n){let r=Oi(n.plan),o=r?Li(r):null;if(r&&c.message(Ni({email:n.email,domain:n.domain,current:r,next:o})),r&&!o){c.success(`You're on ${Qe[r]} (highest tier).`);return}if(r&&o){let i=await Pi({message:`Upgrade from ${Qe[r]} to ${Qe[o]}?`});if(Ri(i)||!i){c.info("No changes.");return}}}}Fi()}function Fi(){let e=Ui();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}"`;Ii(t,n=>{n&&c.warn("Could not open browser. Visit the URL above to upgrade.")})}function Ui(){let e=process.cwd(),t=C(e),n=t?.domain&&t.domain!=="unknown"?t.domain:"";return`${b.PRICING}?ref=cli${n?`&domain=${encodeURIComponent(n)}`:""}`}async function Ie(e={}){let t=oe,n=await Bi();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 ${_e}@latest`);return}if(Di(t,n)>=0){c.success(`You're on the latest CLI (${t}).`);return}if(!lt()){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 ${_e}@latest`);return}if(e.dryRun){c.info(`(dry-run) would run: npm install -g ${_e}@latest`);return}c.info(`Updating CLI: ${t} \u2192 ${n}\u2026`),await Mi()?c.success(`Updated to ${n}.`):c.error(`Update failed. Try manually: npm install -g ${_e}@latest (you may need sudo on Linux/macOS).`)}function Di(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}async function Bi(e=fetch){try{let t=await e(Ti,{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 Mi(){return new Promise(e=>{let t=Ai("npm",["install","-g",`${_e}@latest`],{stdio:"inherit"});t.on("error",()=>e(!1)),t.on("exit",n=>e(n===0))})}import{exec as Wi}from"child_process";import{randomBytes as Gi}from"crypto";import{isCancel as Ki,spinner as Hi,text as zi}from"@clack/prompts";import z from"picocolors";function Gn(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 Yi=1500,qi=300*1e3;function Vi(e){let t=process.platform==="darwin"?`open "${e}"`:process.platform==="win32"?`start "" "${e}"`:`xdg-open "${e}"`;Wi(t,()=>{})}function Ji(){return Gi(16).toString("hex")}function Xi(e,t,n){let r=new URLSearchParams({session:t});return n&&n!=="unknown"&&r.set("domain",n),`${e}/cli/auth?${r.toString()}`}function Kn(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 Qi(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 Gn(r.status,o)}catch(n){return{status:"error",terminal:!1,message:n.message||"network error"}}}function Zi(e){return new Promise(t=>setTimeout(t,e))}async function Ae(e={}){let t=process.cwd(),n=C(t),r=(e.apiBase||b.BASE||ge).replace(/\/$/,"");if(E()){c.info(`Already logged in. To switch accounts, run \`${p("logout")}\` first.`);return}let o=n?.domain??null;if(o==="unknown"&&process.stdin.isTTY){let m=await zi({message:".seoagent/project.md has `domain: unknown`. What is your site's URL?",placeholder:"example.com",validate(x){if(!String(x??"").trim())return"A site URL is required.";if(!Kn(String(x)))return"Please enter a valid domain like `example.com`."}});if(Ki(m)){c.warn("Login cancelled.");return}let g=Kn(String(m));if(g){o=g;try{ye(t,{domain:g}),c.success(`Saved domain: ${g} \u2192 .seoagent/project.md`)}catch{}}}let i=Ji(),s=Xi(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}`),Vi(s),c.info('In your browser: sign in (if needed) and click "Connect this CLI" to finish.');let l=!!process.stdout.isTTY?Hi():null;l?.start(z.dim("Waiting for browser confirmation\u2026"));let u=Date.now()+qi,d=!0;for(;Date.now()<u;){d||await Zi(Yi),d=!1;let m=await Qi(r,i);if(m.status==="ready"){Un({user_token:m.user_token,website_token:m.website_token,api_base:r});let g=m.email&&m.domain?`Logged in as ${m.email} (${m.domain}). Future SEO work in this repo will sync to your dashboard.`:m.email?`Logged in as ${m.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.",x=m.email&&m.domain?`Logged in as ${z.bold(m.email)} (${z.cyan(m.domain)}).`:m.email?`Logged in as ${z.bold(m.email)}.`:"Logged in.";w(l,"success",g,z.green(x)),l&&c.info("Future SEO work in this repo will sync to your dashboard.");return}if(m.status==="expired"){w(l,"warn",`Session expired. Run \`${p("login")}\` again.`,z.red("Session expired.")),l&&c.warn(`Run \`${p("login")}\` again.`);return}if(m.status==="error"){if(m.terminal){w(l,"warn",`Login failed: ${m.message}. Run \`${p("login")}\` again.`,z.red(`Login failed: ${m.message}.`)),l&&c.warn(`Run \`${p("login")}\` again.`);return}continue}}w(l,"warn",`Login timed out. Run \`${p("login")}\` again to retry.`,z.yellow("Login timed out.")),l&&c.warn(`Run \`${p("login")}\` again to retry.`)}function Pe(){Dn()?c.success("Logged out."):c.info("You were not logged in.")}import{spinner as Gs}from"@clack/prompts";import Re from"picocolors";import{existsSync as Pt,mkdirSync as As,readFileSync as rr,readdirSync as Ps,statSync as Rs,writeFileSync as Ts}from"fs";import{join as Rt,relative as Os,sep as Ls}from"path";var es=new Set([502,503,504]);async function ue(e,t,n={}){let r=Math.max(1,n.attempts??3),o=Math.max(0,n.baseDelayMs??500),i=n.fetchImpl??fetch,s=n.sleep??ts,a=n.transientStatuses??es,l=null;for(let u=0;u<r;u++)try{let d=await i(e,t);if(a.has(d.status)&&u<r-1){await s(Hn(o,u));continue}return d}catch(d){if(l=d,u<r-1){await s(Hn(o,u));continue}}throw l instanceof Error?l:new Error(String(l))}function Hn(e,t){return e*Math.pow(3,t)}function ts(e){return new Promise(t=>setTimeout(t,e))}import{existsSync as Et,mkdirSync as ns,readdirSync as zn,readFileSync as rs,unlinkSync as os,writeFileSync as Ct}from"fs";import{join as de}from"path";import N from"picocolors";function G(e){return de(e,S,"inbox")}function Yn(e){return`${e.action_type}-${e.id}.md`}function is(e,t){let n=0;if(!Et(e))return 0;for(let r of zn(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{os(de(e,r)),n++}catch{}}return n}function ss(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`---
28
+ ${i}`):Ei(`Removed:
29
+ ${i}`),!e.global&&Kn(D)&&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 \`${p("init")}\`.`)}import b from"picocolors";import{existsSync as qn,mkdirSync as Hn,readFileSync as Pi,writeFileSync as Ri,chmodSync as Ti,unlinkSync as Oi}from"fs";import{dirname as Li}from"path";function A(){if(!qn(q))return null;try{let e=JSON.parse(Pi(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||ke}}catch{return null}}function zn(e){Hn(D,{recursive:!0}),Hn(Li(q),{recursive:!0}),Ri(q,JSON.stringify(e,null,2)+`
30
+ `,"utf-8");try{Ti(q,384)}catch{}}function Yn(){if(!qn(q))return!1;try{return Oi(q),!0}catch{return!1}}import{existsSync as Ce,readdirSync as It,statSync as ji,readFileSync as Jn}from"fs";import{join as pe}from"path";function Ni(e){let t=(e.match(/^\s*-\s+\[\s\]/gm)??[]).length,n=(e.match(/^\s*-\s+\[x\]/gim)??[]).length;return{open:t,done:n}}function Fi(e){let t=pe(e,"audit","latest.md");if(!Ce(t))return null;let n=He(t);if(!n)return null;let r=Jn(t,"utf-8"),o=Ni(r);return{exists:!0,date:typeof n.data.audited_at=="string"?n.data.audited_at:void 0,issueCount:o.open}}function Ui(e){try{let n=Jn(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 Di(e){let t=pe(e,"strategy","clusters");if(!Ce(t))return null;let n=It(t).filter(o=>o.endsWith(".md"));if(n.length===0)return null;let r=0;for(let o of n)r+=Ui(pe(t,o));return{exists:!0,clusterCount:n.length,articleCount:r}}function Mi(e){let t=pe(e,"briefs");if(!Ce(t))return null;let n=It(t).filter(r=>r.endsWith(".md"));return n.length>0?{exists:!0,count:n.length}:null}function Bi(e){let t=pe(e,"content");if(!Ce(t))return null;let n=It(t).filter(r=>r.endsWith(".md"));return n.length===0?null:{exists:!0,count:n.length}}function Wi(e){let t=pe(e,"roadmap.md");return Ce(t)?{exists:!0,updatedAt:ji(t).mtime.toISOString()}:null}function Vn(e){let t=C(e);if(!t)return null;let n=be(e);return{domain:t.domain,audit:Fi(n),strategy:Di(n),briefs:Mi(n),content:Bi(n),roadmap:Wi(n)}}import z from"picocolors";var Gi=/\x1b\[[0-9;]*m/g;function Xn(e){return e.replace(Gi,"").length}function L(e,t={}){let n=t.width??51,r=n-4,o="\u2500".repeat(n-2),i=Ki(n,t.title),s=z.dim(`\u251C${o}\u2524`),a=z.dim(`\u2514${o}\u2518`),l=[i];for(let u of e){if("sep"in u){l.push(s);continue}l.push(Hi(u.content,r))}return l.push(a),l.join(`
31
+ `)}function Ki(e,t){if(!t)return z.dim(`\u250C${"\u2500".repeat(e-2)}\u2510`);let n=Xn(t),r=e-5-n;return r<1?z.dim(`\u250C${"\u2500".repeat(e-2)}\u2510`):`${z.dim("\u250C\u2500 ")}${t}${z.dim(` ${"\u2500".repeat(r)}\u2510`)}`}function Hi(e,t){let n=Xn(e),r;return n<=t?r=e+" ".repeat(t-n):r=e,`${z.dim("\u2502")} ${r} ${z.dim("\u2502")}`}function Pt(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 Ae(){let e=Vn(process.cwd());if(!e){c.warn("No SEOAgent project found in this directory."),c.info(`Run \`${p("init")}\` to get started.`);return}c.message(qi(e))}function qi(e){if(!e)return"";let t=11,n=s=>b.dim(s.padEnd(t)),r=[];A()?(r.push({content:`${b.green("\u2713")} ${b.dim("Logged in")}`}),r.push({content:b.dim(` Run \`${p("whoami")}\` for email / plan.`)})):(r.push({content:`${b.dim("\u25CB Not logged in")}`}),r.push({content:b.dim(` Run \`${p("login")}\` to connect.`)})),r.push({sep:!0}),r.push({content:e.audit?.exists?`${n("Audit:")}${b.green(`last run ${Pt(e.audit.date??"")}`)} ${b.dim(`(${e.audit.issueCount??0} issues)`)}`:`${n("Audit:")}${b.dim("not yet run")}`}),r.push({content:e.strategy?.exists?`${n("Strategy:")}${b.bold(b.cyan(String(e.strategy.clusterCount??0)))} ${b.dim("clusters")} \xB7 ${b.bold(b.cyan(String(e.strategy.articleCount??0)))} ${b.dim("ideas")}`:`${n("Strategy:")}${b.dim("not yet created")}`}),r.push({content:e.briefs?.exists?`${n("Briefs:")}${b.bold(b.cyan(String(e.briefs.count??0)))} ${b.dim("ready")}`:`${n("Briefs:")}${b.dim("none created")}`}),r.push({content:e.content?.exists?`${n("Content:")}${b.green("\u2713")} ${b.bold(b.cyan(String(e.content.count??0)))} ${b.dim("articles written")}`:`${n("Content:")}${b.dim("no articles yet")}`}),r.push({content:e.roadmap?.exists?`${n("Roadmap:")}${b.green("updated")} ${b.dim(Pt(e.roadmap.updatedAt??""))}`:`${n("Roadmap:")}${b.dim("not yet created")}`});let i=`${b.bold(b.cyan("SEOAgent"))} ${b.dim("\xB7")} ${b.bold(e.domain)}`;return L(r,{width:78,title:i})}import{exec as zi,spawn as Yi}from"child_process";import{confirm as Ji,isCancel as Vi}from"@clack/prompts";import O from"picocolors";var Xi="https://registry.npmjs.org/@seoagent-official/seoagent/latest",Ie="@seoagent-official/seoagent",Pe=["free","starter","pro","scale","enterprise"],tt={free:"Free",starter:"Starter",pro:"Pro",scale:"Scale",enterprise:"Enterprise"};function Qi(e){let t=e.trim().toLowerCase().split(/\s+/)[0];return Pe.includes(t)?t:null}function Zi(e){let t=Pe.indexOf(e);return t===-1||t===Pe.length-1?null:Pe[t+1]}async function es(e,t=fetch){if(!e)return null;try{let n=(e.api_base||S.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 ts(e){let t=[],r=s=>O.dim(s.padEnd(10)),o=!1;e.email&&(t.push({content:`${r("Email:")}${O.bold(e.email)}`}),o=!0),e.domain&&(t.push({content:`${r("Website:")}${O.cyan(e.domain)}`}),o=!0),o&&t.push({sep:!0});for(let s of Pe){let a=tt[s];s===e.current?t.push({content:`${O.bold(O.green("\u25CF"))} ${O.bold(O.green(a.padEnd(11)))} ${O.dim("\u2190 you are here")}`}):s===e.next?t.push({content:`${O.yellow("\u25C6")} ${O.bold(O.yellow(a.padEnd(11)))} ${O.yellow("next tier")}`}):t.push({content:O.dim(` ${a}`)})}let i=`${O.bold(O.cyan("SEOAgent Cloud"))} ${O.dim("\xB7")} ${O.dim("your plan")}`;return L(t,{width:55,title:i})}async function Re(){let e=A(),t=!!process.stdin.isTTY;if(e&&t){let n=await es(e);if(n){let r=Qi(n.plan),o=r?Zi(r):null;if(r&&c.message(ts({email:n.email,domain:n.domain,current:r,next:o})),r&&!o){c.success(`You're on ${tt[r]} (highest tier).`);return}if(r&&o){let i=await Ji({message:`Upgrade from ${tt[r]} to ${tt[o]}?`});if(Vi(i)||!i){c.info("No changes.");return}}}}ns()}function ns(){let e=rs();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}"`;zi(t,n=>{n&&c.warn("Could not open browser. Visit the URL above to upgrade.")})}function rs(){let e=process.cwd(),t=C(e),n=t?.domain&&t.domain!=="unknown"?t.domain:"";return`${S.PRICING}?ref=cli${n?`&domain=${encodeURIComponent(n)}`:""}`}async function Te(e={}){let t=ae,n=await is();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 ${Ie}@latest`);return}if(os(t,n)>=0){c.success(`You're on the latest CLI (${t}).`);return}if(!ft()){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 ${Ie}@latest`);return}if(e.dryRun){c.info(`(dry-run) would run: npm install -g ${Ie}@latest`);return}c.info(`Updating CLI: ${t} \u2192 ${n}\u2026`),await ss()?c.success(`Updated to ${n}.`):c.error(`Update failed. Try manually: npm install -g ${Ie}@latest (you may need sudo on Linux/macOS).`)}function os(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}async function is(e=fetch){try{let t=await e(Xi,{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 ss(){return new Promise(e=>{let t=Yi("npm",["install","-g",`${Ie}@latest`],{stdio:"inherit"});t.on("error",()=>e(!1)),t.on("exit",n=>e(n===0))})}import{exec as as}from"child_process";import{randomBytes as ls}from"crypto";import{isCancel as cs,spinner as us,text as ds}from"@clack/prompts";import Y from"picocolors";function Qn(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 ps=1500,ms=300*1e3;function fs(e){let t=process.platform==="darwin"?`open "${e}"`:process.platform==="win32"?`start "" "${e}"`:`xdg-open "${e}"`;as(t,()=>{})}function gs(){return ls(16).toString("hex")}function hs(e,t,n){let r=new URLSearchParams({session:t});return n&&n!=="unknown"&&r.set("domain",n),`${e}/cli/auth?${r.toString()}`}function Zn(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 ys(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 Qn(r.status,o)}catch(n){return{status:"error",terminal:!1,message:n.message||"network error"}}}function ws(e){return new Promise(t=>setTimeout(t,e))}async function Oe(e={}){let t=process.cwd(),n=C(t),r=(e.apiBase||S.BASE||ke).replace(/\/$/,"");if(A()){c.info(`Already logged in. To switch accounts, run \`${p("logout")}\` first.`);return}let o=n?.domain??null;if(o==="unknown"&&process.stdin.isTTY){let m=await ds({message:".seoagent/project.md has `domain: unknown`. What is your site's URL?",placeholder:"example.com",validate(y){if(!String(y??"").trim())return"A site URL is required.";if(!Zn(String(y)))return"Please enter a valid domain like `example.com`."}});if(cs(m)){c.warn("Login cancelled.");return}let g=Zn(String(m));if(g){o=g;try{$e(t,{domain:g}),c.success(`Saved domain: ${g} \u2192 .seoagent/project.md`)}catch{}}}let i=gs(),s=hs(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}`),fs(s),c.info('In your browser: sign in (if needed) and click "Connect this CLI" to finish.');let l=!!process.stdout.isTTY?us():null;l?.start(Y.dim("Waiting for browser confirmation\u2026"));let u=Date.now()+ms,d=!0;for(;Date.now()<u;){d||await ws(ps),d=!1;let m=await ys(r,i);if(m.status==="ready"){zn({user_token:m.user_token,website_token:m.website_token,api_base:r});let g=m.email&&m.domain?`Logged in as ${m.email} (${m.domain}). Future SEO work in this repo will sync to your dashboard.`:m.email?`Logged in as ${m.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.",y=m.email&&m.domain?`Logged in as ${Y.bold(m.email)} (${Y.cyan(m.domain)}).`:m.email?`Logged in as ${Y.bold(m.email)}.`:"Logged in.";k(l,"success",g,Y.green(y)),l&&c.info("Future SEO work in this repo will sync to your dashboard.");return}if(m.status==="expired"){k(l,"warn",`Session expired. Run \`${p("login")}\` again.`,Y.red("Session expired.")),l&&c.warn(`Run \`${p("login")}\` again.`);return}if(m.status==="error"){if(m.terminal){k(l,"warn",`Login failed: ${m.message}. Run \`${p("login")}\` again.`,Y.red(`Login failed: ${m.message}.`)),l&&c.warn(`Run \`${p("login")}\` again.`);return}continue}}k(l,"warn",`Login timed out. Run \`${p("login")}\` again to retry.`,Y.yellow("Login timed out.")),l&&c.warn(`Run \`${p("login")}\` again to retry.`)}function Le(){Yn()?c.success("Logged out."):c.info("You were not logged in.")}import{spinner as _a}from"@clack/prompts";import he from"picocolors";import{existsSync as Ft,mkdirSync as la,readFileSync as vr,readdirSync as ca,statSync as ua,writeFileSync as da}from"fs";import{join as Ut,relative as pa,sep as ma}from"path";var ks=new Set([502,503,504]);async function K(e,t,n={}){let r=Math.max(1,n.attempts??3),o=Math.max(0,n.baseDelayMs??500),i=n.fetchImpl??fetch,s=n.sleep??bs,a=n.transientStatuses??ks,l=null;for(let u=0;u<r;u++)try{let d=await i(e,t);if(a.has(d.status)&&u<r-1){await s(er(o,u));continue}return d}catch(d){if(l=d,u<r-1){await s(er(o,u));continue}}throw l instanceof Error?l:new Error(String(l))}function er(e,t){return e*Math.pow(3,t)}function bs(e){return new Promise(t=>setTimeout(t,e))}import{existsSync as Tt,mkdirSync as $s,readdirSync as tr,readFileSync as Ss,unlinkSync as vs,writeFileSync as Rt}from"fs";import{join as fe}from"path";import E from"picocolors";function H(e){return fe(e,$,"inbox")}function nr(e){return`${e.action_type}-${e.id}.md`}function xs(e,t){let n=0;if(!Tt(e))return 0;for(let r of tr(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{vs(fe(e,r)),n++}catch{}}return n}function _s(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`---
30
32
  action_id: ${e.id}
31
33
  action_type: ${e.action_type}
32
34
  article_id: ${n}
@@ -69,8 +71,8 @@ positive, you disagree, etc.), close it out as failed with a reason:
69
71
  \`\`\`bash
70
72
  ${p(`ack ${e.id}`)} --failed --reason "kept; performs well off-search"
71
73
  \`\`\`
72
- `}function as(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(`
73
- `)}}function ls(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 cs(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`---
74
+ `}function Es(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(`
75
+ `)}}function Cs(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 As(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`---
74
76
  action_id: ${e.id}
75
77
  action_type: ${e.action_type}
76
78
  issue: ${r}
@@ -93,8 +95,8 @@ ${s??e.description??"Apply the appropriate fix for this issue."}
93
95
 
94
96
  ## How to apply
95
97
 
96
- 1. ${ls(r,o,n)}
97
- 2. ${as(r)}
98
+ 1. ${Cs(r,o,n)}
99
+ 2. ${Es(r)}
98
100
  3. Show the user the diff before committing (confirm once per session, then proceed).
99
101
 
100
102
  ## How to close this out
@@ -111,7 +113,7 @@ next \`seoagent sync\`. If you disagree or it's a false positive, decline it:
111
113
  \`\`\`bash
112
114
  ${p(`ack ${e.id}`)} --failed --reason "not applicable; ..."
113
115
  \`\`\`
114
- `}function us(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`---
116
+ `}function Is(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`---
115
117
  action_id: ${e.id}
116
118
  action_type: ${e.action_type}
117
119
  brief_slug: ${n??""}
@@ -160,7 +162,7 @@ If you decide not to write it (off-strategy, duplicate, etc.), decline it:
160
162
  \`\`\`bash
161
163
  ${p(`ack ${e.id}`)} --failed --reason "skipped; ..."
162
164
  \`\`\`
163
- `}function ds(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(`
165
+ `}function Ps(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(`
164
166
  `):"- (no metrics)";return`---
165
167
  action_id: ${e.id}
166
168
  action_type: ${e.action_type}
@@ -207,7 +209,7 @@ If you disagree (page is fine as-is, intentionally short, etc.), decline it:
207
209
  \`\`\`bash
208
210
  ${p(`ack ${e.id}`)} --failed --reason "kept as-is; ..."
209
211
  \`\`\`
210
- `}function ps(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?`\`\`\`
212
+ `}function Rs(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?`\`\`\`
211
213
  ${o.join(`
212
214
  `)}
213
215
  \`\`\`${i?`
@@ -253,7 +255,7 @@ SEOAgent re-submits the sitemap to GSC on its schedule. If a sitemap already exi
253
255
  \`\`\`bash
254
256
  ${p(`ack ${e.id}`)} --failed --reason "sitemap already served at /sitemap.xml"
255
257
  \`\`\`
256
- `}function ms(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`---
258
+ `}function Ts(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`---
257
259
  action_id: ${e.id}
258
260
  action_type: ${e.action_type}
259
261
  keyword: ${n??""}
@@ -311,10 +313,10 @@ decline it:
311
313
  \`\`\`bash
312
314
  ${p(`ack ${e.id}`)} --failed --reason "skipped; ..."
313
315
  \`\`\`
314
- `}function fs(e){switch(e.action_type){case"cli_prune_pending":return ss(e);case"cli_technical_fix":return cs(e);case"cli_new_content":return us(e);case"cli_content_update":return ds(e);case"cli_sitemap_update":return ps(e);case"cli_new_landing_page":return ms(e);default:return null}}function gs(e){if(e.length===0)return`# SEOAgent Inbox
316
+ `}function Os(e){switch(e.action_type){case"cli_prune_pending":return _s(e);case"cli_technical_fix":return As(e);case"cli_new_content":return Is(e);case"cli_content_update":return Ps(e);case"cli_sitemap_update":return Rs(e);case"cli_new_landing_page":return Ts(e);default:return null}}function Ls(e){if(e.length===0)return`# SEOAgent Inbox
315
317
 
316
318
  No pending actions. Run \`seoagent sync\` later to check for new ones.
317
- `;let t=e.map(n=>`- **${n.action_type}** id \`${n.id}\` \u2014 ${n.title??"no title"} \u2192 see \`${Yn(n)}\``);return`# SEOAgent Inbox
319
+ `;let t=e.map(n=>`- **${n.action_type}** id \`${n.id}\` \u2014 ${n.title??"no title"} \u2192 see \`${nr(n)}\``);return`# SEOAgent Inbox
318
320
 
319
321
  You have **${e.length}** pending action${e.length===1?"":"s"} from your dashboard.
320
322
 
@@ -326,7 +328,7 @@ For each file, read it, take the action it describes, then run \`seoagent ack <a
326
328
 
327
329
  If you're using Claude Code, just open this directory and ask "process the inbox" \u2014 the
328
330
  skill knows what to do.
329
- `}function ee(e){let t=G(e);if(!Et(t))return[];let n=[];for(let r of zn(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;try{let m=rs(de(t,r),"utf-8"),g=m.match(/^---\n([\s\S]*?)\n---/);if(g){let _=g[1];l=_t(_,"severity"),u=_t(_,"issue"),d=_t(_,"page_url")}let O=m.replace(/^---\n[\s\S]*?\n---\n+/,"").match(/^#\s+(.+)$/m);O&&(a=O[1].trim())}catch{}n.push({id:s,action_type:i,title:a,filename:r,severity:l,issue:u,page_url:d})}return n.sort((r,o)=>r.id-o.id)}function pe(e){let t=e.issue??e.action_type.replace(/^cli_/,"").replace(/_/g,"-"),n=hs[e.severity??""]??N.dim,r=e.severity??"unknown";return[N.dim("\u25B8"),N.bold(`id ${e.id}`),N.dim("\xB7"),N.cyan(t),n(r),N.dim("\u2014"),e.title].join(" ")}var hs={critical:e=>N.red(N.bold(e)),high:e=>N.red(e),medium:e=>N.yellow(e),low:e=>N.dim(e)};function _t(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 It(e){let t=G(e);if(!Et(t))return;let n=ee(e),r=n.length===0?`# SEOAgent Inbox
331
+ `}function re(e){let t=H(e);if(!Tt(t))return[];let n=[];for(let r of tr(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,m=null,g=null,y=null;try{let R=Ss(fe(t,r),"utf-8"),I=R.match(/^---\n([\s\S]*?)\n---/);if(I){let U=I[1];l=me(U,"severity"),u=me(U,"issue"),d=me(U,"page_url");let X=me(U,"priority");(X==="high"||X==="medium"||X==="low")&&(m=X),g=me(U,"impact_estimate"),y=me(U,"effort_estimate")}let x=R.replace(/^---\n[\s\S]*?\n---\n+/,"").match(/^#\s+(.+)$/m);x&&(a=x[1].trim())}catch{}n.push({id:s,action_type:i,title:a,filename:r,severity:l,issue:u,page_url:d,priority:m,impact_estimate:g,effort_estimate:y})}return n.sort((r,o)=>r.id-o.id)}function ge(e){let t=e.issue??e.action_type.replace(/^cli_/,"").replace(/_/g,"-"),n=js[e.severity??""]??E.dim,r=e.severity??"unknown",o=[E.dim("\u25B8"),E.bold(`id ${e.id}`),E.dim("\xB7"),E.cyan(t),n(r)];if(e.priority){let i=Ns[e.priority];o.push(E.dim("\xB7"),i(`p:${e.priority}`))}return e.impact_estimate&&o.push(E.dim("\xB7"),E.green(`\u21E7 ${e.impact_estimate}`)),e.effort_estimate&&o.push(E.dim("\xB7"),E.dim(`\u23F1 ${e.effort_estimate}`)),o.push(E.dim("\u2014"),e.title),o.join(" ")}var js={critical:e=>E.red(E.bold(e)),high:e=>E.red(e),medium:e=>E.yellow(e),low:e=>E.dim(e)},Ns={high:e=>E.red(E.bold(e)),medium:e=>E.yellow(e),low:e=>E.dim(e)};function me(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 nt(e){let t=H(e);if(!Tt(t))return;let n=re(e),r=n.length===0?`# SEOAgent Inbox
330
332
 
331
333
  No pending actions. Run \`seoagent sync\` later to check for new ones.
332
334
  `:`# SEOAgent Inbox
@@ -341,34 +343,34 @@ For each file, read it, take the action it describes, then run \`seoagent ack <a
341
343
 
342
344
  If you're using Claude Code, just open this directory and ask "process the inbox" \u2014 the
343
345
  skill knows what to do.
344
- `;Ct(de(t,"README.md"),r,"utf-8")}function qn(e,t){let n=G(e);ns(n,{recursive:!0});let r=new Set(t.map(s=>s.id)),o=is(n,r),i=0;for(let s of t){let a=fs(s);a!==null&&(Ct(de(n,Yn(s)),a,"utf-8"),i++)}return Ct(de(n,"README.md"),gs(t),"utf-8"),{wrote:i,removed:o,inboxPath:n}}import{createHash as ks}from"crypto";import{existsSync as Xn,mkdirSync as bs,readFileSync as $s,statSync as Qn,writeFileSync as Jn,rmSync as Ss}from"fs";import{dirname as vs,join as At,sep as xs}from"path";function ys(e){return e.replace(/^\/+/,"").replace(/\\/g,"/")}var ws=[{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 Vn(e,t){let n=ys(e);for(let{cls:r,test:o}of ws)if(o(n))return t&&(r==="keywords"||r==="pages")?"generated-index":r;return"other"}function _s(e){return"sha256:"+ks("sha256").update(e).digest("hex")}function Cs(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 Es(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:Vn(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 Zn(e){let t=await tr({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 er(e,t){return At(e,t.split("/").join(xs))}function Is(e,t,n){let r={};for(let o of t){let i=er(e,o);if(!Xn(i)){r[o]={exists:!1,locallyEdited:!1};continue}let s=Qn(i),a=n[o],l=!a||a.mtime!==s.mtimeMs||a.size!==s.size;r[o]={exists:!0,contentHash:_s($s(i,"utf-8")),locallyEdited:l}}return r}async function tr(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 nr(e){let t=At(e.projectDir,S),n={ok:!0,written:0,overwritten:0,skipped:0,conflicts:0,deleted:0,warnings:[],cursor:e.since};if(!Xn(t))return{...n,ok:!0};let r=await tr({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=Is(t,i,e.stateFiles),a=Cs(o,s,{force:e.force}),l={...n,cursor:o.now};for(let d of a){let m=er(t,d.path);try{switch(d.kind){case"skip":l.skipped++;break;case"write":case"overwrite":{bs(vs(m),{recursive:!0}),Jn(m,d.body??"","utf-8");let g=Qn(m);e.stateFiles[d.path]={mtime:g.mtimeMs,size:g.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":Ss(m,{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(g){l.ok=!1,l.error=`${d.path}: ${g.message}`}}(l.conflicts>0||!l.ok)&&(l.cursor=e.since);let u=Es(a,o,l.cursor,new Date().toISOString());if(u)try{Jn(At(t,qt),JSON.stringify(u,null,2)+`
345
- `,"utf-8")}catch{}return l}var js=new Set([".md"]),Ns=new Set(["inbox"]);function Fs(e){let t=[];function n(r,o){if(Pt(r))for(let i of Ps(r,{withFileTypes:!0})){if(i.name.startsWith(".")||o===""&&Ns.has(i.name))continue;let s=Rt(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);js.has(l)&&t.push(s)}}}return n(e,""),t}function or(e){let t=e.replace(/[^a-zA-Z0-9._-]/g,"_");return Rt(ct,`${t}.json`)}function Us(e){let t=or(e);if(!Pt(t))return{files:{},last_synced_at:null};try{return JSON.parse(rr(t,"utf-8"))}catch{return{files:{},last_synced_at:null}}}function Ds(e,t){As(ct,{recursive:!0}),Ts(or(e),JSON.stringify(t,null,2)+`
346
- `,"utf-8")}function Bs(e,t){return Os(e,t).split(Ls).join("/")}async function Ms(e,t){try{let n=await ue(`${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 Ws(e,t,n){try{let r=await ue(`${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 ir(e,t={}){let n=E();if(!n)return{ok:!0,reason:"no-auth",synced:0,failed:0,errors:[]};let r=C(e);if(!r)return{ok:!0,reason:"no-project",synced:0,failed:0,errors:[]};let o=Rt(e,S);if(!Pt(o))return{ok:!0,reason:"no-project",synced:0,failed:0,errors:[]};let i=Us(r.domain),s=Fs(o),a=n.api_base||b.BASE,l=`Bearer ${n.user_token}:${n.website_token}`,u=0,d=0,m=[],g=0;if(!t.pullOnly)for(let A of s){let fe=Bs(o,A);if(t.pathFilter&&!fe.endsWith(t.pathFilter))continue;let Ue=Rs(A),st=i.files[fe];if(!(!st||st.mtime!==Ue.mtimeMs||st.size!==Ue.size)&&!t.force)continue;g++;let Mr=rr(A,"utf-8"),at=await Ws(a,{path:fe,contents:Mr,domain:r.domain},l);at.ok?(i.files[fe]={mtime:Ue.mtimeMs,size:Ue.size},u++):(d++,m.push(`${fe}: ${at.status} ${at.error??""}`.trim()))}let x=await Ms(a,l),O=0,_=0;if(x.ok){let A=qn(e,x.actions);O=A.wrote,_=A.removed}else x.error&&m.push(`pull actions: ${x.error}`);let L,j=!1,Kt=i.last_synced_at;if(!t.pushOnly){let A=await nr({projectDir:e,apiBase:a,authHeader:l,since:i.last_synced_at,stateFiles:i.files,force:t.force});A.ok?Kt=A.cursor:(j=!0,A.error&&m.push(`pull: ${A.error}`)),L={written:A.written,overwritten:A.overwritten,skipped:A.skipped,conflicts:A.conflicts,deleted:A.deleted,warnings:A.warnings}}let Br=!!L&&L.written+L.overwritten+L.deleted+L.conflicts>0;if(i.last_synced_at=Kt,Ds(r.domain,i),g===0&&O===0&&_===0&&!Br&&!j&&d===0)return{ok:!0,reason:"no-changes",synced:0,failed:0,errors:m,actionsPulled:0,actionsRemoved:0,pull:L};let Ht=d===0&&!j;return{ok:Ht,reason:Ht?void 0:"error",synced:u,failed:d,errors:m,actionsPulled:O,actionsRemoved:_,pull:L}}async function B(e={}){let t=!e.silent&&!!process.stdout.isTTY,n=e.pullOnly?"Pulling":e.pushOnly?"Pushing":"Syncing",r=t?Gs():null;r?.start(`${n} ${Re.dim(".seoagent/")} with your dashboard\u2026`);let o=await ir(process.cwd(),{pathFilter:e.path,force:e.force,pushOnly:e.pushOnly,pullOnly:e.pullOnly});if(e.silent){o.ok||(process.exitCode=0);return}if(o.reason==="no-auth"){w(r,"info",`Not logged in. Run \`${p("login")}\` to enable cloud sync.`,Re.dim("Not logged in \u2014 cloud sync skipped.")),r&&c.info(`Run \`${p("login")}\` to enable cloud sync.`);return}if(o.reason==="no-project"){w(r,"info",`No SEOAgent project here. Run \`${p("init")}\` first.`,Re.dim("No SEOAgent project \u2014 sync skipped.")),r&&c.info(`Run \`${p("init")}\` first.`);return}if(o.reason==="no-changes"){w(r,"info","Already in sync.",Re.green("Already in sync."));return}let i=Ks(o);w(r,"success",i??"Sync complete.",Re.green(i??"Sync complete.")),o.synced>0&&c.success(`Synced ${o.synced} file${o.synced===1?"":"s"} to your dashboard.`);let s=o.pull;if(s){let a=s.written+s.overwritten;a>0&&c.success(`Pulled ${a} file${a===1?"":"s"} from the cloud`+(s.overwritten>0?` (${s.overwritten} updated)`:"")),s.deleted>0&&c.info(`Removed ${s.deleted} file${s.deleted===1?"":"s"} deleted in the cloud.`),s.conflicts>0&&c.warn(`${s.conflicts} conflict${s.conflicts===1?"":"s"} \u2014 local changes kept. Re-run with --force to take the cloud version.`);for(let l of s.warnings.slice(0,5))c.info(` \u2022 ${l}`)}if(o.actionsPulled&&o.actionsPulled>0&&(c.success(`Pulled ${o.actionsPulled} pending action${o.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.')),o.actionsRemoved&&o.actionsRemoved>0&&c.info(`Cleaned up ${o.actionsRemoved} stale inbox file${o.actionsRemoved===1?"":"s"}.`),o.failed>0){c.warn(`${o.failed} file${o.failed===1?"":"s"} failed to sync. Will retry next run.`);for(let a of o.errors.slice(0,3))c.info(` \u2022 ${a}`)}}function Ks(e){let t=e.synced,n=e.pull?e.pull.written+e.pull.overwritten:0,r=e.actionsPulled??0,o=e.pull?.conflicts??0,i=[];return t>0&&i.push(`${t} pushed`),n>0&&i.push(`${n} pulled`),r>0&&i.push(`${r} action${r===1?"":"s"}`),o>0&&i.push(`${o} conflict${o===1?"":"s"}`),i.length===0&&e.failed===0?null:i.length>0?i.join(" \xB7 "):"Sync complete."}function M(e){let t=C(e);return t||(c.error(`No SEOAgent project here. Run \`${p("init")}\` first.`),process.exitCode=1,null)}async function te(e={}){if(e.print){let t=E();if(!t){c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}if(!M(process.cwd()))return;let n=t.api_base||b.BASE,r=await Zn({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(`
346
+ `;Rt(fe(t,"README.md"),r,"utf-8")}function rr(e,t){let n=H(e);$s(n,{recursive:!0});let r=new Set(t.map(s=>s.id)),o=xs(n,r),i=0;for(let s of t){let a=Os(s);a!==null&&(Rt(fe(n,nr(s)),a,"utf-8"),i++)}return Rt(fe(n,"README.md"),Ls(t),"utf-8"),{wrote:i,removed:o,inboxPath:n}}import{createHash as Ds}from"crypto";import{existsSync as sr,mkdirSync as Ms,readFileSync as Bs,statSync as ar,writeFileSync as ir,rmSync as Ws}from"fs";import{dirname as Gs,join as Ot,sep as Ks}from"path";function Fs(e){return e.replace(/^\/+/,"").replace(/\\/g,"/")}var Us=[{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 or(e,t){let n=Fs(e);for(let{cls:r,test:o}of Us)if(o(n))return t&&(r==="keywords"||r==="pages")?"generated-index":r;return"other"}function Hs(e){return"sha256:"+Ds("sha256").update(e).digest("hex")}function qs(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 zs(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:or(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 lr(e){let t=await ur({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 cr(e,t){return Ot(e,t.split("/").join(Ks))}function Ys(e,t,n){let r={};for(let o of t){let i=cr(e,o);if(!sr(i)){r[o]={exists:!1,locallyEdited:!1};continue}let s=ar(i),a=n[o],l=!a||a.mtime!==s.mtimeMs||a.size!==s.size;r[o]={exists:!0,contentHash:Hs(Bs(i,"utf-8")),locallyEdited:l}}return r}async function ur(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 dr(e){let t=Ot(e.projectDir,$),n={ok:!0,written:0,overwritten:0,skipped:0,conflicts:0,deleted:0,warnings:[],cursor:e.since};if(!sr(t))return{...n,ok:!0};let r=await ur({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=Ys(t,i,e.stateFiles),a=qs(o,s,{force:e.force}),l={...n,cursor:o.now};for(let d of a){let m=cr(t,d.path);try{switch(d.kind){case"skip":l.skipped++;break;case"write":case"overwrite":{Ms(Gs(m),{recursive:!0}),ir(m,d.body??"","utf-8");let g=ar(m);e.stateFiles[d.path]={mtime:g.mtimeMs,size:g.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":Ws(m,{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(g){l.ok=!1,l.error=`${d.path}: ${g.message}`}}(l.conflicts>0||!l.ok)&&(l.cursor=e.since);let u=zs(a,o,l.cursor,new Date().toISOString());if(u)try{ir(Ot(t,tn),JSON.stringify(u,null,2)+`
347
+ `,"utf-8")}catch{}return l}import{existsSync as mr,mkdirSync as fr,readFileSync as Js,writeFileSync as Lt}from"fs";import{dirname as gr,join as Vs}from"path";var jt=1,pr=500;function Nt(e){return Vs(e,$,nn)}function rt(e){let t=Nt(e);if(!mr(t))return[];try{let n=Js(t,"utf-8"),r=JSON.parse(n);if(!r||typeof r!="object")return[];let o=r;return o.version!==jt||!Array.isArray(o.entries)?[]:o.entries.filter(Xs)}catch{return[]}}function hr(e,t){let n=Nt(e),o=rt(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>pr?o.slice(-pr):o,s={version:jt,entries:i};try{fr(gr(n),{recursive:!0}),Lt(n,JSON.stringify(s,null,2),"utf-8")}catch{}}function yr(e,t){if(t.length===0)return;let n=Nt(e),r=rt(e).filter(i=>!t.includes(i.action_id)),o={version:jt,entries:r};try{if(r.length===0&&mr(n)){Lt(n,JSON.stringify(o,null,2),"utf-8");return}fr(gr(n),{recursive:!0}),Lt(n,JSON.stringify(o,null,2),"utf-8")}catch{}}function Xs(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 wr,readFileSync as Qs,unlinkSync as Zs,writeFileSync as ea,openSync as ta,closeSync as na,mkdirSync as ra}from"fs";import{dirname as oa,join as ia}from"path";var sa=6e4;function kr(e){return ia(e,$,rn)}function br(e,t={}){let n=t.now??Date.now,r=t.pid??process.pid,o=t.staleMs??sa,i=kr(e);if(!wr(i))return ot(i,r,n());let s=Sr(i);return!s||n()-s.started_at>o||!aa(s.pid)?ot(i,r,n()):{acquired:!1,reason:"held-by-live-process",held_by_pid:s.pid}}function $r(e,t={}){let n=t.pid??process.pid,r=kr(e);if(!wr(r))return;let o=Sr(r);if(!(o&&o.pid!==n))try{Zs(r)}catch{}}function ot(e,t,n){let r={pid:t,started_at:n};try{ra(oa(e),{recursive:!0});let o=ta(e,"w");try{ea(o,JSON.stringify(r))}finally{na(o)}return{acquired:!0}}catch{return{acquired:!1,reason:"held-but-pid-unknown"}}}function Sr(e){try{let t=Qs(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 aa(e){if(!Number.isInteger(e)||e<=0)return!1;try{return process.kill(e,0),!0}catch(t){return t.code==="EPERM"}}var fa=new Set([".md"]),ga=new Set(["inbox"]);function ha(e){let t=[];function n(r,o){if(Ft(r))for(let i of ca(r,{withFileTypes:!0})){if(i.name.startsWith(".")||o===""&&ga.has(i.name))continue;let s=Ut(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);fa.has(l)&&t.push(s)}}}return n(e,""),t}function xr(e){let t=e.replace(/[^a-zA-Z0-9._-]/g,"_");return Ut(gt,`${t}.json`)}function ya(e){let t=xr(e);if(!Ft(t))return{files:{},last_synced_at:null};try{return JSON.parse(vr(t,"utf-8"))}catch{return{files:{},last_synced_at:null}}}function wa(e,t){la(gt,{recursive:!0}),da(xr(e),JSON.stringify(t,null,2)+`
348
+ `,"utf-8")}function ka(e,t){return pa(e,t).split(ma).join("/")}async function ba(e,t){try{let n=await K(`${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 $a(e,t,n){try{let r=await K(`${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 _r(e,t={}){let n=A();if(!n)return{ok:!0,reason:"no-auth",synced:0,failed:0,errors:[]};let r=C(e);if(!r)return{ok:!0,reason:"no-project",synced:0,failed:0,errors:[]};let o=Ut(e,$);if(!Ft(o))return{ok:!0,reason:"no-project",synced:0,failed:0,errors:[]};if(!br(e).acquired)return{ok:!0,reason:"busy",synced:0,failed:0,errors:[]};try{return await Sa(e,t,n,r,o)}finally{$r(e)}}async function Sa(e,t,n,r,o){let i=ya(r.domain),s=ha(o),a=n.api_base||S.BASE,l=`Bearer ${n.user_token}:${n.website_token}`,u=0,d=0,m=[],g=0,y=await va(e,a,l);if(!t.pullOnly)for(let T of s){let we=ka(o,T);if(t.pathFilter&&!we.endsWith(t.pathFilter))continue;let Be=ua(T),pt=i.files[we];if(!(!pt||pt.mtime!==Be.mtimeMs||pt.size!==Be.size)&&!t.force)continue;g++;let so=vr(T,"utf-8"),mt=await $a(a,{path:we,contents:so,domain:r.domain},l);mt.ok?(i.files[we]={mtime:Be.mtimeMs,size:Be.size},u++):(d++,m.push(`${we}: ${mt.status} ${mt.error??""}`.trim()))}let R=await ba(a,l),I=0,F=0;if(R.ok){let T=rr(e,R.actions);I=T.wrote,F=T.removed}else R.error&&m.push(`pull actions: ${R.error}`);let x,U=!1,X=i.last_synced_at;if(!t.pushOnly){let T=await dr({projectDir:e,apiBase:a,authHeader:l,since:i.last_synced_at,stateFiles:i.files,force:t.force});T.ok?X=T.cursor:(U=!0,T.error&&m.push(`pull: ${T.error}`)),x={written:T.written,overwritten:T.overwritten,skipped:T.skipped,conflicts:T.conflicts,deleted:T.deleted,warnings:T.warnings}}let io=!!x&&x.written+x.overwritten+x.deleted+x.conflicts>0;if(i.last_synced_at=X,wa(r.domain,i),g===0&&I===0&&F===0&&!io&&y.flushed===0&&y.dropped===0&&!U&&d===0)return{ok:!0,reason:"no-changes",synced:0,failed:0,errors:m,actionsPulled:0,actionsRemoved:0,acksFlushed:0,acksDropped:0,pull:x};let Qt=d===0&&!U;return{ok:Qt,reason:Qt?void 0:"error",synced:u,failed:d,errors:m,actionsPulled:I,actionsRemoved:F,acksFlushed:y.flushed,acksDropped:y.dropped,pull:x}}async function va(e,t,n){let r=rt(e);if(r.length===0)return{flushed:0,dropped:0};let o=0,i=0,s=[];for(let a of r){let l=await xa(a,t,n);l==="flushed"?(o++,s.push(a.action_id)):l==="already-settled"&&(i++,s.push(a.action_id))}return s.length>0&&yr(e,s),{flushed:o,dropped:i}}async function xa(e,t,n){try{let r=await K(`${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"}}async function B(e={}){let t=!e.silent&&!!process.stdout.isTTY,n=e.pullOnly?"Pulling":e.pushOnly?"Pushing":"Syncing",r=t?_a():null;r?.start(`${n} ${he.dim(".seoagent/")} with your dashboard\u2026`);let o=await _r(process.cwd(),{pathFilter:e.path,force:e.force,pushOnly:e.pushOnly,pullOnly:e.pullOnly});if(e.silent){o.ok||(process.exitCode=0);return}if(o.reason==="no-auth"){k(r,"info",`Not logged in. Run \`${p("login")}\` to enable cloud sync.`,he.dim("Not logged in \u2014 cloud sync skipped.")),r&&c.info(`Run \`${p("login")}\` to enable cloud sync.`);return}if(o.reason==="no-project"){k(r,"info",`No SEOAgent project here. Run \`${p("init")}\` first.`,he.dim("No SEOAgent project \u2014 sync skipped.")),r&&c.info(`Run \`${p("init")}\` first.`);return}if(o.reason==="no-changes"){k(r,"info","Already in sync.",he.green("Already in sync."));return}if(o.reason==="busy"){k(r,"info","Another sync is in progress \u2014 skipping this run.",he.dim("Another sync is in progress \u2014 skipping this run."));return}let i=Ea(o);k(r,"success",i??"Sync complete.",he.green(i??"Sync complete.")),o.synced>0&&c.success(`Synced ${o.synced} file${o.synced===1?"":"s"} to your dashboard.`);let s=o.pull;if(s){let a=s.written+s.overwritten;a>0&&c.success(`Pulled ${a} file${a===1?"":"s"} from the cloud`+(s.overwritten>0?` (${s.overwritten} updated)`:"")),s.deleted>0&&c.info(`Removed ${s.deleted} file${s.deleted===1?"":"s"} deleted in the cloud.`),s.conflicts>0&&c.warn(`${s.conflicts} conflict${s.conflicts===1?"":"s"} \u2014 local changes kept. Re-run with --force to take the cloud version.`);for(let l of s.warnings.slice(0,5))c.info(` \u2022 ${l}`)}if(o.acksFlushed&&o.acksFlushed>0&&c.success(`Flushed ${o.acksFlushed} offline ack${o.acksFlushed===1?"":"s"} from the queue.`),o.acksDropped&&o.acksDropped>0&&c.info(`Dropped ${o.acksDropped} stale ack${o.acksDropped===1?"":"s"} (already settled server-side).`),o.actionsPulled&&o.actionsPulled>0&&(c.success(`Pulled ${o.actionsPulled} pending action${o.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.')),o.actionsRemoved&&o.actionsRemoved>0&&c.info(`Cleaned up ${o.actionsRemoved} stale inbox file${o.actionsRemoved===1?"":"s"}.`),o.failed>0){c.warn(`${o.failed} file${o.failed===1?"":"s"} failed to sync. Will retry next run.`);for(let a of o.errors.slice(0,3))c.info(` \u2022 ${a}`)}}function Ea(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 W(e){let t=C(e);return t||(c.error(`No SEOAgent project here. Run \`${p("init")}\` first.`),process.exitCode=1,null)}async function oe(e={}){if(e.print){let t=A();if(!t){c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}if(!W(process.cwd()))return;let n=t.api_base||S.BASE,r=await lr({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(`
347
349
  `)||process.stdout.write(`
348
- `);return}await B({pullOnly:!0,force:e.force,silent:e.silent,embedded:e.embedded})}import{existsSync as Hs,readdirSync as zs,unlinkSync as Ys}from"fs";import{join as ar}from"path";import{isCancel as qs,select as Vs}from"@clack/prompts";async function Y(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 Js(),n===null)return;let r=n,o=E();if(!o){c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}if(!M(process.cwd()))return;let i=o.api_base||b.BASE,s=`Bearer ${o.user_token}:${o.website_token}`,a=t.failed?"failed":"completed",l;try{l=await fetch(`${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(u){c.error(`Network error: ${u.message}`),process.exitCode=1;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"){sr(r),It(process.cwd());let m=typeof d.error=="string"?d.error.match(/'([^']+)'/)?.[1]??"settled":"settled";t.silent||c.success(`Action ${r} was already ${m}.`);return}c.error(`Server rejected ack (${l.status}): ${u.slice(0,200)}`),process.exitCode=1;return}sr(r),It(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: ${ar(S,"inbox")}`))}function sr(e){let t=G(process.cwd());if(Hs(t)){for(let n of zs(t))if(n.endsWith(`-${e}.md`))try{Ys(ar(t,n))}catch{}}}async function Js(){let e=process.cwd(),t=ee(e);if(t.length===0)return c.info("No pending actions in .seoagent/inbox/."),c.message(`Run \`${p("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 \`${p("inbox")}\` to see what's pending.`),process.exitCode=1,null;let n=await Vs({message:`Which action do you want to close out? (${t.length} pending)`,options:t.map(r=>({value:r.id,label:pe(r)}))});return qs(n)?(c.info("Cancelled \u2014 no action closed out."),null):n}import Ze from"picocolors";async function Tt(e={}){let t=process.cwd();if(!e.json&&!M(t))return;let n=ee(t);if(e.json){process.stdout.write(JSON.stringify({count:n.length,inbox_path:G(t),actions:n})+`
349
- `);return}if(n.length===0){c.info(Ze.dim("No pending actions.")),c.message(`Run \`${p("sync")}\` to pull anything autopilot has queued, or \`${p("autopilot status")}\` to check whether autopilot is on.`);return}c.message(`${Ze.bold("SEOAgent inbox")} \xB7 ${n.length} pending action${n.length===1?"":"s"}`),c.message("");for(let r of n)c.message(pe(r));c.message(""),c.message(`Apply one: ${Ze.bold(p("ack <id>"))} \xB7 Interactive picker: ${Ze.bold(p("ack"))} (no id)`)}import{readFileSync as sa}from"fs";import{join as aa,relative as la}from"path";import{confirm as mr,isCancel as tt,multiselect as ca,note as hr,select as ua}from"@clack/prompts";import f from"picocolors";import{query as da}from"@anthropic-ai/claude-agent-sdk";import{existsSync as Xs,readdirSync as Qs}from"fs";import{homedir as Zs}from"os";import{join as ea}from"path";import{execSync as Ot}from"child_process";function Lt(){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":ta()?na()?"claude-session-likely":"claude-installed-no-session":"not-installed"}function ta(){let e=process.platform==="win32"?"where claude":"command -v claude";try{return Ot(e,{stdio:"ignore"}),!0}catch{return!1}}function na(){let e=ea(Zs(),".claude");if(!Xs(e))return!1;try{return Qs(e).filter(n=>!n.startsWith(".DS_Store")).length>0}catch{return!1}}function lr(){try{return Ot("npm install -g @anthropic-ai/claude-code",{stdio:"inherit"}),{ok:!0}}catch(e){return{ok:!1,error:e.message}}}function cr(){try{return Ot("claude login",{stdio:"inherit"}),{ok:!0}}catch(e){return{ok:!1,error:e.message}}}var et={"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 dr}from"marked";import{markedTerminal as ra}from"marked-terminal";import jt from"picocolors";var ur=!1;function oa(){ur||(dr.use(ra({reflowText:!1,width:100})),ur=!0)}function pr(e){if(!e)return e;oa();try{let t=dr.parse(e);return typeof t=="string"?ia(t):e}catch{return e}}function ia(e){return e.replace(/`([^`\n]+)`/g,(t,n)=>jt.yellow(n)).replace(/\*\*([^*\n]+)\*\*/g,(t,n)=>jt.bold(n)).replace(/(^|[\s(])\*([^*\s][^*\n]*?)\*(?=[\s.,;:!?)]|$)/gm,(t,n,r)=>n+jt.italic(r))}async function Ft(e={}){let t=process.cwd();if(!M(t))return;if(!process.stdout.isTTY&&!e.yes){c.error(`\`${p("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 ya(e.yes)){process.exitCode=1;return}if(e.yes)await B({embedded:!0});else{let u=await ua({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(tt(u)){c.info("Cancelled.");return}u==="sync"?await B({embedded:!0}):u==="pull"&&await te({embedded:!0})}let r=ee(t);if(r.length===0){c.info(f.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=await ca({message:`Which actions to process? (${r.length} pending \u2014 space to toggle)`,options:r.map(d=>({value:d.id,label:pe(d)})),initialValues:r.map(d=>d.id),required:!1});if(tt(u)){c.info("Cancelled \u2014 no actions processed.");return}if(!Array.isArray(u)||u.length===0){c.info("No actions selected. Nothing to do.");return}o=u}let i=0,s=0,a=0,l=Date.now();for(let u=0;u<o.length;u++){let d=o[u],m=r.find(j=>j.id===d);if(!m)continue;pa({index:u+1,total:o.length,entry:m});let g=aa(G(t),m.filename),x;try{x=sa(g,"utf-8")}catch(j){c.error(` Could not read ${m.filename}: ${j.message}`),a++;continue}let O=Date.now(),_=await ha({cwd:t,entry:m,actionContent:x,model:e.model}),L=fr(Date.now()-O);if(_.kind==="applied")try{await Y(String(d),{silent:!0}),i++,c.message("");let j=_.summary?`
350
- `+f.dim(" "+_.summary):"";c.message(` ${f.green("\u2713")} id ${d} ${f.dim("\u2014 applied in "+L)}${j}`)}catch(j){c.warn(` Applied but ack failed: ${j.message}. Run \`seoagent ack ${d}\` to retry.`)}else if(_.kind==="declined")try{await Y(String(d),{silent:!0,failed:!0,reason:_.reason}),s++,c.message(""),c.message(` ${f.yellow("\u2298")} id ${d} ${f.dim("\u2014 declined: "+F(_.reason,100))}`)}catch(j){c.warn(` Could not ack decline: ${j.message}. Run \`seoagent ack ${d} --failed --reason "${_.reason.replace(/"/g,'\\"')}"\` to retry.`)}else a++,c.message(""),c.message(` ${f.red("\u2717")} id ${d} ${f.dim("\u2014 agent did not converge after "+L)}`)}fa({applied:i,declined:s,failed:a,total:o.length,elapsed:fr(Date.now()-l)})}function pa(e){let{index:t,total:n,entry:r}=e,o=r.issue??r.action_type.replace(/^cli_/,"").replace(/_/g,"-"),i=r.severity??"unknown",s=ma[i]??f.dim,a=[f.bold(`[${t}/${n}]`),f.dim("\xB7"),f.bold(`id ${r.id}`),f.dim("\xB7"),f.cyan(o),s(i)].join(" ");hr(r.title,a)}var ma={critical:e=>f.red(f.bold(e)),high:f.red,medium:f.yellow,low:f.dim};function fa(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?f.green(`\u2713 ${t}/${o} applied`):f.green(`\u2713 ${t}/${o} applied \xB7 ${n} declined`);else if(s===0)a=f.red(`\u2717 0/${o} applied`);else{let l=[`${t}/${o} applied`];n>0&&l.push(`${n} declined`),r>0&&l.push(`${r} failed`),a=f.yellow(`\u25D0 ${l.join(" \xB7 ")}`)}hr(`${a}
351
- ${f.dim("elapsed: "+i)}`,f.bold("Done"))}function fr(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 ga(e){if(typeof e!="string"||!e)return null;let t=e.split(`
352
- `);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 ha(e){let{cwd:t,entry:n,actionContent:r,model:o}=e,i=Ea(n,r);try{let s=da({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)ka(d,a)}else if(l.type==="user"){let u=l.message.content;if(Array.isArray(u))for(let d of u)Sa(d,a)}else if(l.type==="result"){if(process.stdout.write(`
353
- `),!(l.subtype==="success"&&!l.is_error))return{kind:"failed"};let d=ga(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(`
354
- `),c.error(` Agent error: ${s.message}`),{kind:"failed"}}}async function ya(e){let t=Lt();if(t==="env-key"||t==="enterprise"||t==="claude-session-likely")return c.info(f.dim(et[t].summary)),!0;if(c.warn(et[t].summary),c.message(` ${et[t].next}`),e)return!1;if(t==="not-installed"){let n=await mr({message:"Install Claude Code globally now? (runs `npm install -g @anthropic-ai/claude-code`)",initialValue:!0});if(tt(n)||!n)return c.info("Skipped install. Set up auth and re-run when ready."),!1;c.message(f.dim("Installing @anthropic-ai/claude-code globally\u2026"));let r=lr();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=Lt()}if(t==="claude-installed-no-session"||t==="not-installed"){let n=await mr({message:"Run `claude login` now to sign in?",initialValue:!0});if(tt(n)||!n)return c.info("Skipped login. Run `claude login` when ready and try again."),!1;c.message(f.dim("Launching `claude login`\u2026"));let r=cr();if(!r.ok)return c.error(`Login failed: ${r.error}`),!1}return!0}function wa(e){return typeof e=="object"&&e!==null&&e.type==="text"&&typeof e.text=="string"}function ka(e,t){if(!e||typeof e!="object")return;let n=e.type;if(n==="text"&&wa(e)){process.stdout.write(pr(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=$a[o]??f.cyan,a=Ca(o,i);process.stdout.write(s(ba)+" "+f.bold(o)+f.dim("(")+a+f.dim(")")+`
355
- `);return}if(n==="thinking"){let r=e.thinking;typeof r=="string"&&r.trim()&&process.stdout.write(f.dim(f.italic(" "+F(r,200)))+`
356
- `)}}var ba="\u23FA",gr="\u23BF",$a={Read:f.blue,Glob:f.cyan,Grep:f.cyan,Edit:f.yellow,Write:f.magenta,Bash:f.green,WebFetch:f.magenta,WebSearch:f.magenta};function Sa(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=va(s);if(n){process.stdout.write(f.red(` ${gr} Error`)+`
357
- `),a&&process.stdout.write(_a(F(a,500)," ",f.red)+`
358
- `);return}let l=xa(i,a,o?.input);l&&process.stdout.write(f.dim(` ${gr} `)+l+`
359
- `)}function va(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 xa(e,t,n){if(!e)return"";switch(e){case"Read":{let r=(t.match(/^\s*\d+→/gm)??[]).length,o=r>0?r:t.split(`
350
+ `);return}await B({pullOnly:!0,force:e.force,silent:e.silent,embedded:e.embedded})}import{existsSync as Ca,readdirSync as Aa,unlinkSync as Ia}from"fs";import{join as Er}from"path";import{isCancel as Pa,select as Ra}from"@clack/prompts";async function J(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 Ta(),n===null)return;let r=n,o=A();if(!o){c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}if(!W(process.cwd()))return;let i=o.api_base||S.BASE,s=`Bearer ${o.user_token}:${o.website_token}`,a=t.failed?"failed":"completed",l;try{l=await K(`${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{hr(process.cwd(),{action_id:r,status:a,reason:t.failed?t.reason??null:null}),Dt(r),nt(process.cwd()),t.silent||c.warn(`Network unavailable \u2014 ack queued locally. Run \`${p("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"){Dt(r),nt(process.cwd());let R=typeof d.error=="string"?d.error.match(/'([^']+)'/)?.[1]??"settled":"settled";t.silent||c.success(`Action ${r} was already ${R}.`);return}let m=typeof d?.code=="string"?d.code:null,g=typeof d?.error=="string"?d.error:u,y=m?`, code: ${m}`:"";c.error(`Server rejected ack (${l.status}${y}): ${g.slice(0,200)}`),process.exitCode=1;return}Dt(r),nt(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: ${Er($,"inbox")}`))}function Dt(e){let t=H(process.cwd());if(Ca(t)){for(let n of Aa(t))if(n.endsWith(`-${e}.md`))try{Ia(Er(t,n))}catch{}}}async function Ta(){let e=process.cwd(),t=re(e);if(t.length===0)return c.info("No pending actions in .seoagent/inbox/."),c.message(`Run \`${p("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 \`${p("inbox")}\` to see what's pending.`),process.exitCode=1,null;let n=await Ra({message:`Which action do you want to close out? (${t.length} pending)`,options:t.map(r=>({value:r.id,label:ge(r)}))});return Pa(n)?(c.info("Cancelled \u2014 no action closed out."),null):n}import it from"picocolors";async function Mt(e={}){let t=process.cwd();if(!e.json&&!W(t))return;let n=re(t);if(e.json){process.stdout.write(JSON.stringify({count:n.length,inbox_path:H(t),actions:n})+`
351
+ `);return}if(n.length===0){c.info(it.dim("No pending actions.")),c.message(`Run \`${p("sync")}\` to pull anything autopilot has queued, or \`${p("autopilot status")}\` to check whether autopilot is on.`);return}c.message(`${it.bold("SEOAgent inbox")} \xB7 ${n.length} pending action${n.length===1?"":"s"}`),c.message("");for(let r of n)c.message(ge(r));c.message(""),c.message(`Apply one: ${it.bold(p("ack <id>"))} \xB7 Interactive picker: ${it.bold(p("ack"))} (no id)`)}import{readFileSync as Wa}from"fs";import{join as Ga,relative as Ka}from"path";import{confirm as Tr,isCancel as at,multiselect as Ha,note as jr,select as qa}from"@clack/prompts";import f from"picocolors";import{query as za}from"@anthropic-ai/claude-agent-sdk";import{existsSync as Oa,readdirSync as La}from"fs";import{homedir as ja}from"os";import{join as Na}from"path";import{execSync as Bt}from"child_process";function Wt(){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":Fa()?Ua()?"claude-session-likely":"claude-installed-no-session":"not-installed"}function Fa(){let e=process.platform==="win32"?"where claude":"command -v claude";try{return Bt(e,{stdio:"ignore"}),!0}catch{return!1}}function Ua(){let e=Na(ja(),".claude");if(!Oa(e))return!1;try{return La(e).filter(n=>!n.startsWith(".DS_Store")).length>0}catch{return!1}}function Cr(){try{return Bt("npm install -g @anthropic-ai/claude-code",{stdio:"inherit"}),{ok:!0}}catch(e){return{ok:!1,error:e.message}}}function Ar(){try{return Bt("claude login",{stdio:"inherit"}),{ok:!0}}catch(e){return{ok:!1,error:e.message}}}var st={"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 Pr}from"marked";import{markedTerminal as Da}from"marked-terminal";import Gt from"picocolors";var Ir=!1;function Ma(){Ir||(Pr.use(Da({reflowText:!1,width:100})),Ir=!0)}function Rr(e){if(!e)return e;Ma();try{let t=Pr.parse(e);return typeof t=="string"?Ba(t):e}catch{return e}}function Ba(e){return e.replace(/`([^`\n]+)`/g,(t,n)=>Gt.yellow(n)).replace(/\*\*([^*\n]+)\*\*/g,(t,n)=>Gt.bold(n)).replace(/(^|[\s(])\*([^*\s][^*\n]*?)\*(?=[\s.,;:!?)]|$)/gm,(t,n,r)=>n+Gt.italic(r))}async function Ht(e={}){let t=process.cwd();if(!W(t))return;if(!process.stdout.isTTY&&!e.yes){c.error(`\`${p("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 Za(e.yes)){process.exitCode=1;return}if(e.yes)await B({embedded:!0});else{let u=await qa({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(at(u)){c.info("Cancelled.");return}u==="sync"?await B({embedded:!0}):u==="pull"&&await oe({embedded:!0})}let r=re(t);if(r.length===0){c.info(f.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(y=>y.priority!==null),d=u?r.filter(y=>y.priority==="high").map(y=>y.id):r.map(y=>y.id),m=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)",g=await Ha({message:`Which actions to process? ${r.length} pending \u2014${m}`,options:r.map(y=>({value:y.id,label:ge(y)})),initialValues:d,required:!1});if(at(g)){c.info("Cancelled \u2014 no actions processed.");return}if(!Array.isArray(g)||g.length===0){c.info("No actions selected. Nothing to do.");return}o=g}let i=0,s=0,a=0,l=Date.now();for(let u=0;u<o.length;u++){let d=o[u],m=r.find(x=>x.id===d);if(!m)continue;Ya({index:u+1,total:o.length,entry:m});let g=Ga(H(t),m.filename),y;try{y=Wa(g,"utf-8")}catch(x){c.error(` Could not read ${m.filename}: ${x.message}`),a++;continue}let R=Date.now(),I=await Qa({cwd:t,entry:m,actionContent:y,model:e.model}),F=Or(Date.now()-R);if(I.kind==="applied")try{await J(String(d),{silent:!0}),i++,c.message("");let x=I.summary?`
352
+ `+f.dim(" "+I.summary):"";c.message(` ${f.green("\u2713")} id ${d} ${f.dim("\u2014 applied in "+F)}${x}`)}catch(x){c.warn(` Applied but ack failed: ${x.message}. Run \`seoagent ack ${d}\` to retry.`)}else if(I.kind==="declined")try{await J(String(d),{silent:!0,failed:!0,reason:I.reason}),s++,c.message(""),c.message(` ${f.yellow("\u2298")} id ${d} ${f.dim("\u2014 declined: "+N(I.reason,100))}`)}catch(x){c.warn(` Could not ack decline: ${x.message}. Run \`seoagent ack ${d} --failed --reason "${I.reason.replace(/"/g,'\\"')}"\` to retry.`)}else a++,c.message(""),c.message(` ${f.red("\u2717")} id ${d} ${f.dim("\u2014 agent did not converge after "+F)}`)}Va({applied:i,declined:s,failed:a,total:o.length,elapsed:Or(Date.now()-l)})}function Ya(e){let{index:t,total:n,entry:r}=e,o=r.issue??r.action_type.replace(/^cli_/,"").replace(/_/g,"-"),i=r.severity??"unknown",s=Ja[i]??f.dim,a=[f.bold(`[${t}/${n}]`),f.dim("\xB7"),f.bold(`id ${r.id}`),f.dim("\xB7"),f.cyan(o),s(i)].join(" ");jr(r.title,a)}var Ja={critical:e=>f.red(f.bold(e)),high:f.red,medium:f.yellow,low:f.dim};function Va(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?f.green(`\u2713 ${t}/${o} applied`):f.green(`\u2713 ${t}/${o} applied \xB7 ${n} declined`);else if(s===0)a=f.red(`\u2717 0/${o} applied`);else{let l=[`${t}/${o} applied`];n>0&&l.push(`${n} declined`),r>0&&l.push(`${r} failed`),a=f.yellow(`\u25D0 ${l.join(" \xB7 ")}`)}jr(`${a}
353
+ ${f.dim("elapsed: "+i)}`,f.bold("Done"))}function Or(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 Xa(e){if(typeof e!="string"||!e)return null;let t=e.split(`
354
+ `);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 Qa(e){let{cwd:t,entry:n,actionContent:r,model:o}=e,i=cl(n,r);try{let s=za({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)tl(d,a)}else if(l.type==="user"){let u=l.message.content;if(Array.isArray(u))for(let d of u)ol(d,a)}else if(l.type==="result"){if(process.stdout.write(`
355
+ `),!(l.subtype==="success"&&!l.is_error))return{kind:"failed"};let d=Xa(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(`
356
+ `),c.error(` Agent error: ${s.message}`),{kind:"failed"}}}async function Za(e){let t=Wt();if(t==="env-key"||t==="enterprise"||t==="claude-session-likely")return c.info(f.dim(st[t].summary)),!0;if(c.warn(st[t].summary),c.message(` ${st[t].next}`),e)return!1;if(t==="not-installed"){let n=await Tr({message:"Install Claude Code globally now? (runs `npm install -g @anthropic-ai/claude-code`)",initialValue:!0});if(at(n)||!n)return c.info("Skipped install. Set up auth and re-run when ready."),!1;c.message(f.dim("Installing @anthropic-ai/claude-code globally\u2026"));let r=Cr();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=Wt()}if(t==="claude-installed-no-session"||t==="not-installed"){let n=await Tr({message:"Run `claude login` now to sign in?",initialValue:!0});if(at(n)||!n)return c.info("Skipped login. Run `claude login` when ready and try again."),!1;c.message(f.dim("Launching `claude login`\u2026"));let r=Ar();if(!r.ok)return c.error(`Login failed: ${r.error}`),!1}return!0}function el(e){return typeof e=="object"&&e!==null&&e.type==="text"&&typeof e.text=="string"}function tl(e,t){if(!e||typeof e!="object")return;let n=e.type;if(n==="text"&&el(e)){process.stdout.write(Rr(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=rl[o]??f.cyan,a=ll(o,i);process.stdout.write(s(nl)+" "+f.bold(o)+f.dim("(")+a+f.dim(")")+`
357
+ `);return}if(n==="thinking"){let r=e.thinking;typeof r=="string"&&r.trim()&&process.stdout.write(f.dim(f.italic(" "+N(r,200)))+`
358
+ `)}}var nl="\u23FA",Lr="\u23BF",rl={Read:f.blue,Glob:f.cyan,Grep:f.cyan,Edit:f.yellow,Write:f.magenta,Bash:f.green,WebFetch:f.magenta,WebSearch:f.magenta};function ol(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=il(s);if(n){process.stdout.write(f.red(` ${Lr} Error`)+`
359
+ `),a&&process.stdout.write(al(N(a,500)," ",f.red)+`
360
+ `);return}let l=sl(i,a,o?.input);l&&process.stdout.write(f.dim(` ${Lr} `)+l+`
361
+ `)}function il(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 sl(e,t,n){if(!e)return"";switch(e){case"Read":{let r=(t.match(/^\s*\d+→/gm)??[]).length,o=r>0?r:t.split(`
360
362
  `).filter(Boolean).length;return f.dim(`Read ${o} line${o===1?"":"s"}`)}case"Glob":{let r=t.split(`
361
363
  `).filter(o=>o.trim().length>0).length;return f.dim(`Found ${r} ${r===1?"entry":"entries"}`)}case"Grep":{let r=t.split(`
362
364
  `)[0]?.trim()??"";if(/^Found\s+\d+/.test(r))return f.dim(r);let o=t.split(`
363
- `).filter(i=>i.trim()).length;return f.dim(`${o} result${o===1?"":"s"}`)}case"Edit":case"Write":{let r=n?.file_path,o=e==="Edit"?"Updated":"Created";return f.dim(r?`${o} ${Nt(String(r))}`:o)}case"Bash":{let r=t.split(`
364
- `),o=r.slice(0,5).map(u=>F(u.trimEnd(),100)),i=r.length-5,s=o.join(`
365
+ `).filter(i=>i.trim()).length;return f.dim(`${o} result${o===1?"":"s"}`)}case"Edit":case"Write":{let r=n?.file_path,o=e==="Edit"?"Updated":"Created";return f.dim(r?`${o} ${Kt(String(r))}`:o)}case"Bash":{let r=t.split(`
366
+ `),o=r.slice(0,5).map(u=>N(u.trimEnd(),100)),i=r.length-5,s=o.join(`
365
367
  `)+(i>0?`
366
368
  \u2026 (+${i} more line${i===1?"":"s"})`:""),[a,...l]=s.split(`
367
369
  `);return l.length===0?f.dim(a):f.dim(a)+`
368
370
  `+f.dim(l.map(u=>" "+u).join(`
369
- `))}case"WebFetch":case"WebSearch":return f.dim(`Fetched ${F(t.replace(/\s+/g," "),80)}`);default:return""}}function _a(e,t,n){return e.split(`
371
+ `))}case"WebFetch":case"WebSearch":return f.dim(`Fetched ${N(t.replace(/\s+/g," "),80)}`);default:return""}}function al(e,t,n){return e.split(`
370
372
  `).map(r=>n(t+r)).join(`
371
- `)}function Ca(e,t){if(!t||typeof t!="object")return"";let n=t;switch(e){case"Read":case"Write":case"Edit":return f.dim(F(Nt(String(n.file_path??"")),80));case"Bash":return f.dim(F(String(n.command??""),80));case"Grep":{let r=String(n.pattern??""),o=n.path?` in ${Nt(String(n.path))}`:"";return f.dim(F(r+o,80))}case"Glob":return f.dim(F(String(n.pattern??""),80));case"WebFetch":return f.dim(F(String(n.url??""),80));case"WebSearch":return f.dim(F(String(n.query??""),80));default:return""}}function Nt(e){if(!e)return e;let t=process.cwd(),n=la(t,e);return n.startsWith("..")?e:n||e}function F(e,t){return e.length<=t?e:e.slice(0,t-1)+"\u2026"}function Ea(e,t){return`You are SEOAgent processing one inbox action from \`.seoagent/inbox/\`.
373
+ `)}function ll(e,t){if(!t||typeof t!="object")return"";let n=t;switch(e){case"Read":case"Write":case"Edit":return f.dim(N(Kt(String(n.file_path??"")),80));case"Bash":return f.dim(N(String(n.command??""),80));case"Grep":{let r=String(n.pattern??""),o=n.path?` in ${Kt(String(n.path))}`:"";return f.dim(N(r+o,80))}case"Glob":return f.dim(N(String(n.pattern??""),80));case"WebFetch":return f.dim(N(String(n.url??""),80));case"WebSearch":return f.dim(N(String(n.query??""),80));default:return""}}function Kt(e){if(!e)return e;let t=process.cwd(),n=Ka(t,e);return n.startsWith("..")?e:n||e}function N(e,t){return e.length<=t?e:e.slice(0,t-1)+"\u2026"}function cl(e,t){return`You are SEOAgent processing one inbox action from \`.seoagent/inbox/\`.
372
374
 
373
375
  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.
374
376
 
@@ -387,19 +389,19 @@ Action file (\`.seoagent/inbox/${e.filename}\`):
387
389
  \`\`\`
388
390
  ${t}
389
391
  \`\`\`
390
- `}import{spinner as Ia}from"@clack/prompts";import y from"picocolors";var Aa=new Set(["on","off","status"]);async function Te(e,t={}){let n=(e||"").toLowerCase();if(!Aa.has(n)){c.error(`Usage: seoagent autopilot <on|off|status> (got "${e}")`),process.exitCode=1;return}let r=E();if(!r){c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}let o=t.apiBase||r.api_base||b.BASE,i=`Bearer ${r.user_token}:${r.website_token}`,a=!!process.stdout.isTTY?Ia():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(x){w(a,"error",`Network error: ${x.message}`,y.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 O=C(process.cwd())?.domain??"",_=`${b.PRICING}?ref=cli${O?`&domain=${encodeURIComponent(O)}`:""}`;w(a,"warn","CLI autopilot is a paid feature.",y.yellow("Autopilot is a paid feature.")),c.message(Pa(_)),process.exitCode=1;return}if(!u.ok||d?.status!=="ok"||!d.autopilot){w(a,"error",`Server rejected request (${u.status})${d?.error?`: ${d.error}`:""}`,y.red(`Server rejected request (${u.status}).`)),process.exitCode=1;return}let{enabled:m,delivery_mode:g}=d.autopilot;if(n==="on"){a?.stop(y.green("Autopilot enabled.")),c.message(Ut({enabled:!0,deliveryMode:g,action:n}));return}if(n==="off"){a?.stop(y.dim("Autopilot disabled.")),c.message(Ut({enabled:!1,deliveryMode:g,action:n}));return}a?.stop(y.dim("Status:")),c.message(Ut({enabled:m,deliveryMode:g,action:n}))}function Ut(e){let n=s=>y.dim(s.padEnd(11)),r=e.enabled?`${y.bold(y.green("\u25CF ON"))} ${y.dim("(queueing fixes for your coding agent)")}`:`${y.dim("\u25CB OFF")} ${y.dim("(no new suggestions will be queued)")}`,o=[{content:`${n("Status:")}${r}`}];e.enabled&&e.deliveryMode&&o.push({content:`${n("Mode:")}${y.dim(e.deliveryMode)}`}),o.push({sep:!0}),e.enabled?(o.push({content:`${y.dim("Apply queued fixes:")} ${y.cyan(p("sync"))}`}),o.push({content:`${y.dim("Turn off any time:")} ${y.cyan(p("autopilot off"))}`})):(o.push({content:`${y.dim("Enable (paid):")} ${y.cyan(p("autopilot on"))}`}),o.push({content:y.dim("Queues SEO fixes for your coding agent to apply on each sync.")}));let i=`${y.bold(y.cyan("SEOAgent"))} ${y.dim("\xB7")} ${y.dim("autopilot")}`;return R(o,{width:78,title:i})}function Pa(e){let t=[{content:y.bold(y.yellow("Autopilot is a paid feature."))},{sep:!0},{content:y.dim("SEOAgent continuously audits your site and queues fixes for")},{content:y.dim("your coding agent to apply on each `sync` \u2014 you stay in the")},{content:y.dim("loop; nothing is auto-applied.")},{sep:!0},{content:`${y.dim("Upgrade:")} ${y.cyan(e)}`}],n=`${y.bold(y.cyan("SEOAgent"))} ${y.dim("\xB7")} ${y.dim("autopilot")}`;return R(t,{width:78,title:n})}import{mkdirSync as Wa,writeFileSync as Ga}from"fs";import{join as Dt}from"path";import{readdirSync as Ra,readFileSync as Ta,statSync as yr}from"fs";import{join as Oa}from"path";var La=new Set(["html","htm","md","mdx","markdown","mdoc","tsx","jsx","ts","js","astro","vue","svelte"]),ja=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"]),Na=new Set(["node_modules",".git",".next","dist","build",".vercel","out",".seoagent"]),Fa=5e3,Ua=512*1024;function Sr(e){return e?e.trim().toLowerCase().replace(/^sc-domain:/,"").replace(/^https?:\/\//,"").replace(/^www\./,"").replace(/\/.*$/,""):null}function wr(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&&ja.has(r.slice(o+1).toLowerCase())?null:(n=n.replace(/\/+$/,""),n===""?"/":n)}var kr=/\bhref\s*=\s*(?:"([^"]*)"|'([^']*)'|\{\s*[`'"]([^`'"]*)[`'"]\s*\})/gi,br=/\]\(\s*([^)\s]+)/g;function Da(e,t){if(!e)return[];let n=Sr(t),r=[],o;for(kr.lastIndex=0;(o=kr.exec(e))!==null;){let i=o[1]??o[2]??o[3]??"",s=wr(i,n);s&&r.push(s)}for(br.lastIndex=0;(o=br.exec(e))!==null;){let i=wr(o[1],n);i&&r.push(i)}return r}function Ba(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 vr(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(`
391
- `),o=["# Internal Links","",`Internal link analysis of the pages discovered in this repo${t?` (${Sr(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(`
392
+ `}import{spinner as ul}from"@clack/prompts";import w from"picocolors";var dl=new Set(["on","off","status"]);async function je(e,t={}){let n=(e||"").toLowerCase();if(!dl.has(n)){c.error(`Usage: seoagent autopilot <on|off|status> (got "${e}")`),process.exitCode=1;return}let r=A();if(!r){c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}let o=t.apiBase||r.api_base||S.BASE,i=`Bearer ${r.user_token}:${r.website_token}`,a=!!process.stdout.isTTY?ul():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(y){k(a,"error",`Network error: ${y.message}`,w.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 R=C(process.cwd())?.domain??"",I=`${S.PRICING}?ref=cli${R?`&domain=${encodeURIComponent(R)}`:""}`;k(a,"warn","CLI autopilot is a paid feature.",w.yellow("Autopilot is a paid feature.")),c.message(pl(I)),process.exitCode=1;return}if(!u.ok||d?.status!=="ok"||!d.autopilot){k(a,"error",`Server rejected request (${u.status})${d?.error?`: ${d.error}`:""}`,w.red(`Server rejected request (${u.status}).`)),process.exitCode=1;return}let{enabled:m,delivery_mode:g}=d.autopilot;if(n==="on"){a?.stop(w.green("Autopilot enabled.")),c.message(qt({enabled:!0,deliveryMode:g,action:n}));return}if(n==="off"){a?.stop(w.dim("Autopilot disabled.")),c.message(qt({enabled:!1,deliveryMode:g,action:n}));return}a?.stop(w.dim("Status:")),c.message(qt({enabled:m,deliveryMode:g,action:n}))}function qt(e){let n=s=>w.dim(s.padEnd(11)),r=e.enabled?`${w.bold(w.green("\u25CF ON"))} ${w.dim("(queueing fixes for your coding agent)")}`:`${w.dim("\u25CB OFF")} ${w.dim("(no new suggestions will be queued)")}`,o=[{content:`${n("Status:")}${r}`}];e.enabled&&e.deliveryMode&&o.push({content:`${n("Mode:")}${w.dim(e.deliveryMode)}`}),o.push({sep:!0}),e.enabled?(o.push({content:`${w.dim("Apply queued fixes:")} ${w.cyan(p("sync"))}`}),o.push({content:`${w.dim("Turn off any time:")} ${w.cyan(p("autopilot off"))}`})):(o.push({content:`${w.dim("Enable (paid):")} ${w.cyan(p("autopilot on"))}`}),o.push({content:w.dim("Queues SEO fixes for your coding agent to apply on each sync.")}));let i=`${w.bold(w.cyan("SEOAgent"))} ${w.dim("\xB7")} ${w.dim("autopilot")}`;return L(o,{width:78,title:i})}function pl(e){let t=[{content:w.bold(w.yellow("Autopilot is a paid feature."))},{sep:!0},{content:w.dim("SEOAgent continuously audits your site and queues fixes for")},{content:w.dim("your coding agent to apply on each `sync` \u2014 you stay in the")},{content:w.dim("loop; nothing is auto-applied.")},{sep:!0},{content:`${w.dim("Upgrade:")} ${w.cyan(e)}`}],n=`${w.bold(w.cyan("SEOAgent"))} ${w.dim("\xB7")} ${w.dim("autopilot")}`;return L(t,{width:78,title:n})}import{mkdirSync as xl,writeFileSync as _l}from"fs";import{join as zt}from"path";import{readdirSync as ml,readFileSync as fl,statSync as Nr}from"fs";import{join as gl}from"path";var hl=new Set(["html","htm","md","mdx","markdown","mdoc","tsx","jsx","ts","js","astro","vue","svelte"]),yl=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"]),wl=new Set(["node_modules",".git",".next","dist","build",".vercel","out",".seoagent"]),kl=5e3,bl=512*1024;function Br(e){return e?e.trim().toLowerCase().replace(/^sc-domain:/,"").replace(/^https?:\/\//,"").replace(/^www\./,"").replace(/\/.*$/,""):null}function Fr(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&&yl.has(r.slice(o+1).toLowerCase())?null:(n=n.replace(/\/+$/,""),n===""?"/":n)}var Ur=/\bhref\s*=\s*(?:"([^"]*)"|'([^']*)'|\{\s*[`'"]([^`'"]*)[`'"]\s*\})/gi,Dr=/\]\(\s*([^)\s]+)/g;function $l(e,t){if(!e)return[];let n=Br(t),r=[],o;for(Ur.lastIndex=0;(o=Ur.exec(e))!==null;){let i=o[1]??o[2]??o[3]??"",s=Fr(i,n);s&&r.push(s)}for(Dr.lastIndex=0;(o=Dr.exec(e))!==null;){let i=Fr(o[1],n);i&&r.push(i)}return r}function Sl(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 Wr(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(`
393
+ `),o=["# Internal Links","",`Internal link analysis of the pages discovered in this repo${t?` (${Br(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(`
392
394
  `),i=e.orphans.length===0?`## Orphan pages
393
395
 
394
- 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=>`| ${$r(a.url)} | \u2014 |`)].join(`
395
- `),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=>`| ${$r(a.url)} | ${a.inbound} |`)].join(`
396
+ 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=>`| ${Mr(a.url)} | \u2014 |`)].join(`
397
+ `),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=>`| ${Mr(a.url)} | ${a.inbound} |`)].join(`
396
398
  `);return[r,"",o,"",i,s,""].join(`
397
- `)}function $r(e){return e.replace(/\r?\n/g," ").replace(/\|/g,"/").trim()}function*Ma(e){let t=0;function*n(r){let o;try{o=Ra(r,{withFileTypes:!0})}catch{return}for(let i of o){if(t>=Fa)return;if(i.name.startsWith("."))continue;let s=Oa(r,i.name);if(i.isDirectory()){if(Na.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(!La.has(l))continue;t++,yield s}}}yield*n(e)}function xr(e,t){let{pages:n}=Ye(e,t),r=[],o=0,i=!1;try{i=yr(e).isDirectory()}catch{i=!1}if(i)for(let s of Ma(e)){let a;try{if(yr(s).size>Ua)continue;a=Ta(s,"utf-8")}catch{continue}o++;for(let l of Da(a,t))r.push(l)}return Ba(n,r,o)}function Oe(e={}){let t=process.cwd(),n=M(t);if(!n)return;let r=n.domain&&n.domain!=="unknown"?n.domain:null,o=xr(t,r);if(e.json){process.stdout.write(JSON.stringify(o,null,2)+`
398
- `);return}let i=Dt(t,S);Wa(i,{recursive:!0});let s=Dt(i,"internal-links.md");if(Ga(s,vr(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 ${Dt(S,"internal-links.md")}`)}import{spinner as Er}from"@clack/prompts";import h from"picocolors";var Ir={easy_win:"easy win",striking_distance:"striking distance",competitor_gap:"competitor gap",defend:"defend",low_priority:"low priority"};async function Ka(e){let t=process.cwd(),n=tn(t);if(!n){c.error(`No .seoagent/project.md found. Run \`${p("init")}\` first.`),process.exitCode=1;return}let r=C(t),o=r?.domain&&r.domain!=="unknown"?r.domain:void 0,i=(e.apiBase||b.BASE).replace(/\/$/,""),a=!!process.stdout.isTTY&&!e.json?Er():null;a?.start(`Looking up ${h.bold(`"${e.keyword}"`)} ${h.dim("via DataForSEO (free peek)\u2026")}`);let l;try{l=await ue(`${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}`,h.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})+`
399
- `);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}.`,h.yellow(`Daily peek quota reached for ${d}.`)),c.message(_r()),process.exitCode=1;return}if(!l.ok||!u){w(a,"error",`Peek failed (${l.status})${u?.error?`: ${u.error}`:""}`,h.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.",h.yellow("Real keyword data is temporarily unavailable. Try again later.")),c.message(h.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.",h.yellow("Real keyword data is not enabled on the server yet."));return}if(!u.opportunity){w(a,"warn",`No data returned for "${e.keyword}".`,h.yellow(`No data returned for "${e.keyword}".`));return}a?.stop(h.green("Got it.")),c.message(Ha(u.opportunity)),u.remaining&&c.message(`${h.dim("Peeks remaining today:")} ${h.bold(String(u.remaining.install))} ${h.dim("\u2014 "+_r())}`)}function Ha(e){let n=u=>h.dim(u.padEnd(14)),r=e.volume!=null?h.bold(String(e.volume)):h.dim("n/a"),o=e.difficulty!=null?`${h.bold(String(e.difficulty))} ${h.dim(za(e.difficulty))}`:h.dim("n/a"),i=Ir[e.opportunity]??e.opportunity,s=e.opportunity==="easy_win"?h.bold(h.green(i)):e.opportunity==="striking_distance"?h.bold(h.cyan(i)):e.opportunity==="competitor_gap"?h.bold(h.yellow(i)):h.dim(i),a=[{content:`${h.green("\u25CF")} ${h.bold(e.keyword)}`},{sep:!0},{content:`${n("Volume:")}${r} ${h.dim("/mo")}`},{content:`${n("Difficulty:")}${o}`},{content:`${n("Opportunity:")}${s}`}],l=`${h.bold(h.cyan("Keyword peek"))}`;return R(a,{width:55,title:l})}function za(e){return e<=20?"easy":e<=40?"moderate":e<=60?"hard":"very hard"}function _r(e=E()){return e?`You're logged in \u2014 run \`${p("keywords")}\` for full enrichment (no quota), or \`${p("keywords --discover")}\` / \`${p("keywords --competitors")}\` (paid).`:`Log in for the full top-25 enrichment, no quota: ${p("login")}`}function Cr(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 [${Ir[n.opportunity]??n.opportunity}] ${n.keyword} \u2014 ${r}, ${o}${i}`)}}}function Ya(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 q(e={}){if(e.peek&&e.peek.trim().length>0){await Ka({keyword:e.peek.trim(),apiBase:e.apiBase,json:e.json});return}let t=E();if(!t){c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}let n=e.apiBase||t.api_base||b.BASE,r=`Bearer ${t.user_token}:${t.website_token}`,o=e.competitors?"competitors":e.discover?"discover":"enrich",i=o==="competitors"?"/api/cli/keywords/competitors":o==="discover"?"/api/cli/keywords/discover":"/api/cli/keywords/enrich",s=o==="competitors"?"Finding keywords your competitors rank for\u2026":o==="discover"?"Discovering new keywords to target\u2026":"Enriching keywords with real volume + difficulty\u2026",l=!!process.stdout.isTTY?Er():null;l?.start(s);let u;try{u=await ue(`${n}${i}`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:r},body:"{}"})}catch(g){w(l,"error",`Network error: ${g.message}`,h.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"){w(l,"warn",o==="competitors"?"Competitor gap analysis is a paid feature.":"Keyword discovery is a paid feature.",h.yellow("Paid feature \u2014 upgrade to continue.")),c.message(o==="competitors"?`Upgrade to see which keywords competitors rank for that you don't: ${h.cyan(b.PRICING)}`:`Upgrade to find new keywords to target: ${h.cyan(b.PRICING)}`),process.exitCode=1;return}if(!u.ok||d?.status!=="ok"){w(l,"error",`Server rejected request (${u.status})${d?.error?`: ${d.error}`:""}`,h.red(`Server rejected request (${u.status}).`)),process.exitCode=1;return}if(d.skipped==="no-keywords"||d.skipped==="no-seeds"){w(l,"warn","No keywords yet. Run the keyword strategy (Phase 2) first, then try again.",h.yellow("No keywords yet."));return}if(d.skipped==="no-competitors"){w(l,"warn","No competitors found yet. Add competitors or run strategy discovery first, then try again.",h.yellow("No competitors yet."));return}if(d.skipped==="no-creds"||d.skipped==="no-columns"||d.skipped==="no-table"){w(l,"warn","Real keyword data isn\u2019t enabled on the server yet \u2014 try again later.",h.yellow("Real keyword data is not enabled on the server yet."));return}if(d.skipped){w(l,"warn",`Skipped: ${d.skipped}`,h.yellow(`Skipped: ${d.skipped}`));return}if(o==="competitors"){let g=d.gaps??0;w(l,"success",`Found ${g} competitor gap${g===1?"":"s"} across ${d.competitors?.length??0} competitor${d.competitors?.length===1?"":"s"} (added as "suggested").`,h.green(`${g} competitor gap${g===1?"":"s"} found.`)),Ya(d.topGaps??[]),c.message(`Review them in ${h.cyan(".seoagent/keywords.md")} and promote the ones you want into a cluster.`);return}if(o==="discover"){let g=d.discovered??0;w(l,"success",`Discovered ${g} new keyword${g===1?"":"s"} to target (added as "suggested").`,h.green(`${g} new keyword${g===1?"":"s"} discovered.`)),Cr(d.opportunities??[]),c.message(`Review them in ${h.cyan(".seoagent/keywords.md")} and promote the ones you want into a cluster.`);return}let m=d.enriched??0;w(l,"success",`Enriched ${m} keyword${m===1?"":"s"}.`,h.green(`Enriched ${m} keyword${m===1?"":"s"}.`)),Cr(d.opportunities??[]),d.paid||c.message(`${h.dim("Free plan:")} enriched up to ${h.bold(String(d.cap??25))} keywords. ${h.dim("Upgrade for full enrichment + discovery + competitor gap:")} ${h.cyan(b.PRICING)}`)}import v from"picocolors";import{existsSync as qa,readFileSync as Va}from"fs";import{join as Ja}from"path";var Ar=["openai","fal","replicate"],me={openai:["OPENAI_API_KEY"],fal:["FAL_KEY","FAL_API_KEY"],replicate:["REPLICATE_API_TOKEN","REPLICATE_API_KEY"]};function Xa(e){let t={};if(!qa(e))return t;let n=Va(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 Pr(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 ne){let o=Ja(e,r),i=Xa(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(...Ar.map(a=>me[a])),n=Pr(e,t),r=[];for(let a of Ar)me[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=me[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 Rr(e,t){let n=Pr(e,me[t]);for(let r of me[t])if(n.found[r])return{key:n.found[r].value,envName:r};return null}function Tr(){return me}function Le(e={}){let t=process.cwd(),n=C(t),r=nt(t);if(e.json){process.stdout.write(JSON.stringify(r,null,2)+`
400
- `);return}if(c.message(Qa(r)),!n){c.warn(`No SEOAgent project here. Run \`${p("init")}\` first to persist the provider.`);return}ye(t,{image_provider:r.provider}),c.info(`Saved to ${v.cyan(".seoagent/project.md")} ${v.dim(`(image_provider: ${r.provider})`)}`)}function Qa(e){let n=i=>v.dim(i.padEnd(12)),r=[];if(e.provider==="none"){r.push({content:`${v.dim("\u25CB")} ${v.bold(v.yellow("No image provider detected"))}`}),r.push({sep:!0}),r.push({content:v.dim("Set ONE of these to enable image generation:")});let i=Tr();for(let s of Object.keys(i))r.push({content:`${n(s+":")}${v.cyan(i[s].join(" or "))}`});r.push({sep:!0}),r.push({content:v.dim("Add to your shell, .env.local, or .env, then re-run:")}),r.push({content:` ${v.cyan(p("env-check"))}`})}else{r.push({content:`${v.green("\u2713")} ${v.dim("Image provider:")} ${v.bold(v.green(e.provider))}`}),r.push({sep:!0}),e.matched_key&&r.push({content:`${n("Key:")}${v.bold(e.matched_key)}`}),e.source&&r.push({content:`${n("Source:")}${v.cyan(e.source)}`});let i=e.available_providers.filter(s=>s!==e.provider);i.length>0&&r.push({content:`${n("Available:")}${v.dim(i.join(", "))}`})}let o=`${v.bold(v.cyan("SEOAgent"))} ${v.dim("\xB7")} ${v.dim("env-check")}`;return R(r,{width:64,title:o})}import{existsSync as Mt,mkdirSync as jr,writeFileSync as Nr}from"fs";import{dirname as ot,isAbsolute as rl,join as rt,resolve as ol}from"path";import{tmpdir as il}from"os";import{spinner as sl}from"@clack/prompts";import I from"picocolors";import{Buffer as Or}from"buffer";async function Bt(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 Or.from(n)}async function Za(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:Or.from(o.b64_json,"base64"),contentType:"image/png"};if(o.url)return{bytes:await Bt(o.url),contentType:"image/png"};throw new Error("OpenAI image API returned neither b64_json nor url")}async function el(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 Bt(o.url),contentType:o.content_type??"image/png"}}async function tl(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 nl(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 tl(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 Bt(o),contentType:"image/png",providerImageId:r.id}}async function Lr(e,t){switch(e){case"openai":return Za(t);case"fal":return el(t);case"replicate":return nl(t);default:throw new Error(`Unknown image provider: ${e}`)}}function al(e){return e==="openai"||e==="fal"||e==="replicate"}async function je(e={}){let t=process.cwd();if(!e.prompt){c.warn(`Missing --prompt. Example: ${p('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=C(t),r=null;if(e.provider){if(!al(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=nt(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 \`${p("env-check")}\`.`),process.exitCode=1;return}let o=Rr(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=rl(e.out)?e.out:ol(t,e.out),a=!e.silent&&!!process.stdout.isTTY?sl():null;a?.start(`Generating image with ${I.bold(r)} ${I.dim(`(${o.envName})`)}\u2026`);try{let l=await Lr(r,{prompt:e.prompt,apiKey:o.key,size:e.size});Mt(ot(i))||jr(ot(i),{recursive:!0}),Nr(i,l.bytes),e.silent||w(a,"success",`Wrote ${i} (${l.bytes.length} bytes, ${l.contentType}).`,I.green(`Wrote ${i} ${I.dim(`(${l.bytes.length} bytes, ${l.contentType})`)}`))}catch(l){a?.stop(I.red("Image generation failed."));let u=cl(t,{provider:r,envName:o.envName,prompt:e.prompt,size:e.size,outPath:i,error:l});c.message(ll({provider:r,envName:o.envName,prompt:e.prompt,size:e.size,message:l.message})),u&&c.message(`${I.dim("Full error log:")} ${I.cyan(u)}`),process.exitCode=1}}function ll(e){let n=d=>I.dim(d.padEnd(10)),o=e.prompt.length>54?`${e.prompt.slice(0,53)}\u2026`:e.prompt,i=[{content:`${I.red("\u2717")} ${I.bold(I.red("Image generation failed"))}`},{sep:!0},{content:`${n("Provider:")}${I.bold(e.provider)}`},{content:`${n("Key:")}${e.envName}`},{content:`${n("Prompt:")}${I.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:I.red(l)});let u=`${I.bold(I.cyan("SEOAgent"))} ${I.dim("\xB7")} ${I.dim("generate-image")}`;return R(i,{width:70,title:u})}function cl(e,t){let r=`seoagent-generate-image-${new Date().toISOString().replace(/[:.]/g,"-")}.log`,o=rt(e,S),i=rt(o,".errors"),s=Mt(o)?rt(i,r):rt(il(),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 Mt(ot(s))||jr(ot(s),{recursive:!0}),Nr(s,a.join(`
401
- `)),s}catch{return null}}import T from"picocolors";async function Ne(e={}){let t=E();if(!t){e.json?process.stdout.write(`${JSON.stringify({logged_in:!1})}
402
- `):c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}let n=(e.apiBase||t.api_base||b.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})}
399
+ `)}function Mr(e){return e.replace(/\r?\n/g," ").replace(/\|/g,"/").trim()}function*vl(e){let t=0;function*n(r){let o;try{o=ml(r,{withFileTypes:!0})}catch{return}for(let i of o){if(t>=kl)return;if(i.name.startsWith("."))continue;let s=gl(r,i.name);if(i.isDirectory()){if(wl.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(!hl.has(l))continue;t++,yield s}}}yield*n(e)}function Gr(e,t){let{pages:n}=Ve(e,t),r=[],o=0,i=!1;try{i=Nr(e).isDirectory()}catch{i=!1}if(i)for(let s of vl(e)){let a;try{if(Nr(s).size>bl)continue;a=fl(s,"utf-8")}catch{continue}o++;for(let l of $l(a,t))r.push(l)}return Sl(n,r,o)}function Ne(e={}){let t=process.cwd(),n=W(t);if(!n)return;let r=n.domain&&n.domain!=="unknown"?n.domain:null,o=Gr(t,r);if(e.json){process.stdout.write(JSON.stringify(o,null,2)+`
400
+ `);return}let i=zt(t,$);xl(i,{recursive:!0});let s=zt(i,"internal-links.md");if(_l(s,Wr(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 ${zt($,"internal-links.md")}`)}import{spinner as qr}from"@clack/prompts";import h from"picocolors";var zr={easy_win:"easy win",striking_distance:"striking distance",competitor_gap:"competitor gap",defend:"defend",low_priority:"low priority"};async function El(e){let t=process.cwd(),n=dn(t);if(!n){c.error(`No .seoagent/project.md found. Run \`${p("init")}\` first.`),process.exitCode=1;return}let r=C(t),o=r?.domain&&r.domain!=="unknown"?r.domain:void 0,i=(e.apiBase||S.BASE).replace(/\/$/,""),a=!!process.stdout.isTTY&&!e.json?qr():null;a?.start(`Looking up ${h.bold(`"${e.keyword}"`)} ${h.dim("via DataForSEO (free peek)\u2026")}`);let l;try{l=await K(`${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){k(a,"error",`Network error: ${d.message}`,h.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})+`
401
+ `);return}if(l.status===429||u?.skipped?.startsWith("rate-limited")){let d=u?.skipped==="rate-limited:ip"?"this network":"this install";k(a,"warn",`Daily peek quota reached for ${d}.`,h.yellow(`Daily peek quota reached for ${d}.`)),c.message(Kr()),process.exitCode=1;return}if(!l.ok||!u){k(a,"error",`Peek failed (${l.status})${u?.error?`: ${u.error}`:""}`,h.red(`Peek failed (${l.status}).`)),process.exitCode=1;return}if(u.skipped==="provider-quota"){k(a,"warn","Real keyword data is temporarily unavailable. Try again later.",h.yellow("Real keyword data is temporarily unavailable. Try again later.")),c.message(h.dim("No action needed on your side \u2014 the maintainer has been notified."));return}if(u.skipped==="no-creds"||u.skipped==="no-table"){k(a,"warn","Real keyword data isn\u2019t enabled on the server yet \u2014 try again later.",h.yellow("Real keyword data is not enabled on the server yet."));return}if(!u.opportunity){k(a,"warn",`No data returned for "${e.keyword}".`,h.yellow(`No data returned for "${e.keyword}".`));return}a?.stop(h.green("Got it.")),c.message(Cl(u.opportunity)),u.remaining&&c.message(`${h.dim("Peeks remaining today:")} ${h.bold(String(u.remaining.install))} ${h.dim("\u2014 "+Kr())}`)}function Cl(e){let n=u=>h.dim(u.padEnd(14)),r=e.volume!=null?h.bold(String(e.volume)):h.dim("n/a"),o=e.difficulty!=null?`${h.bold(String(e.difficulty))} ${h.dim(Al(e.difficulty))}`:h.dim("n/a"),i=zr[e.opportunity]??e.opportunity,s=e.opportunity==="easy_win"?h.bold(h.green(i)):e.opportunity==="striking_distance"?h.bold(h.cyan(i)):e.opportunity==="competitor_gap"?h.bold(h.yellow(i)):h.dim(i),a=[{content:`${h.green("\u25CF")} ${h.bold(e.keyword)}`},{sep:!0},{content:`${n("Volume:")}${r} ${h.dim("/mo")}`},{content:`${n("Difficulty:")}${o}`},{content:`${n("Opportunity:")}${s}`}],l=`${h.bold(h.cyan("Keyword peek"))}`;return L(a,{width:55,title:l})}function Al(e){return e<=20?"easy":e<=40?"moderate":e<=60?"hard":"very hard"}function Kr(e=A()){return e?`You're logged in \u2014 run \`${p("keywords")}\` for full enrichment (no quota), or \`${p("keywords --discover")}\` / \`${p("keywords --competitors")}\` (paid).`:`Log in for the full top-25 enrichment, no quota: ${p("login")}`}function Hr(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 [${zr[n.opportunity]??n.opportunity}] ${n.keyword} \u2014 ${r}, ${o}${i}`)}}}function Il(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 V(e={}){if(e.peek&&e.peek.trim().length>0){await El({keyword:e.peek.trim(),apiBase:e.apiBase,json:e.json});return}let t=A();if(!t){c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}let n=e.apiBase||t.api_base||S.BASE,r=`Bearer ${t.user_token}:${t.website_token}`,o=e.competitors?"competitors":e.discover?"discover":"enrich",i=o==="competitors"?"/api/cli/keywords/competitors":o==="discover"?"/api/cli/keywords/discover":"/api/cli/keywords/enrich",s=o==="competitors"?"Finding keywords your competitors rank for\u2026":o==="discover"?"Discovering new keywords to target\u2026":"Enriching keywords with real volume + difficulty\u2026",l=!!process.stdout.isTTY?qr():null;l?.start(s);let u;try{u=await K(`${n}${i}`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:r},body:"{}"})}catch(g){k(l,"error",`Network error: ${g.message}`,h.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"){k(l,"warn",o==="competitors"?"Competitor gap analysis is a paid feature.":"Keyword discovery is a paid feature.",h.yellow("Paid feature \u2014 upgrade to continue.")),c.message(o==="competitors"?`Upgrade to see which keywords competitors rank for that you don't: ${h.cyan(S.PRICING)}`:`Upgrade to find new keywords to target: ${h.cyan(S.PRICING)}`),process.exitCode=1;return}if(!u.ok||d?.status!=="ok"){k(l,"error",`Server rejected request (${u.status})${d?.error?`: ${d.error}`:""}`,h.red(`Server rejected request (${u.status}).`)),process.exitCode=1;return}if(d.skipped==="no-keywords"||d.skipped==="no-seeds"){k(l,"warn","No keywords yet. Run the keyword strategy (Phase 2) first, then try again.",h.yellow("No keywords yet."));return}if(d.skipped==="no-competitors"){k(l,"warn","No competitors found yet. Add competitors or run strategy discovery first, then try again.",h.yellow("No competitors yet."));return}if(d.skipped==="no-creds"||d.skipped==="no-columns"||d.skipped==="no-table"){k(l,"warn","Real keyword data isn\u2019t enabled on the server yet \u2014 try again later.",h.yellow("Real keyword data is not enabled on the server yet."));return}if(d.skipped){k(l,"warn",`Skipped: ${d.skipped}`,h.yellow(`Skipped: ${d.skipped}`));return}if(o==="competitors"){let g=d.gaps??0;k(l,"success",`Found ${g} competitor gap${g===1?"":"s"} across ${d.competitors?.length??0} competitor${d.competitors?.length===1?"":"s"} (added as "suggested").`,h.green(`${g} competitor gap${g===1?"":"s"} found.`)),Il(d.topGaps??[]),c.message(`Review them in ${h.cyan(".seoagent/keywords.md")} and promote the ones you want into a cluster.`);return}if(o==="discover"){let g=d.discovered??0;k(l,"success",`Discovered ${g} new keyword${g===1?"":"s"} to target (added as "suggested").`,h.green(`${g} new keyword${g===1?"":"s"} discovered.`)),Hr(d.opportunities??[]),c.message(`Review them in ${h.cyan(".seoagent/keywords.md")} and promote the ones you want into a cluster.`);return}let m=d.enriched??0;k(l,"success",`Enriched ${m} keyword${m===1?"":"s"}.`,h.green(`Enriched ${m} keyword${m===1?"":"s"}.`)),Hr(d.opportunities??[]),d.paid||c.message(`${h.dim("Free plan:")} enriched up to ${h.bold(String(d.cap??25))} keywords. ${h.dim("Upgrade for full enrichment + discovery + competitor gap:")} ${h.cyan(S.PRICING)}`)}import _ from"picocolors";import{existsSync as Pl,readFileSync as Rl}from"fs";import{join as Tl}from"path";var Yr=["openai","fal","replicate"],ye={openai:["OPENAI_API_KEY"],fal:["FAL_KEY","FAL_API_KEY"],replicate:["REPLICATE_API_TOKEN","REPLICATE_API_KEY"]};function Ol(e){let t={};if(!Pl(e))return t;let n=Rl(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 Jr(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 ie){let o=Tl(e,r),i=Ol(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 lt(e){let t=[].concat(...Yr.map(a=>ye[a])),n=Jr(e,t),r=[];for(let a of Yr)ye[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=ye[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 Vr(e,t){let n=Jr(e,ye[t]);for(let r of ye[t])if(n.found[r])return{key:n.found[r].value,envName:r};return null}function Xr(){return ye}function Fe(e={}){let t=process.cwd(),n=C(t),r=lt(t);if(e.json){process.stdout.write(JSON.stringify(r,null,2)+`
402
+ `);return}if(c.message(Ll(r)),!n){c.warn(`No SEOAgent project here. Run \`${p("init")}\` first to persist the provider.`);return}$e(t,{image_provider:r.provider}),c.info(`Saved to ${_.cyan(".seoagent/project.md")} ${_.dim(`(image_provider: ${r.provider})`)}`)}function Ll(e){let n=i=>_.dim(i.padEnd(12)),r=[];if(e.provider==="none"){r.push({content:`${_.dim("\u25CB")} ${_.bold(_.yellow("No image provider detected"))}`}),r.push({sep:!0}),r.push({content:_.dim("Set ONE of these to enable image generation:")});let i=Xr();for(let s of Object.keys(i))r.push({content:`${n(s+":")}${_.cyan(i[s].join(" or "))}`});r.push({sep:!0}),r.push({content:_.dim("Add to your shell, .env.local, or .env, then re-run:")}),r.push({content:` ${_.cyan(p("env-check"))}`})}else{r.push({content:`${_.green("\u2713")} ${_.dim("Image provider:")} ${_.bold(_.green(e.provider))}`}),r.push({sep:!0}),e.matched_key&&r.push({content:`${n("Key:")}${_.bold(e.matched_key)}`}),e.source&&r.push({content:`${n("Source:")}${_.cyan(e.source)}`});let i=e.available_providers.filter(s=>s!==e.provider);i.length>0&&r.push({content:`${n("Available:")}${_.dim(i.join(", "))}`})}let o=`${_.bold(_.cyan("SEOAgent"))} ${_.dim("\xB7")} ${_.dim("env-check")}`;return L(r,{width:64,title:o})}import{existsSync as Jt,mkdirSync as eo,writeFileSync as to}from"fs";import{dirname as ut,isAbsolute as Dl,join as ct,resolve as Ml}from"path";import{tmpdir as Bl}from"os";import{spinner as Wl}from"@clack/prompts";import P from"picocolors";import{Buffer as Qr}from"buffer";async function Yt(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 Qr.from(n)}async function jl(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:Qr.from(o.b64_json,"base64"),contentType:"image/png"};if(o.url)return{bytes:await Yt(o.url),contentType:"image/png"};throw new Error("OpenAI image API returned neither b64_json nor url")}async function Nl(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 Yt(o.url),contentType:o.content_type??"image/png"}}async function Fl(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 Ul(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 Fl(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 Yt(o),contentType:"image/png",providerImageId:r.id}}async function Zr(e,t){switch(e){case"openai":return jl(t);case"fal":return Nl(t);case"replicate":return Ul(t);default:throw new Error(`Unknown image provider: ${e}`)}}function Gl(e){return e==="openai"||e==="fal"||e==="replicate"}async function Ue(e={}){let t=process.cwd();if(!e.prompt){c.warn(`Missing --prompt. Example: ${p('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=C(t),r=null;if(e.provider){if(!Gl(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=lt(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 \`${p("env-check")}\`.`),process.exitCode=1;return}let o=Vr(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=Dl(e.out)?e.out:Ml(t,e.out),a=!e.silent&&!!process.stdout.isTTY?Wl():null;a?.start(`Generating image with ${P.bold(r)} ${P.dim(`(${o.envName})`)}\u2026`);try{let l=await Zr(r,{prompt:e.prompt,apiKey:o.key,size:e.size});Jt(ut(i))||eo(ut(i),{recursive:!0}),to(i,l.bytes),e.silent||k(a,"success",`Wrote ${i} (${l.bytes.length} bytes, ${l.contentType}).`,P.green(`Wrote ${i} ${P.dim(`(${l.bytes.length} bytes, ${l.contentType})`)}`))}catch(l){a?.stop(P.red("Image generation failed."));let u=Hl(t,{provider:r,envName:o.envName,prompt:e.prompt,size:e.size,outPath:i,error:l});c.message(Kl({provider:r,envName:o.envName,prompt:e.prompt,size:e.size,message:l.message})),u&&c.message(`${P.dim("Full error log:")} ${P.cyan(u)}`),process.exitCode=1}}function Kl(e){let n=d=>P.dim(d.padEnd(10)),o=e.prompt.length>54?`${e.prompt.slice(0,53)}\u2026`:e.prompt,i=[{content:`${P.red("\u2717")} ${P.bold(P.red("Image generation failed"))}`},{sep:!0},{content:`${n("Provider:")}${P.bold(e.provider)}`},{content:`${n("Key:")}${e.envName}`},{content:`${n("Prompt:")}${P.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:P.red(l)});let u=`${P.bold(P.cyan("SEOAgent"))} ${P.dim("\xB7")} ${P.dim("generate-image")}`;return L(i,{width:70,title:u})}function Hl(e,t){let r=`seoagent-generate-image-${new Date().toISOString().replace(/[:.]/g,"-")}.log`,o=ct(e,$),i=ct(o,".errors"),s=Jt(o)?ct(i,r):ct(Bl(),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 Jt(ut(s))||eo(ut(s),{recursive:!0}),to(s,a.join(`
403
+ `)),s}catch{return null}}import j from"picocolors";async function De(e={}){let t=A();if(!t){e.json?process.stdout.write(`${JSON.stringify({logged_in:!1})}
404
+ `):c.error(`Not logged in. Run \`${p("login")}\` first.`),process.exitCode=1;return}let n=(e.apiBase||t.api_base||S.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})}
403
405
  `);return}c.warn(`Logged in, but the server at this API base does not support \`/api/cli/whoami\` yet. Update with \`${p("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}`})}
404
406
  `):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)}
405
- `);return}c.message(ul(i)),i.paid===!1&&c.message(`${T.dim("Upgrade for autopilot:")} ${T.cyan(b.PRICING)}`)}function ul(e){let n=i=>T.dim(i.padEnd(10)),r=[];if(e.email&&(r.push({content:`${T.green("\u2713")} ${T.dim("Logged in as")} ${T.bold(e.email)}`}),r.push({sep:!0})),e.domain&&r.push({content:`${n("Website:")}${T.cyan(e.domain)}`}),e.plan){let i=e.paid?T.bold(T.green(e.plan)):T.bold(e.plan);r.push({content:`${n("Plan:")}${i}`})}e.api_base&&r.push({content:`${n("API:")}${T.dim(e.api_base)}`});let o=`${T.bold(T.cyan("SEOAgent"))} ${T.dim("\xB7")} ${T.dim("whoami")}`;return R(r,{width:55,title:o})}import{select as Wt,text as Fe,confirm as Dr,isCancel as W,intro as dl,outro as pl}from"@clack/prompts";import it from"picocolors";function ml(){return[{command:"status",label:"Show project status",hint:"Audit, strategy, briefs, content, roadmap \u2014 everything at a glance.",run:async()=>xe()},{command:"sync",label:"Sync with the cloud dashboard",hint:"Push local .seoagent/ changes + pull dashboard edits.",run:async()=>await B()},{command:"init",label:"Initialize a SEOAgent project",hint:"Scaffold .seoagent/ + the skill file in this directory.",run:async()=>{await $e()}},{command:"login",label:"Connect this CLI to seoagent.com",hint:"Opens the browser to bind your account.",run:async()=>await Ae()},{command:"whoami",label:"Show logged-in account",hint:"Email, bound website, plan, API base.",run:async()=>await Ne()},{command:"keywords",label:"Keyword research",hint:"Peek (free, one keyword) \xB7 enrich \xB7 discover \xB7 competitor gaps.",run:async()=>{let e=await Wt({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(!W(e))if(e==="peek"){let t=await Fe({message:"Keyword to peek:",placeholder:"saas seo",validate:n=>String(n??"").trim()?void 0:"A keyword is required."});if(W(t))return;await q({peek:String(t)})}else e==="discover"?await q({discover:!0}):e==="competitors"?await q({competitors:!0}):await q()}},{command:"internal-links",label:"Analyze internal links",hint:"Find orphan pages \u2192 .seoagent/internal-links.md",run:async()=>Oe({})},{command:"generate-image",label:"Generate an image",hint:"Uses the detected (or explicit) provider.",run:async()=>{let e=await Fe({message:"Image prompt:",placeholder:"a minimalist cyan box logo",validate:n=>String(n??"").trim()?void 0:"A prompt is required."});if(W(e))return;let t=await Fe({message:"Output file path:",placeholder:".seoagent/content/images/hero.png",validate:n=>String(n??"").trim()?void 0:"An output path is required."});W(t)||await je({prompt:String(e),out:String(t)})}},{command:"env-check",label:"Check image-generation provider",hint:"Detect openai / fal / replicate from your env.",run:async()=>Le({})},{command:"autopilot",label:"Toggle CLI autopilot",hint:"on / off / status \u2014 paid feature for queueing SEO fixes.",run:async()=>{let e=await Wt({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"}]});W(e)||await Te(String(e))}},{command:"pull",label:"Pull dashboard changes only",hint:"Cloud \u2192 local. Same as the second half of `sync`.",run:async()=>await te()},{command:"ack",label:"Close out a pending inbox action",hint:"Mark a .seoagent/inbox/ action completed or failed.",run:async()=>{let e=await Fe({message:"Action ID to close out:",placeholder:"action-abc123",validate:r=>String(r??"").trim()?void 0:"Action ID is required."});if(W(e))return;let t=await Dr({message:"Mark as failed instead of completed?",initialValue:!1});if(W(t))return;let n;if(t===!0){let r=await Fe({message:"Reason for failure (optional):",placeholder:"couldn't apply because\u2026"});if(W(r))return;String(r).trim()&&(n=String(r))}await Y(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 Ee()},{command:"update-cli",label:"Update the CLI to the latest version",hint:"npm install -g @seoagent-official/seoagent@latest",run:async()=>await Ie({})},{command:"logout",label:"Log out",hint:"Clear stored credentials for seoagent.com.",run:async()=>Pe()},{command:"uninstall",label:"Uninstall SEOAgent from this project",hint:"Remove .seoagent/, the skill bundle, and the sync hook.",run:async()=>await Se({})}]}var Fr="__exit__";async function Ur(e=ml()){let t=e.map(o=>({value:o.command,label:o.label,hint:o.hint}));t.push({value:Fr,label:"Exit",hint:"Close the menu"});let n=await Wt({message:"What would you like to do?",options:t});if(W(n)||n===Fr)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 Gt(){if(!process.stdin.isTTY){c.info("The menu needs an interactive terminal. Use the regular commands directly, e.g. `seoagent --help`.");return}dl(`${it.bold(it.cyan("SEOAgent"))} ${it.dim("\xB7 menu")}`);let e=await Ur();for(;!e;){let t=await Dr({message:"Do another?",initialValue:!0});if(W(t)||t===!1){e=!0;break}e=await Ur()}pl(it.dim("See you next time."))}var $=new fl;$.name("seoagent").description("AI SEO agent for Claude Code").version(oe).showSuggestionAfterError(!0).showHelpAfterError(!0);$.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=>{$e({yes:e.yes,domain:e.domain,siteType:e.siteType})});$.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=>{Se({yes:e.yes,global:e.global})});$.command("status").description("Show current SEO project state").action(xe);$.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=>{Ae({apiBase:e.apiBase})});$.command("logout").description("Remove stored credentials for seoagent.com").action(Pe);$.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=>{B({silent:e.silent,force:e.force,path:e.path,pushOnly:e.pushOnly,pullOnly:e.pullOnly})});$.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=>{te({force:e.force,silent:e.silent,print:e.print})});$.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)=>{Y(e,{failed:t.failed,reason:t.reason})});$.command("inbox").description("List pending actions queued by autopilot in .seoagent/inbox/").option("--json","Output as JSON (handy for scripting / `jq`)").action(e=>{Tt({json:e.json})});$.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=>{Ft({yes:e.yes,model:e.model})});$.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)=>{Te(e,{apiBase:t.apiBase})});$.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("--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=>{q({peek:e.peek,discover:e.discover,competitors:e.competitors,json:e.json,apiBase:e.apiBase})});$.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=>{Oe({json:e.json})});$.command("env-check").description("Detect which image generation provider is available (OPENAI / FAL / REPLICATE)").option("--json","Output detection result as JSON").action(e=>{Le({json:e.json})});$.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=>{je({prompt:e.prompt,out:e.out,provider:e.provider,size:e.size,silent:e.silent})});$.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=>{Ne({json:e.json,apiBase:e.apiBase})});$.command("upgrade").description("Open the SEOAgent Cloud pricing page in your browser (plan upgrade)").action(Ee);$.command("update-cli").description("Update the SEOAgent CLI to the latest published npm version").option("--dry-run","Show what would happen without running the install").action(e=>{Ie({dryRun:e.dryRun})});$.command("menu").description("Interactive menu \u2014 pick a command from a list (no flags required)").action(()=>{Gt()});process.argv.length===2&&($.outputHelp(),process.exit(0));$.parse();
407
+ `);return}c.message(ql(i)),i.paid===!1&&c.message(`${j.dim("Upgrade for autopilot:")} ${j.cyan(S.PRICING)}`)}function ql(e){let n=i=>j.dim(i.padEnd(10)),r=[];if(e.email&&(r.push({content:`${j.green("\u2713")} ${j.dim("Logged in as")} ${j.bold(e.email)}`}),r.push({sep:!0})),e.domain&&r.push({content:`${n("Website:")}${j.cyan(e.domain)}`}),e.plan){let i=e.paid?j.bold(j.green(e.plan)):j.bold(e.plan);r.push({content:`${n("Plan:")}${i}`})}e.api_base&&r.push({content:`${n("API:")}${j.dim(e.api_base)}`});let o=`${j.bold(j.cyan("SEOAgent"))} ${j.dim("\xB7")} ${j.dim("whoami")}`;return L(r,{width:55,title:o})}import{select as Vt,text as Me,confirm as oo,isCancel as G,intro as zl,outro as Yl}from"@clack/prompts";import dt from"picocolors";function Jl(){return[{command:"status",label:"Show project status",hint:"Audit, strategy, briefs, content, roadmap \u2014 everything at a glance.",run:async()=>Ae()},{command:"sync",label:"Sync with the cloud dashboard",hint:"Push local .seoagent/ changes + pull dashboard edits.",run:async()=>await B()},{command:"init",label:"Initialize a SEOAgent project",hint:"Scaffold .seoagent/ + the skill file in this directory.",run:async()=>{await _e()}},{command:"login",label:"Connect this CLI to seoagent.com",hint:"Opens the browser to bind your account.",run:async()=>await Oe()},{command:"whoami",label:"Show logged-in account",hint:"Email, bound website, plan, API base.",run:async()=>await De()},{command:"keywords",label:"Keyword research",hint:"Peek (free, one keyword) \xB7 enrich \xB7 discover \xB7 competitor gaps.",run:async()=>{let e=await Vt({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(!G(e))if(e==="peek"){let t=await Me({message:"Keyword to peek:",placeholder:"saas seo",validate:n=>String(n??"").trim()?void 0:"A keyword is required."});if(G(t))return;await V({peek:String(t)})}else e==="discover"?await V({discover:!0}):e==="competitors"?await V({competitors:!0}):await V()}},{command:"internal-links",label:"Analyze internal links",hint:"Find orphan pages \u2192 .seoagent/internal-links.md",run:async()=>Ne({})},{command:"generate-image",label:"Generate an image",hint:"Uses the detected (or explicit) provider.",run:async()=>{let e=await Me({message:"Image prompt:",placeholder:"a minimalist cyan box logo",validate:n=>String(n??"").trim()?void 0:"A prompt is required."});if(G(e))return;let t=await Me({message:"Output file path:",placeholder:".seoagent/content/images/hero.png",validate:n=>String(n??"").trim()?void 0:"An output path is required."});G(t)||await Ue({prompt:String(e),out:String(t)})}},{command:"env-check",label:"Check image-generation provider",hint:"Detect openai / fal / replicate from your env.",run:async()=>Fe({})},{command:"autopilot",label:"Toggle CLI autopilot",hint:"on / off / status \u2014 paid feature for queueing SEO fixes.",run:async()=>{let e=await Vt({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"}]});G(e)||await je(String(e))}},{command:"pull",label:"Pull dashboard changes only",hint:"Cloud \u2192 local. Same as the second half of `sync`.",run:async()=>await oe()},{command:"ack",label:"Close out a pending inbox action",hint:"Mark a .seoagent/inbox/ action completed or failed.",run:async()=>{let e=await Me({message:"Action ID to close out:",placeholder:"action-abc123",validate:r=>String(r??"").trim()?void 0:"Action ID is required."});if(G(e))return;let t=await oo({message:"Mark as failed instead of completed?",initialValue:!1});if(G(t))return;let n;if(t===!0){let r=await Me({message:"Reason for failure (optional):",placeholder:"couldn't apply because\u2026"});if(G(r))return;String(r).trim()&&(n=String(r))}await J(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 Re()},{command:"update-cli",label:"Update the CLI to the latest version",hint:"npm install -g @seoagent-official/seoagent@latest",run:async()=>await Te({})},{command:"logout",label:"Log out",hint:"Clear stored credentials for seoagent.com.",run:async()=>Le()},{command:"uninstall",label:"Uninstall SEOAgent from this project",hint:"Remove .seoagent/, the skill bundle, and the sync hook.",run:async()=>await Ee({})}]}var no="__exit__";async function ro(e=Jl()){let t=e.map(o=>({value:o.command,label:o.label,hint:o.hint}));t.push({value:no,label:"Exit",hint:"Close the menu"});let n=await Vt({message:"What would you like to do?",options:t});if(G(n)||n===no)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 Xt(){if(!process.stdin.isTTY){c.info("The menu needs an interactive terminal. Use the regular commands directly, e.g. `seoagent --help`.");return}zl(`${dt.bold(dt.cyan("SEOAgent"))} ${dt.dim("\xB7 menu")}`);let e=await ro();for(;!e;){let t=await oo({message:"Do another?",initialValue:!0});if(G(t)||t===!1){e=!0;break}e=await ro()}Yl(dt.dim("See you next time."))}var v=new Vl;v.name("seoagent").description("AI SEO agent for Claude Code").version(ae).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=>{_e({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=>{Ee({yes:e.yes,global:e.global})});v.command("status").description("Show current SEO project state").action(Ae);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=>{Oe({apiBase:e.apiBase})});v.command("logout").description("Remove stored credentials for seoagent.com").action(Le);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=>{B({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=>{oe({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)=>{J(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=>{Mt({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=>{Ht({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)=>{je(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("--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=>{V({peek:e.peek,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=>{Ne({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=>{Fe({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=>{Ue({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=>{De({json:e.json,apiBase:e.apiBase})});v.command("upgrade").description("Open the SEOAgent Cloud pricing page in your browser (plan upgrade)").action(Re);v.command("update-cli").description("Update the SEOAgent CLI to the latest published npm version").option("--dry-run","Show what would happen without running the install").action(e=>{Te({dryRun:e.dryRun})});v.command("menu").description("Interactive menu \u2014 pick a command from a list (no flags required)").action(()=>{Xt()});process.argv.length===2&&(v.outputHelp(),process.exit(0));v.parse();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@seoagent-official/seoagent",
3
- "version": "1.48.0",
4
- "description": "Scaffolder for Claude Code's SEOAgent skill. Run once: `npx -y @seoagent-official/seoagent init`. Sets up .seoagent/ for persistent audits, keyword strategy, content planning, and optimized writing. Not a runtime dependency.",
3
+ "version": "1.49.0",
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": {
7
7
  "seoagent": "index.js"
@@ -11,6 +11,9 @@
11
11
  "skills",
12
12
  "assets"
13
13
  ],
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
14
17
  "dependencies": {
15
18
  "@anthropic-ai/claude-agent-sdk": "^0.1.0",
16
19
  "@clack/prompts": "^0.9.0",
@@ -21,13 +24,31 @@
21
24
  },
22
25
  "keywords": [
23
26
  "seo",
27
+ "seo-agent",
28
+ "agentic-seo",
24
29
  "claude-code",
30
+ "claude-skill",
31
+ "claude-agent",
25
32
  "ai-agent",
33
+ "ai-seo",
34
+ "aeo",
35
+ "geo",
36
+ "answer-engine-optimization",
37
+ "generative-engine-optimization",
26
38
  "seo-audit",
39
+ "seo-cli",
27
40
  "content-strategy",
28
- "keyword-research"
41
+ "keyword-research",
42
+ "internal-links",
43
+ "schema-markup",
44
+ "autopilot"
29
45
  ],
30
46
  "license": "MIT",
47
+ "homepage": "https://seoagent.com",
48
+ "bugs": {
49
+ "url": "https://github.com/Baxter-Inc/seoagent-npm/issues"
50
+ },
51
+ "funding": "https://seoagent.com/pricing",
31
52
  "repository": {
32
53
  "type": "git",
33
54
  "url": "git+https://github.com/Baxter-Inc/seoagent-npm.git"