[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-webflow-webflow-mcpreview-comments":3,"mdc--3zylnh-key":37,"related-org-webflow-webflow-mcpreview-comments":1702,"related-repo-webflow-webflow-mcpreview-comments":1890},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":32,"sourceUrl":35,"mdContent":36},"webflow-mcpreview-comments","webflow-mcp:review-comments","review and triage Webflow site comments","Review open comment threads on a Webflow site and triage each one.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},"webflow","Webflow","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fwebflow.png",[13,17,20,21],{"name":14,"slug":15,"type":16},"Collaboration","collaboration","tag",{"name":18,"slug":19,"type":16},"Triage","triage",{"name":10,"slug":9,"type":16},{"name":22,"slug":23,"type":16},"Frontend","frontend",107,"https:\u002F\u002Fgithub.com\u002Fwebflow\u002Fwebflow-skills","2026-05-21T06:47:35.938229",null,17,[30,31],"agent","skills",{"repoUrl":25,"stars":24,"forks":28,"topics":33,"description":34},[30,31],"Official Webflow Agent Skills","https:\u002F\u002Fgithub.com\u002Fwebflow\u002Fwebflow-skills\u002Ftree\u002FHEAD\u002Fplugins\u002Fwebflow-skills\u002Fskills\u002Freview-comments","---\nname: webflow-mcp:review-comments\ndescription: Review open comment threads on a Webflow site and triage each one.\n---\nReview open comment threads on a Webflow site and triage each one.\n\n**Input:** `$ARGUMENTS` — a site name (e.g. \"Workhaus\"), site ID (e.g. `6808fd4eff835ee3af009d6f`), or either with the `-reply` flag (e.g. `Workhaus -reply`).\n\n**Flags:**\n- `-reply` — in addition to writing the report, post a bot reply to each non-open thread. Without this flag, the skill runs in report-only mode (read-only).\n\nParse `$ARGUMENTS` at the start: strip `-reply` from the input to get the site identifier, and set `replyMode = true` if `-reply` was present, `false` otherwise.\n\n---\n\n## Step 1 — Resolve the site\n\n### If the site identifier is empty or blank — cross-site comment survey\n\n1. Call `data_sites_tool > list_sites` to get all sites. Page through until all are collected.\n2. For each site, call `data_comments_tool > list_comment_threads` with `isResolved: false` and `limit: 100`. Page through until all unresolved threads are collected. If the API does not support `isResolved` filtering, fetch all threads and filter client-side to `isResolved === false`. Process sites in batches of 20 (batch multiple actions in a single tool call). After each batch completes, log a progress line: `Batch {N}\u002F{total} done (sites {start}–{end}): {summary of findings, e.g. \"all 0 threads\" or \"SiteName has X threads, rest 0\"}.`\n3. For each site, compute:\n   - `unresolvedCount` = total unresolved threads\n   - `newestDate` = the maximum `lastUpdated` value across all unresolved threads for that site (ISO → human-readable date, e.g. \"Apr 3, 2026\"). If no threads, show `—`.\n   - `oldestDate` = the minimum `lastUpdated` value across all unresolved threads for that site (ISO → human-readable date). If no threads, show `—`.\n4. Sort sites by `unresolvedCount` descending. Take the top 10.\n5. Above the table, show a heading line: `### Checked {totalSiteCount} sites — {sitesWithUnresolved} have unresolved comments.`\n6. Display a table in this format (link just the site name to `https:\u002F\u002Fwebflow.com\u002Fdesign\u002F{siteId}`):\n\n```\n| Site | Unresolved Comments | Newest \u002F Oldest |\n|------|---------------------|-----------------|\n| [Site Name](https:\u002F\u002Fwebflow.com\u002Fdesign\u002F{siteId}) ({siteId}) | {N} | {newestDate} \u002F {oldestDate} |\n```\n\n7. After the table, tell the user: \"Run `\u002Fwebflow-mcp:review-comments \u003Csite name or ID>` to review a specific site.\"\n8. Write the survey output to a file:\n   - Ensure `comment-reviews\u002F` exists (create with `mkdir comment-reviews` if not).\n   - Filename: `comment-reviews\u002Ftriage-report-{YYYY-MM-DD-HH-MM}.md` using the current local time (zero-padded).\n   - File contents: a bold H1 title `# **Webflow Comment Review**`, then a blank line, then an H3 line `### Report created on: {human-readable date, time, and timezone, e.g. \"April 16, 2026 at 10:39 AM PDT\"}`, then a blank line, then the H3 heading line (`### Checked …`) and the full table from steps 5–6 above, in markdown.\n   - Log the path after writing, e.g. `Report written to comment-reviews\u002Ftriage-report-2026-04-16-14-30.md`.\n9. **Stop** — do not proceed to Step 2.\n\n### If the site identifier looks like a Webflow site ID (24-char hex), use it directly.\n\n### Otherwise call `data_sites_tool > list_sites` and find the site whose `displayName` matches the identifier (case-insensitive). If no match, tell the user and stop.\n\n---\n\n## Step 2 — Fetch all open threads\n\n**Always make a fresh API call here — never reuse thread data from earlier in the conversation. The user may have added or resolved comments since the last run.**\n\nCall `data_comments_tool > list_comment_threads` with `isResolved: false` and `limit: 100`. Page through results until all threads are collected.\n\nLog: `Site: {displayName}` and `Found {N} open thread(s)`.\n\n---\n\n## Step 3 — Build page-level element map\n\nFrom the already-fetched thread list, build a frequency map of `elementId.element → Set\u003CpageId>` across all threads. Any `elementId.element` that appears on **2 or more distinct pages** is almost certainly the page root\u002Fbody element (a real element ID would be page-scoped; only shared structural roots repeat across pages).\n\nNo API calls needed — this is a local computation on the thread data.\n\n---\n\n## Step 4 — Triage each thread\n\nFor each thread:\n\n### 4a — Fetch replies\n\nCall `data_comments_tool > list_comment_replies` for this thread.\n\n### 4b — Dedup check\n\nLook for replies whose `content` includes the string `— 🤖 Comment Review Agent`.\n\nIf found, note the most recent one (`lastAgentReply`). If no human reply exists with a `createdOn` after `lastAgentReply.createdOn`, **skip this thread** (increment skipped count, continue to next thread).\n\n### 4c — Compute element context\n\n- `elementId` = `thread.elementId?.element`\n- `isPageLevel` = `elementId` appears on 2 or more distinct `pageId`s in the frequency map from Step 3\n\n### 4d — Classify the thread\n\nUse the following criteria:\n\n**noise** — No real design or engineering value:\n- Test\u002Fplaceholder text (\"hello world\", \"testing\", \"asdf\", random characters)\n- Casual reactions with no ask (\"looks nice\", \"nice!\", \"hey hey\")\n- Duplicate sentiments that add nothing\n\n**stale** — Real concern, but old and likely handled:\n- Substantive comments older than 14 days with no replies and no follow-up\n- Questions that are probably resolved (\"beta for how long?\", \"is this good contrast?\")\n- Action items that normal review would have caught\n\n**open** — Real, actionable concern needing attention:\n- Explicit tasks (\"Should be sentence case\", \"fix image\", \"Look at name wrt L10N\")\n- Design decisions still required\n- Specific and concrete concerns\n\n**page-level** — Comment is on the page root, not a specific element:\n- Use this when `isPageLevel` is true\n- The comment is not anchored to any specific element — it may be intentional or may be an orphan from a deleted element\n\n### 4e — Compose reply\n\nAlways compose the reply text (it appears in the report regardless of mode):\n\n- **noise**: one sentence confirming it's safe to resolve. E.g. `\"Looks like test text — safe to resolve.\"`\n- **stale**: state the age in days, suggest resolving, invite reopen. E.g. `\"This is 302 days old with no follow-up. Safe to resolve — reply here if it's still relevant.\"`\n- **open**: no reply text — surface in report only.\n- **page-level**: one sentence noting it's not attached to a specific element. E.g. `\"This comment is on the page root rather than a specific element — it may be an orphan from a deleted element. Safe to resolve if no longer relevant.\"`\n\nAppend `\\n\\n— 🤖 Comment Review Agent` to every reply text.\n\n### 4f — Post reply (only if `replyMode = true`)\n\nIf `replyMode` is `true` and verdict is not `open`, call `data_comments_tool > create_reply` with the composed reply content.\n\nLog each thread as:\n```\n{VERDICT_EMOJI} {verdict}  \"{preview (60 chars)}\"\n                {one-sentence classification reason}\n                ↳ {reply posted | no reply — report only | skipped}\n```\n\nVerdict emojis: noise = 🗑, stale = 🕰, open = 🔴, page-level = 📄\n\n---\n\n## Step 5 — Write the report\n\nAfter processing all threads:\n\n1. Check whether a `comment-reviews\u002F` directory exists at the top level of the working directory. If it does not exist, create it with `mkdir comment-reviews`.\n2. Write a markdown report to `comment-reviews\u002F{slugified-site-name}-comments-triage-report.md` (lowercase, hyphens, no special chars).\n\nReport format:\n\n```markdown\n# Comment Review — [{siteName} ({siteId})](https:\u002F\u002Fwebflow.com\u002Fdesign\u002F{siteId})\n\n**Run:** {human-readable date and time}\n**Mode:** {Report only | Report + replies posted}\n**Threads:** {total} total | 🔴 {open} open | 🕰 {stale} stale | 📄 {page-level} page-level | 🗑 {noise} noise | ⏭ {skipped} skipped\n\n---\n\n## 🔴 Needs Attention ({count})\n\n| Comment | Author | Age | Link |\n|---------|--------|-----|------|\n| \"{first 80 chars of content}\" | {author.name} | {age in days}d | [Open ↗]({thread.url}) |\n\n## 🕰 Stale — Candidates to Resolve ({count})\n\n| Comment | Author | Age | Suggested Reply | Link |\n|---------|--------|-----|-----------------|------|\n| \"{first 80 chars of content}\" | {author.name} | {age in days}d | {composed reply text, without the `— 🤖 Comment Review Agent` suffix} | [Open ↗]({thread.url}) |\n\n## 📄 Page-level — Not Anchored to a Specific Element ({count})\n\n| Comment | Author | Age | Suggested Reply | Link |\n|---------|--------|-----|-----------------|------|\n...\n\n---\n\n**🗑 Noise:** {count} thread(s) — {if replyMode: \"replied to\" | if report-only: \"suggested replies in report\"}. Safe to bulk-resolve.\n```\n\nUse `_None._` for any section with no entries.\n\nLog a summary line and confirm the report path.\n",{"data":38,"body":39},{"name":5,"description":7},{"type":40,"children":41},"root",[42,49,93,101,116,158,162,169,176,350,362,472,478,499,502,508,516,539,558,561,567,595,600,603,609,614,620,632,638,658,694,700,745,751,756,766,784,794,812,822,840,850,870,876,881,938,951,964,1000,1005,1014,1019,1022,1028,1033,1067,1072,1678,1691,1696],{"type":43,"tag":44,"props":45,"children":46},"element","p",{},[47],{"type":48,"value":7},"text",{"type":43,"tag":44,"props":50,"children":51},{},[52,58,60,67,69,75,77,83,85,91],{"type":43,"tag":53,"props":54,"children":55},"strong",{},[56],{"type":48,"value":57},"Input:",{"type":48,"value":59}," ",{"type":43,"tag":61,"props":62,"children":64},"code",{"className":63},[],[65],{"type":48,"value":66},"$ARGUMENTS",{"type":48,"value":68}," — a site name (e.g. \"Workhaus\"), site ID (e.g. ",{"type":43,"tag":61,"props":70,"children":72},{"className":71},[],[73],{"type":48,"value":74},"6808fd4eff835ee3af009d6f",{"type":48,"value":76},"), or either with the ",{"type":43,"tag":61,"props":78,"children":80},{"className":79},[],[81],{"type":48,"value":82},"-reply",{"type":48,"value":84}," flag (e.g. ",{"type":43,"tag":61,"props":86,"children":88},{"className":87},[],[89],{"type":48,"value":90},"Workhaus -reply",{"type":48,"value":92},").",{"type":43,"tag":44,"props":94,"children":95},{},[96],{"type":43,"tag":53,"props":97,"children":98},{},[99],{"type":48,"value":100},"Flags:",{"type":43,"tag":102,"props":103,"children":104},"ul",{},[105],{"type":43,"tag":106,"props":107,"children":108},"li",{},[109,114],{"type":43,"tag":61,"props":110,"children":112},{"className":111},[],[113],{"type":48,"value":82},{"type":48,"value":115}," — in addition to writing the report, post a bot reply to each non-open thread. Without this flag, the skill runs in report-only mode (read-only).",{"type":43,"tag":44,"props":117,"children":118},{},[119,121,126,128,133,135,141,143,148,150,156],{"type":48,"value":120},"Parse ",{"type":43,"tag":61,"props":122,"children":124},{"className":123},[],[125],{"type":48,"value":66},{"type":48,"value":127}," at the start: strip ",{"type":43,"tag":61,"props":129,"children":131},{"className":130},[],[132],{"type":48,"value":82},{"type":48,"value":134}," from the input to get the site identifier, and set ",{"type":43,"tag":61,"props":136,"children":138},{"className":137},[],[139],{"type":48,"value":140},"replyMode = true",{"type":48,"value":142}," if ",{"type":43,"tag":61,"props":144,"children":146},{"className":145},[],[147],{"type":48,"value":82},{"type":48,"value":149}," was present, ",{"type":43,"tag":61,"props":151,"children":153},{"className":152},[],[154],{"type":48,"value":155},"false",{"type":48,"value":157}," otherwise.",{"type":43,"tag":159,"props":160,"children":161},"hr",{},[],{"type":43,"tag":163,"props":164,"children":166},"h2",{"id":165},"step-1-resolve-the-site",[167],{"type":48,"value":168},"Step 1 — Resolve the site",{"type":43,"tag":170,"props":171,"children":173},"h3",{"id":172},"if-the-site-identifier-is-empty-or-blank-cross-site-comment-survey",[174],{"type":48,"value":175},"If the site identifier is empty or blank — cross-site comment survey",{"type":43,"tag":177,"props":178,"children":179},"ol",{},[180,193,244,314,326,337],{"type":43,"tag":106,"props":181,"children":182},{},[183,185,191],{"type":48,"value":184},"Call ",{"type":43,"tag":61,"props":186,"children":188},{"className":187},[],[189],{"type":48,"value":190},"data_sites_tool > list_sites",{"type":48,"value":192}," to get all sites. Page through until all are collected.",{"type":43,"tag":106,"props":194,"children":195},{},[196,198,204,206,212,214,220,222,228,230,236,238],{"type":48,"value":197},"For each site, call ",{"type":43,"tag":61,"props":199,"children":201},{"className":200},[],[202],{"type":48,"value":203},"data_comments_tool > list_comment_threads",{"type":48,"value":205}," with ",{"type":43,"tag":61,"props":207,"children":209},{"className":208},[],[210],{"type":48,"value":211},"isResolved: false",{"type":48,"value":213}," and ",{"type":43,"tag":61,"props":215,"children":217},{"className":216},[],[218],{"type":48,"value":219},"limit: 100",{"type":48,"value":221},". Page through until all unresolved threads are collected. If the API does not support ",{"type":43,"tag":61,"props":223,"children":225},{"className":224},[],[226],{"type":48,"value":227},"isResolved",{"type":48,"value":229}," filtering, fetch all threads and filter client-side to ",{"type":43,"tag":61,"props":231,"children":233},{"className":232},[],[234],{"type":48,"value":235},"isResolved === false",{"type":48,"value":237},". Process sites in batches of 20 (batch multiple actions in a single tool call). After each batch completes, log a progress line: ",{"type":43,"tag":61,"props":239,"children":241},{"className":240},[],[242],{"type":48,"value":243},"Batch {N}\u002F{total} done (sites {start}–{end}): {summary of findings, e.g. \"all 0 threads\" or \"SiteName has X threads, rest 0\"}.",{"type":43,"tag":106,"props":245,"children":246},{},[247,249],{"type":48,"value":248},"For each site, compute:\n",{"type":43,"tag":102,"props":250,"children":251},{},[252,263,290],{"type":43,"tag":106,"props":253,"children":254},{},[255,261],{"type":43,"tag":61,"props":256,"children":258},{"className":257},[],[259],{"type":48,"value":260},"unresolvedCount",{"type":48,"value":262}," = total unresolved threads",{"type":43,"tag":106,"props":264,"children":265},{},[266,272,274,280,282,288],{"type":43,"tag":61,"props":267,"children":269},{"className":268},[],[270],{"type":48,"value":271},"newestDate",{"type":48,"value":273}," = the maximum ",{"type":43,"tag":61,"props":275,"children":277},{"className":276},[],[278],{"type":48,"value":279},"lastUpdated",{"type":48,"value":281}," value across all unresolved threads for that site (ISO → human-readable date, e.g. \"Apr 3, 2026\"). If no threads, show ",{"type":43,"tag":61,"props":283,"children":285},{"className":284},[],[286],{"type":48,"value":287},"—",{"type":48,"value":289},".",{"type":43,"tag":106,"props":291,"children":292},{},[293,299,301,306,308,313],{"type":43,"tag":61,"props":294,"children":296},{"className":295},[],[297],{"type":48,"value":298},"oldestDate",{"type":48,"value":300}," = the minimum ",{"type":43,"tag":61,"props":302,"children":304},{"className":303},[],[305],{"type":48,"value":279},{"type":48,"value":307}," value across all unresolved threads for that site (ISO → human-readable date). If no threads, show ",{"type":43,"tag":61,"props":309,"children":311},{"className":310},[],[312],{"type":48,"value":287},{"type":48,"value":289},{"type":43,"tag":106,"props":315,"children":316},{},[317,319,324],{"type":48,"value":318},"Sort sites by ",{"type":43,"tag":61,"props":320,"children":322},{"className":321},[],[323],{"type":48,"value":260},{"type":48,"value":325}," descending. Take the top 10.",{"type":43,"tag":106,"props":327,"children":328},{},[329,331],{"type":48,"value":330},"Above the table, show a heading line: ",{"type":43,"tag":61,"props":332,"children":334},{"className":333},[],[335],{"type":48,"value":336},"### Checked {totalSiteCount} sites — {sitesWithUnresolved} have unresolved comments.",{"type":43,"tag":106,"props":338,"children":339},{},[340,342,348],{"type":48,"value":341},"Display a table in this format (link just the site name to ",{"type":43,"tag":61,"props":343,"children":345},{"className":344},[],[346],{"type":48,"value":347},"https:\u002F\u002Fwebflow.com\u002Fdesign\u002F{siteId}",{"type":48,"value":349},"):",{"type":43,"tag":351,"props":352,"children":356},"pre",{"className":353,"code":355,"language":48},[354],"language-text","| Site | Unresolved Comments | Newest \u002F Oldest |\n|------|---------------------|-----------------|\n| [Site Name](https:\u002F\u002Fwebflow.com\u002Fdesign\u002F{siteId}) ({siteId}) | {N} | {newestDate} \u002F {oldestDate} |\n",[357],{"type":43,"tag":61,"props":358,"children":360},{"__ignoreMap":359},"",[361],{"type":48,"value":355},{"type":43,"tag":177,"props":363,"children":365},{"start":364},7,[366,379,462],{"type":43,"tag":106,"props":367,"children":368},{},[369,371,377],{"type":48,"value":370},"After the table, tell the user: \"Run ",{"type":43,"tag":61,"props":372,"children":374},{"className":373},[],[375],{"type":48,"value":376},"\u002Fwebflow-mcp:review-comments \u003Csite name or ID>",{"type":48,"value":378}," to review a specific site.\"",{"type":43,"tag":106,"props":380,"children":381},{},[382,384],{"type":48,"value":383},"Write the survey output to a file:\n",{"type":43,"tag":102,"props":385,"children":386},{},[387,408,421,450],{"type":43,"tag":106,"props":388,"children":389},{},[390,392,398,400,406],{"type":48,"value":391},"Ensure ",{"type":43,"tag":61,"props":393,"children":395},{"className":394},[],[396],{"type":48,"value":397},"comment-reviews\u002F",{"type":48,"value":399}," exists (create with ",{"type":43,"tag":61,"props":401,"children":403},{"className":402},[],[404],{"type":48,"value":405},"mkdir comment-reviews",{"type":48,"value":407}," if not).",{"type":43,"tag":106,"props":409,"children":410},{},[411,413,419],{"type":48,"value":412},"Filename: ",{"type":43,"tag":61,"props":414,"children":416},{"className":415},[],[417],{"type":48,"value":418},"comment-reviews\u002Ftriage-report-{YYYY-MM-DD-HH-MM}.md",{"type":48,"value":420}," using the current local time (zero-padded).",{"type":43,"tag":106,"props":422,"children":423},{},[424,426,432,434,440,442,448],{"type":48,"value":425},"File contents: a bold H1 title ",{"type":43,"tag":61,"props":427,"children":429},{"className":428},[],[430],{"type":48,"value":431},"# **Webflow Comment Review**",{"type":48,"value":433},", then a blank line, then an H3 line ",{"type":43,"tag":61,"props":435,"children":437},{"className":436},[],[438],{"type":48,"value":439},"### Report created on: {human-readable date, time, and timezone, e.g. \"April 16, 2026 at 10:39 AM PDT\"}",{"type":48,"value":441},", then a blank line, then the H3 heading line (",{"type":43,"tag":61,"props":443,"children":445},{"className":444},[],[446],{"type":48,"value":447},"### Checked …",{"type":48,"value":449},") and the full table from steps 5–6 above, in markdown.",{"type":43,"tag":106,"props":451,"children":452},{},[453,455,461],{"type":48,"value":454},"Log the path after writing, e.g. ",{"type":43,"tag":61,"props":456,"children":458},{"className":457},[],[459],{"type":48,"value":460},"Report written to comment-reviews\u002Ftriage-report-2026-04-16-14-30.md",{"type":48,"value":289},{"type":43,"tag":106,"props":463,"children":464},{},[465,470],{"type":43,"tag":53,"props":466,"children":467},{},[468],{"type":48,"value":469},"Stop",{"type":48,"value":471}," — do not proceed to Step 2.",{"type":43,"tag":170,"props":473,"children":475},{"id":474},"if-the-site-identifier-looks-like-a-webflow-site-id-24-char-hex-use-it-directly",[476],{"type":48,"value":477},"If the site identifier looks like a Webflow site ID (24-char hex), use it directly.",{"type":43,"tag":170,"props":479,"children":481},{"id":480},"otherwise-call-data_sites_tool-list_sites-and-find-the-site-whose-displayname-matches-the-identifier-case-insensitive-if-no-match-tell-the-user-and-stop",[482,484,489,491,497],{"type":48,"value":483},"Otherwise call ",{"type":43,"tag":61,"props":485,"children":487},{"className":486},[],[488],{"type":48,"value":190},{"type":48,"value":490}," and find the site whose ",{"type":43,"tag":61,"props":492,"children":494},{"className":493},[],[495],{"type":48,"value":496},"displayName",{"type":48,"value":498}," matches the identifier (case-insensitive). If no match, tell the user and stop.",{"type":43,"tag":159,"props":500,"children":501},{},[],{"type":43,"tag":163,"props":503,"children":505},{"id":504},"step-2-fetch-all-open-threads",[506],{"type":48,"value":507},"Step 2 — Fetch all open threads",{"type":43,"tag":44,"props":509,"children":510},{},[511],{"type":43,"tag":53,"props":512,"children":513},{},[514],{"type":48,"value":515},"Always make a fresh API call here — never reuse thread data from earlier in the conversation. The user may have added or resolved comments since the last run.",{"type":43,"tag":44,"props":517,"children":518},{},[519,520,525,526,531,532,537],{"type":48,"value":184},{"type":43,"tag":61,"props":521,"children":523},{"className":522},[],[524],{"type":48,"value":203},{"type":48,"value":205},{"type":43,"tag":61,"props":527,"children":529},{"className":528},[],[530],{"type":48,"value":211},{"type":48,"value":213},{"type":43,"tag":61,"props":533,"children":535},{"className":534},[],[536],{"type":48,"value":219},{"type":48,"value":538},". Page through results until all threads are collected.",{"type":43,"tag":44,"props":540,"children":541},{},[542,544,550,551,557],{"type":48,"value":543},"Log: ",{"type":43,"tag":61,"props":545,"children":547},{"className":546},[],[548],{"type":48,"value":549},"Site: {displayName}",{"type":48,"value":213},{"type":43,"tag":61,"props":552,"children":554},{"className":553},[],[555],{"type":48,"value":556},"Found {N} open thread(s)",{"type":48,"value":289},{"type":43,"tag":159,"props":559,"children":560},{},[],{"type":43,"tag":163,"props":562,"children":564},{"id":563},"step-3-build-page-level-element-map",[565],{"type":48,"value":566},"Step 3 — Build page-level element map",{"type":43,"tag":44,"props":568,"children":569},{},[570,572,578,580,586,588,593],{"type":48,"value":571},"From the already-fetched thread list, build a frequency map of ",{"type":43,"tag":61,"props":573,"children":575},{"className":574},[],[576],{"type":48,"value":577},"elementId.element → Set\u003CpageId>",{"type":48,"value":579}," across all threads. Any ",{"type":43,"tag":61,"props":581,"children":583},{"className":582},[],[584],{"type":48,"value":585},"elementId.element",{"type":48,"value":587}," that appears on ",{"type":43,"tag":53,"props":589,"children":590},{},[591],{"type":48,"value":592},"2 or more distinct pages",{"type":48,"value":594}," is almost certainly the page root\u002Fbody element (a real element ID would be page-scoped; only shared structural roots repeat across pages).",{"type":43,"tag":44,"props":596,"children":597},{},[598],{"type":48,"value":599},"No API calls needed — this is a local computation on the thread data.",{"type":43,"tag":159,"props":601,"children":602},{},[],{"type":43,"tag":163,"props":604,"children":606},{"id":605},"step-4-triage-each-thread",[607],{"type":48,"value":608},"Step 4 — Triage each thread",{"type":43,"tag":44,"props":610,"children":611},{},[612],{"type":48,"value":613},"For each thread:",{"type":43,"tag":170,"props":615,"children":617},{"id":616},"_4a-fetch-replies",[618],{"type":48,"value":619},"4a — Fetch replies",{"type":43,"tag":44,"props":621,"children":622},{},[623,624,630],{"type":48,"value":184},{"type":43,"tag":61,"props":625,"children":627},{"className":626},[],[628],{"type":48,"value":629},"data_comments_tool > list_comment_replies",{"type":48,"value":631}," for this thread.",{"type":43,"tag":170,"props":633,"children":635},{"id":634},"_4b-dedup-check",[636],{"type":48,"value":637},"4b — Dedup check",{"type":43,"tag":44,"props":639,"children":640},{},[641,643,649,651,657],{"type":48,"value":642},"Look for replies whose ",{"type":43,"tag":61,"props":644,"children":646},{"className":645},[],[647],{"type":48,"value":648},"content",{"type":48,"value":650}," includes the string ",{"type":43,"tag":61,"props":652,"children":654},{"className":653},[],[655],{"type":48,"value":656},"— 🤖 Comment Review Agent",{"type":48,"value":289},{"type":43,"tag":44,"props":659,"children":660},{},[661,663,669,671,677,679,685,687,692],{"type":48,"value":662},"If found, note the most recent one (",{"type":43,"tag":61,"props":664,"children":666},{"className":665},[],[667],{"type":48,"value":668},"lastAgentReply",{"type":48,"value":670},"). If no human reply exists with a ",{"type":43,"tag":61,"props":672,"children":674},{"className":673},[],[675],{"type":48,"value":676},"createdOn",{"type":48,"value":678}," after ",{"type":43,"tag":61,"props":680,"children":682},{"className":681},[],[683],{"type":48,"value":684},"lastAgentReply.createdOn",{"type":48,"value":686},", ",{"type":43,"tag":53,"props":688,"children":689},{},[690],{"type":48,"value":691},"skip this thread",{"type":48,"value":693}," (increment skipped count, continue to next thread).",{"type":43,"tag":170,"props":695,"children":697},{"id":696},"_4c-compute-element-context",[698],{"type":48,"value":699},"4c — Compute element context",{"type":43,"tag":102,"props":701,"children":702},{},[703,720],{"type":43,"tag":106,"props":704,"children":705},{},[706,712,714],{"type":43,"tag":61,"props":707,"children":709},{"className":708},[],[710],{"type":48,"value":711},"elementId",{"type":48,"value":713}," = ",{"type":43,"tag":61,"props":715,"children":717},{"className":716},[],[718],{"type":48,"value":719},"thread.elementId?.element",{"type":43,"tag":106,"props":721,"children":722},{},[723,729,730,735,737,743],{"type":43,"tag":61,"props":724,"children":726},{"className":725},[],[727],{"type":48,"value":728},"isPageLevel",{"type":48,"value":713},{"type":43,"tag":61,"props":731,"children":733},{"className":732},[],[734],{"type":48,"value":711},{"type":48,"value":736}," appears on 2 or more distinct ",{"type":43,"tag":61,"props":738,"children":740},{"className":739},[],[741],{"type":48,"value":742},"pageId",{"type":48,"value":744},"s in the frequency map from Step 3",{"type":43,"tag":170,"props":746,"children":748},{"id":747},"_4d-classify-the-thread",[749],{"type":48,"value":750},"4d — Classify the thread",{"type":43,"tag":44,"props":752,"children":753},{},[754],{"type":48,"value":755},"Use the following criteria:",{"type":43,"tag":44,"props":757,"children":758},{},[759,764],{"type":43,"tag":53,"props":760,"children":761},{},[762],{"type":48,"value":763},"noise",{"type":48,"value":765}," — No real design or engineering value:",{"type":43,"tag":102,"props":767,"children":768},{},[769,774,779],{"type":43,"tag":106,"props":770,"children":771},{},[772],{"type":48,"value":773},"Test\u002Fplaceholder text (\"hello world\", \"testing\", \"asdf\", random characters)",{"type":43,"tag":106,"props":775,"children":776},{},[777],{"type":48,"value":778},"Casual reactions with no ask (\"looks nice\", \"nice!\", \"hey hey\")",{"type":43,"tag":106,"props":780,"children":781},{},[782],{"type":48,"value":783},"Duplicate sentiments that add nothing",{"type":43,"tag":44,"props":785,"children":786},{},[787,792],{"type":43,"tag":53,"props":788,"children":789},{},[790],{"type":48,"value":791},"stale",{"type":48,"value":793}," — Real concern, but old and likely handled:",{"type":43,"tag":102,"props":795,"children":796},{},[797,802,807],{"type":43,"tag":106,"props":798,"children":799},{},[800],{"type":48,"value":801},"Substantive comments older than 14 days with no replies and no follow-up",{"type":43,"tag":106,"props":803,"children":804},{},[805],{"type":48,"value":806},"Questions that are probably resolved (\"beta for how long?\", \"is this good contrast?\")",{"type":43,"tag":106,"props":808,"children":809},{},[810],{"type":48,"value":811},"Action items that normal review would have caught",{"type":43,"tag":44,"props":813,"children":814},{},[815,820],{"type":43,"tag":53,"props":816,"children":817},{},[818],{"type":48,"value":819},"open",{"type":48,"value":821}," — Real, actionable concern needing attention:",{"type":43,"tag":102,"props":823,"children":824},{},[825,830,835],{"type":43,"tag":106,"props":826,"children":827},{},[828],{"type":48,"value":829},"Explicit tasks (\"Should be sentence case\", \"fix image\", \"Look at name wrt L10N\")",{"type":43,"tag":106,"props":831,"children":832},{},[833],{"type":48,"value":834},"Design decisions still required",{"type":43,"tag":106,"props":836,"children":837},{},[838],{"type":48,"value":839},"Specific and concrete concerns",{"type":43,"tag":44,"props":841,"children":842},{},[843,848],{"type":43,"tag":53,"props":844,"children":845},{},[846],{"type":48,"value":847},"page-level",{"type":48,"value":849}," — Comment is on the page root, not a specific element:",{"type":43,"tag":102,"props":851,"children":852},{},[853,865],{"type":43,"tag":106,"props":854,"children":855},{},[856,858,863],{"type":48,"value":857},"Use this when ",{"type":43,"tag":61,"props":859,"children":861},{"className":860},[],[862],{"type":48,"value":728},{"type":48,"value":864}," is true",{"type":43,"tag":106,"props":866,"children":867},{},[868],{"type":48,"value":869},"The comment is not anchored to any specific element — it may be intentional or may be an orphan from a deleted element",{"type":43,"tag":170,"props":871,"children":873},{"id":872},"_4e-compose-reply",[874],{"type":48,"value":875},"4e — Compose reply",{"type":43,"tag":44,"props":877,"children":878},{},[879],{"type":48,"value":880},"Always compose the reply text (it appears in the report regardless of mode):",{"type":43,"tag":102,"props":882,"children":883},{},[884,899,914,923],{"type":43,"tag":106,"props":885,"children":886},{},[887,891,893],{"type":43,"tag":53,"props":888,"children":889},{},[890],{"type":48,"value":763},{"type":48,"value":892},": one sentence confirming it's safe to resolve. E.g. ",{"type":43,"tag":61,"props":894,"children":896},{"className":895},[],[897],{"type":48,"value":898},"\"Looks like test text — safe to resolve.\"",{"type":43,"tag":106,"props":900,"children":901},{},[902,906,908],{"type":43,"tag":53,"props":903,"children":904},{},[905],{"type":48,"value":791},{"type":48,"value":907},": state the age in days, suggest resolving, invite reopen. E.g. ",{"type":43,"tag":61,"props":909,"children":911},{"className":910},[],[912],{"type":48,"value":913},"\"This is 302 days old with no follow-up. Safe to resolve — reply here if it's still relevant.\"",{"type":43,"tag":106,"props":915,"children":916},{},[917,921],{"type":43,"tag":53,"props":918,"children":919},{},[920],{"type":48,"value":819},{"type":48,"value":922},": no reply text — surface in report only.",{"type":43,"tag":106,"props":924,"children":925},{},[926,930,932],{"type":43,"tag":53,"props":927,"children":928},{},[929],{"type":48,"value":847},{"type":48,"value":931},": one sentence noting it's not attached to a specific element. E.g. ",{"type":43,"tag":61,"props":933,"children":935},{"className":934},[],[936],{"type":48,"value":937},"\"This comment is on the page root rather than a specific element — it may be an orphan from a deleted element. Safe to resolve if no longer relevant.\"",{"type":43,"tag":44,"props":939,"children":940},{},[941,943,949],{"type":48,"value":942},"Append ",{"type":43,"tag":61,"props":944,"children":946},{"className":945},[],[947],{"type":48,"value":948},"\\n\\n— 🤖 Comment Review Agent",{"type":48,"value":950}," to every reply text.",{"type":43,"tag":170,"props":952,"children":954},{"id":953},"_4f-post-reply-only-if-replymode-true",[955,957,962],{"type":48,"value":956},"4f — Post reply (only if ",{"type":43,"tag":61,"props":958,"children":960},{"className":959},[],[961],{"type":48,"value":140},{"type":48,"value":963},")",{"type":43,"tag":44,"props":965,"children":966},{},[967,969,975,977,983,985,990,992,998],{"type":48,"value":968},"If ",{"type":43,"tag":61,"props":970,"children":972},{"className":971},[],[973],{"type":48,"value":974},"replyMode",{"type":48,"value":976}," is ",{"type":43,"tag":61,"props":978,"children":980},{"className":979},[],[981],{"type":48,"value":982},"true",{"type":48,"value":984}," and verdict is not ",{"type":43,"tag":61,"props":986,"children":988},{"className":987},[],[989],{"type":48,"value":819},{"type":48,"value":991},", call ",{"type":43,"tag":61,"props":993,"children":995},{"className":994},[],[996],{"type":48,"value":997},"data_comments_tool > create_reply",{"type":48,"value":999}," with the composed reply content.",{"type":43,"tag":44,"props":1001,"children":1002},{},[1003],{"type":48,"value":1004},"Log each thread as:",{"type":43,"tag":351,"props":1006,"children":1009},{"className":1007,"code":1008,"language":48},[354],"{VERDICT_EMOJI} {verdict}  \"{preview (60 chars)}\"\n                {one-sentence classification reason}\n                ↳ {reply posted | no reply — report only | skipped}\n",[1010],{"type":43,"tag":61,"props":1011,"children":1012},{"__ignoreMap":359},[1013],{"type":48,"value":1008},{"type":43,"tag":44,"props":1015,"children":1016},{},[1017],{"type":48,"value":1018},"Verdict emojis: noise = 🗑, stale = 🕰, open = 🔴, page-level = 📄",{"type":43,"tag":159,"props":1020,"children":1021},{},[],{"type":43,"tag":163,"props":1023,"children":1025},{"id":1024},"step-5-write-the-report",[1026],{"type":48,"value":1027},"Step 5 — Write the report",{"type":43,"tag":44,"props":1029,"children":1030},{},[1031],{"type":48,"value":1032},"After processing all threads:",{"type":43,"tag":177,"props":1034,"children":1035},{},[1036,1054],{"type":43,"tag":106,"props":1037,"children":1038},{},[1039,1041,1046,1048,1053],{"type":48,"value":1040},"Check whether a ",{"type":43,"tag":61,"props":1042,"children":1044},{"className":1043},[],[1045],{"type":48,"value":397},{"type":48,"value":1047}," directory exists at the top level of the working directory. If it does not exist, create it with ",{"type":43,"tag":61,"props":1049,"children":1051},{"className":1050},[],[1052],{"type":48,"value":405},{"type":48,"value":289},{"type":43,"tag":106,"props":1055,"children":1056},{},[1057,1059,1065],{"type":48,"value":1058},"Write a markdown report to ",{"type":43,"tag":61,"props":1060,"children":1062},{"className":1061},[],[1063],{"type":48,"value":1064},"comment-reviews\u002F{slugified-site-name}-comments-triage-report.md",{"type":48,"value":1066}," (lowercase, hyphens, no special chars).",{"type":43,"tag":44,"props":1068,"children":1069},{},[1070],{"type":48,"value":1071},"Report format:",{"type":43,"tag":351,"props":1073,"children":1077},{"className":1074,"code":1075,"language":1076,"meta":359,"style":359},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Comment Review — [{siteName} ({siteId})](https:\u002F\u002Fwebflow.com\u002Fdesign\u002F{siteId})\n\n**Run:** {human-readable date and time}\n**Mode:** {Report only | Report + replies posted}\n**Threads:** {total} total | 🔴 {open} open | 🕰 {stale} stale | 📄 {page-level} page-level | 🗑 {noise} noise | ⏭ {skipped} skipped\n\n---\n\n## 🔴 Needs Attention ({count})\n\n| Comment | Author | Age | Link |\n|---------|--------|-----|------|\n| \"{first 80 chars of content}\" | {author.name} | {age in days}d | [Open ↗]({thread.url}) |\n\n## 🕰 Stale — Candidates to Resolve ({count})\n\n| Comment | Author | Age | Suggested Reply | Link |\n|---------|--------|-----|-----------------|------|\n| \"{first 80 chars of content}\" | {author.name} | {age in days}d | {composed reply text, without the `— 🤖 Comment Review Agent` suffix} | [Open ↗]({thread.url}) |\n\n## 📄 Page-level — Not Anchored to a Specific Element ({count})\n\n| Comment | Author | Age | Suggested Reply | Link |\n|---------|--------|-----|-----------------|------|\n...\n\n---\n\n**🗑 Noise:** {count} thread(s) — {if replyMode: \"replied to\" | if report-only: \"suggested replies in report\"}. Safe to bulk-resolve.\n","markdown",[1078],{"type":43,"tag":61,"props":1079,"children":1080},{"__ignoreMap":359},[1081,1125,1135,1161,1183,1205,1213,1221,1229,1243,1251,1297,1306,1369,1377,1390,1398,1446,1455,1538,1546,1559,1567,1615,1623,1632,1640,1648,1656],{"type":43,"tag":1082,"props":1083,"children":1086},"span",{"class":1084,"line":1085},"line",1,[1087,1093,1099,1104,1110,1115,1120],{"type":43,"tag":1082,"props":1088,"children":1090},{"style":1089},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1091],{"type":48,"value":1092},"# ",{"type":43,"tag":1082,"props":1094,"children":1096},{"style":1095},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1097],{"type":48,"value":1098},"Comment Review — ",{"type":43,"tag":1082,"props":1100,"children":1101},{"style":1089},[1102],{"type":48,"value":1103},"[",{"type":43,"tag":1082,"props":1105,"children":1107},{"style":1106},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1108],{"type":48,"value":1109},"{siteName} ({siteId})",{"type":43,"tag":1082,"props":1111,"children":1112},{"style":1089},[1113],{"type":48,"value":1114},"](",{"type":43,"tag":1082,"props":1116,"children":1118},{"style":1117},"--shiki-light:#E53935;--shiki-light-text-decoration:underline;--shiki-default:#F07178;--shiki-default-text-decoration:underline;--shiki-dark:#F07178;--shiki-dark-text-decoration:underline",[1119],{"type":48,"value":347},{"type":43,"tag":1082,"props":1121,"children":1122},{"style":1089},[1123],{"type":48,"value":1124},")\n",{"type":43,"tag":1082,"props":1126,"children":1128},{"class":1084,"line":1127},2,[1129],{"type":43,"tag":1082,"props":1130,"children":1132},{"emptyLinePlaceholder":1131},true,[1133],{"type":48,"value":1134},"\n",{"type":43,"tag":1082,"props":1136,"children":1138},{"class":1084,"line":1137},3,[1139,1145,1151,1155],{"type":43,"tag":1082,"props":1140,"children":1142},{"style":1141},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[1143],{"type":48,"value":1144},"**",{"type":43,"tag":1082,"props":1146,"children":1148},{"style":1147},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[1149],{"type":48,"value":1150},"Run:",{"type":43,"tag":1082,"props":1152,"children":1153},{"style":1141},[1154],{"type":48,"value":1144},{"type":43,"tag":1082,"props":1156,"children":1158},{"style":1157},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1159],{"type":48,"value":1160}," {human-readable date and time}\n",{"type":43,"tag":1082,"props":1162,"children":1164},{"class":1084,"line":1163},4,[1165,1169,1174,1178],{"type":43,"tag":1082,"props":1166,"children":1167},{"style":1141},[1168],{"type":48,"value":1144},{"type":43,"tag":1082,"props":1170,"children":1171},{"style":1147},[1172],{"type":48,"value":1173},"Mode:",{"type":43,"tag":1082,"props":1175,"children":1176},{"style":1141},[1177],{"type":48,"value":1144},{"type":43,"tag":1082,"props":1179,"children":1180},{"style":1157},[1181],{"type":48,"value":1182}," {Report only | Report + replies posted}\n",{"type":43,"tag":1082,"props":1184,"children":1186},{"class":1084,"line":1185},5,[1187,1191,1196,1200],{"type":43,"tag":1082,"props":1188,"children":1189},{"style":1141},[1190],{"type":48,"value":1144},{"type":43,"tag":1082,"props":1192,"children":1193},{"style":1147},[1194],{"type":48,"value":1195},"Threads:",{"type":43,"tag":1082,"props":1197,"children":1198},{"style":1141},[1199],{"type":48,"value":1144},{"type":43,"tag":1082,"props":1201,"children":1202},{"style":1157},[1203],{"type":48,"value":1204}," {total} total | 🔴 {open} open | 🕰 {stale} stale | 📄 {page-level} page-level | 🗑 {noise} noise | ⏭ {skipped} skipped\n",{"type":43,"tag":1082,"props":1206,"children":1208},{"class":1084,"line":1207},6,[1209],{"type":43,"tag":1082,"props":1210,"children":1211},{"emptyLinePlaceholder":1131},[1212],{"type":48,"value":1134},{"type":43,"tag":1082,"props":1214,"children":1215},{"class":1084,"line":364},[1216],{"type":43,"tag":1082,"props":1217,"children":1218},{"style":1089},[1219],{"type":48,"value":1220},"---\n",{"type":43,"tag":1082,"props":1222,"children":1224},{"class":1084,"line":1223},8,[1225],{"type":43,"tag":1082,"props":1226,"children":1227},{"emptyLinePlaceholder":1131},[1228],{"type":48,"value":1134},{"type":43,"tag":1082,"props":1230,"children":1232},{"class":1084,"line":1231},9,[1233,1238],{"type":43,"tag":1082,"props":1234,"children":1235},{"style":1089},[1236],{"type":48,"value":1237},"## ",{"type":43,"tag":1082,"props":1239,"children":1240},{"style":1095},[1241],{"type":48,"value":1242},"🔴 Needs Attention ({count})\n",{"type":43,"tag":1082,"props":1244,"children":1246},{"class":1084,"line":1245},10,[1247],{"type":43,"tag":1082,"props":1248,"children":1249},{"emptyLinePlaceholder":1131},[1250],{"type":48,"value":1134},{"type":43,"tag":1082,"props":1252,"children":1254},{"class":1084,"line":1253},11,[1255,1260,1265,1269,1274,1278,1283,1287,1292],{"type":43,"tag":1082,"props":1256,"children":1257},{"style":1089},[1258],{"type":48,"value":1259},"|",{"type":43,"tag":1082,"props":1261,"children":1262},{"style":1157},[1263],{"type":48,"value":1264}," Comment ",{"type":43,"tag":1082,"props":1266,"children":1267},{"style":1089},[1268],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1270,"children":1271},{"style":1157},[1272],{"type":48,"value":1273}," Author ",{"type":43,"tag":1082,"props":1275,"children":1276},{"style":1089},[1277],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1279,"children":1280},{"style":1157},[1281],{"type":48,"value":1282}," Age ",{"type":43,"tag":1082,"props":1284,"children":1285},{"style":1089},[1286],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1288,"children":1289},{"style":1157},[1290],{"type":48,"value":1291}," Link ",{"type":43,"tag":1082,"props":1293,"children":1294},{"style":1089},[1295],{"type":48,"value":1296},"|\n",{"type":43,"tag":1082,"props":1298,"children":1300},{"class":1084,"line":1299},12,[1301],{"type":43,"tag":1082,"props":1302,"children":1303},{"style":1089},[1304],{"type":48,"value":1305},"|---------|--------|-----|------|\n",{"type":43,"tag":1082,"props":1307,"children":1309},{"class":1084,"line":1308},13,[1310,1314,1319,1323,1328,1332,1337,1341,1346,1351,1355,1360,1364],{"type":43,"tag":1082,"props":1311,"children":1312},{"style":1089},[1313],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1315,"children":1316},{"style":1157},[1317],{"type":48,"value":1318}," \"{first 80 chars of content}\" ",{"type":43,"tag":1082,"props":1320,"children":1321},{"style":1089},[1322],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1324,"children":1325},{"style":1157},[1326],{"type":48,"value":1327}," {author.name} ",{"type":43,"tag":1082,"props":1329,"children":1330},{"style":1089},[1331],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1333,"children":1334},{"style":1157},[1335],{"type":48,"value":1336}," {age in days}d ",{"type":43,"tag":1082,"props":1338,"children":1339},{"style":1089},[1340],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1342,"children":1343},{"style":1089},[1344],{"type":48,"value":1345}," [",{"type":43,"tag":1082,"props":1347,"children":1348},{"style":1106},[1349],{"type":48,"value":1350},"Open ↗",{"type":43,"tag":1082,"props":1352,"children":1353},{"style":1089},[1354],{"type":48,"value":1114},{"type":43,"tag":1082,"props":1356,"children":1357},{"style":1117},[1358],{"type":48,"value":1359},"{thread.url}",{"type":43,"tag":1082,"props":1361,"children":1362},{"style":1089},[1363],{"type":48,"value":963},{"type":43,"tag":1082,"props":1365,"children":1366},{"style":1089},[1367],{"type":48,"value":1368}," |\n",{"type":43,"tag":1082,"props":1370,"children":1372},{"class":1084,"line":1371},14,[1373],{"type":43,"tag":1082,"props":1374,"children":1375},{"emptyLinePlaceholder":1131},[1376],{"type":48,"value":1134},{"type":43,"tag":1082,"props":1378,"children":1380},{"class":1084,"line":1379},15,[1381,1385],{"type":43,"tag":1082,"props":1382,"children":1383},{"style":1089},[1384],{"type":48,"value":1237},{"type":43,"tag":1082,"props":1386,"children":1387},{"style":1095},[1388],{"type":48,"value":1389},"🕰 Stale — Candidates to Resolve ({count})\n",{"type":43,"tag":1082,"props":1391,"children":1393},{"class":1084,"line":1392},16,[1394],{"type":43,"tag":1082,"props":1395,"children":1396},{"emptyLinePlaceholder":1131},[1397],{"type":48,"value":1134},{"type":43,"tag":1082,"props":1399,"children":1400},{"class":1084,"line":28},[1401,1405,1409,1413,1417,1421,1425,1429,1434,1438,1442],{"type":43,"tag":1082,"props":1402,"children":1403},{"style":1089},[1404],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1406,"children":1407},{"style":1157},[1408],{"type":48,"value":1264},{"type":43,"tag":1082,"props":1410,"children":1411},{"style":1089},[1412],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1414,"children":1415},{"style":1157},[1416],{"type":48,"value":1273},{"type":43,"tag":1082,"props":1418,"children":1419},{"style":1089},[1420],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1422,"children":1423},{"style":1157},[1424],{"type":48,"value":1282},{"type":43,"tag":1082,"props":1426,"children":1427},{"style":1089},[1428],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1430,"children":1431},{"style":1157},[1432],{"type":48,"value":1433}," Suggested Reply ",{"type":43,"tag":1082,"props":1435,"children":1436},{"style":1089},[1437],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1439,"children":1440},{"style":1157},[1441],{"type":48,"value":1291},{"type":43,"tag":1082,"props":1443,"children":1444},{"style":1089},[1445],{"type":48,"value":1296},{"type":43,"tag":1082,"props":1447,"children":1449},{"class":1084,"line":1448},18,[1450],{"type":43,"tag":1082,"props":1451,"children":1452},{"style":1089},[1453],{"type":48,"value":1454},"|---------|--------|-----|-----------------|------|\n",{"type":43,"tag":1082,"props":1456,"children":1458},{"class":1084,"line":1457},19,[1459,1463,1467,1471,1475,1479,1483,1487,1492,1497,1501,1505,1510,1514,1518,1522,1526,1530,1534],{"type":43,"tag":1082,"props":1460,"children":1461},{"style":1089},[1462],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1464,"children":1465},{"style":1157},[1466],{"type":48,"value":1318},{"type":43,"tag":1082,"props":1468,"children":1469},{"style":1089},[1470],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1472,"children":1473},{"style":1157},[1474],{"type":48,"value":1327},{"type":43,"tag":1082,"props":1476,"children":1477},{"style":1089},[1478],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1480,"children":1481},{"style":1157},[1482],{"type":48,"value":1336},{"type":43,"tag":1082,"props":1484,"children":1485},{"style":1089},[1486],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1488,"children":1489},{"style":1157},[1490],{"type":48,"value":1491}," {composed reply text, without the ",{"type":43,"tag":1082,"props":1493,"children":1494},{"style":1089},[1495],{"type":48,"value":1496},"`",{"type":43,"tag":1082,"props":1498,"children":1499},{"style":1106},[1500],{"type":48,"value":656},{"type":43,"tag":1082,"props":1502,"children":1503},{"style":1089},[1504],{"type":48,"value":1496},{"type":43,"tag":1082,"props":1506,"children":1507},{"style":1157},[1508],{"type":48,"value":1509}," suffix} ",{"type":43,"tag":1082,"props":1511,"children":1512},{"style":1089},[1513],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1515,"children":1516},{"style":1089},[1517],{"type":48,"value":1345},{"type":43,"tag":1082,"props":1519,"children":1520},{"style":1106},[1521],{"type":48,"value":1350},{"type":43,"tag":1082,"props":1523,"children":1524},{"style":1089},[1525],{"type":48,"value":1114},{"type":43,"tag":1082,"props":1527,"children":1528},{"style":1117},[1529],{"type":48,"value":1359},{"type":43,"tag":1082,"props":1531,"children":1532},{"style":1089},[1533],{"type":48,"value":963},{"type":43,"tag":1082,"props":1535,"children":1536},{"style":1089},[1537],{"type":48,"value":1368},{"type":43,"tag":1082,"props":1539,"children":1541},{"class":1084,"line":1540},20,[1542],{"type":43,"tag":1082,"props":1543,"children":1544},{"emptyLinePlaceholder":1131},[1545],{"type":48,"value":1134},{"type":43,"tag":1082,"props":1547,"children":1549},{"class":1084,"line":1548},21,[1550,1554],{"type":43,"tag":1082,"props":1551,"children":1552},{"style":1089},[1553],{"type":48,"value":1237},{"type":43,"tag":1082,"props":1555,"children":1556},{"style":1095},[1557],{"type":48,"value":1558},"📄 Page-level — Not Anchored to a Specific Element ({count})\n",{"type":43,"tag":1082,"props":1560,"children":1562},{"class":1084,"line":1561},22,[1563],{"type":43,"tag":1082,"props":1564,"children":1565},{"emptyLinePlaceholder":1131},[1566],{"type":48,"value":1134},{"type":43,"tag":1082,"props":1568,"children":1570},{"class":1084,"line":1569},23,[1571,1575,1579,1583,1587,1591,1595,1599,1603,1607,1611],{"type":43,"tag":1082,"props":1572,"children":1573},{"style":1089},[1574],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1576,"children":1577},{"style":1157},[1578],{"type":48,"value":1264},{"type":43,"tag":1082,"props":1580,"children":1581},{"style":1089},[1582],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1584,"children":1585},{"style":1157},[1586],{"type":48,"value":1273},{"type":43,"tag":1082,"props":1588,"children":1589},{"style":1089},[1590],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1592,"children":1593},{"style":1157},[1594],{"type":48,"value":1282},{"type":43,"tag":1082,"props":1596,"children":1597},{"style":1089},[1598],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1600,"children":1601},{"style":1157},[1602],{"type":48,"value":1433},{"type":43,"tag":1082,"props":1604,"children":1605},{"style":1089},[1606],{"type":48,"value":1259},{"type":43,"tag":1082,"props":1608,"children":1609},{"style":1157},[1610],{"type":48,"value":1291},{"type":43,"tag":1082,"props":1612,"children":1613},{"style":1089},[1614],{"type":48,"value":1296},{"type":43,"tag":1082,"props":1616,"children":1618},{"class":1084,"line":1617},24,[1619],{"type":43,"tag":1082,"props":1620,"children":1621},{"style":1089},[1622],{"type":48,"value":1454},{"type":43,"tag":1082,"props":1624,"children":1626},{"class":1084,"line":1625},25,[1627],{"type":43,"tag":1082,"props":1628,"children":1629},{"style":1157},[1630],{"type":48,"value":1631},"...\n",{"type":43,"tag":1082,"props":1633,"children":1635},{"class":1084,"line":1634},26,[1636],{"type":43,"tag":1082,"props":1637,"children":1638},{"emptyLinePlaceholder":1131},[1639],{"type":48,"value":1134},{"type":43,"tag":1082,"props":1641,"children":1643},{"class":1084,"line":1642},27,[1644],{"type":43,"tag":1082,"props":1645,"children":1646},{"style":1089},[1647],{"type":48,"value":1220},{"type":43,"tag":1082,"props":1649,"children":1651},{"class":1084,"line":1650},28,[1652],{"type":43,"tag":1082,"props":1653,"children":1654},{"emptyLinePlaceholder":1131},[1655],{"type":48,"value":1134},{"type":43,"tag":1082,"props":1657,"children":1659},{"class":1084,"line":1658},29,[1660,1664,1669,1673],{"type":43,"tag":1082,"props":1661,"children":1662},{"style":1141},[1663],{"type":48,"value":1144},{"type":43,"tag":1082,"props":1665,"children":1666},{"style":1147},[1667],{"type":48,"value":1668},"🗑 Noise:",{"type":43,"tag":1082,"props":1670,"children":1671},{"style":1141},[1672],{"type":48,"value":1144},{"type":43,"tag":1082,"props":1674,"children":1675},{"style":1157},[1676],{"type":48,"value":1677}," {count} thread(s) — {if replyMode: \"replied to\" | if report-only: \"suggested replies in report\"}. Safe to bulk-resolve.\n",{"type":43,"tag":44,"props":1679,"children":1680},{},[1681,1683,1689],{"type":48,"value":1682},"Use ",{"type":43,"tag":61,"props":1684,"children":1686},{"className":1685},[],[1687],{"type":48,"value":1688},"_None._",{"type":48,"value":1690}," for any section with no entries.",{"type":43,"tag":44,"props":1692,"children":1693},{},[1694],{"type":48,"value":1695},"Log a summary line and confirm the report path.",{"type":43,"tag":1697,"props":1698,"children":1699},"style",{},[1700],{"type":48,"value":1701},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1703,"total":1650},[1704,1725,1742,1759,1774,1790,1806,1820,1834,1846,1860,1876],{"slug":1705,"name":1706,"fn":1707,"description":1708,"org":1709,"tags":1710,"stars":24,"repoUrl":25,"updatedAt":1724},"webflow-clicloud","webflow-cli:cloud","deploy applications to Webflow Cloud","Initialize, build, and deploy full-stack Webflow applications to Webflow Cloud hosting. Supports site-attached deploys (linked to an existing Webflow site) and project app deploys (independent project, no existing site required). Use when creating new projects, deploying existing ones, or setting up CI\u002FCD pipelines for Webflow Cloud.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1711,1714,1717,1720,1723],{"name":1712,"slug":1713,"type":16},"CLI","cli",{"name":1715,"slug":1716,"type":16},"Cloud","cloud",{"name":1718,"slug":1719,"type":16},"Deployment","deployment",{"name":1721,"slug":1722,"type":16},"Full-stack","full-stack",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:47.514609",{"slug":1726,"name":1727,"fn":1728,"description":1729,"org":1730,"tags":1731,"stars":24,"repoUrl":25,"updatedAt":1741},"webflow-clicode-component","webflow-cli:code-component","create and deploy Webflow Code Components","Create and deploy reusable React components for Webflow Designer. Configure existing React projects with webflow.json, build and bundle code, validate output, and deploy to workspace using library share. Use when building custom components for designers.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1732,1733,1734,1737,1740],{"name":1712,"slug":1713,"type":16},{"name":1718,"slug":1719,"type":16},{"name":1735,"slug":1736,"type":16},"React","react",{"name":1738,"slug":1739,"type":16},"UI Components","ui-components",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:41.421071",{"slug":1743,"name":1744,"fn":1745,"description":1746,"org":1747,"tags":1748,"stars":24,"repoUrl":25,"updatedAt":1758},"webflow-clidesigner-extension","webflow-cli:designer-extension","build Webflow Designer Extensions","Build Designer Extensions for custom Webflow Designer functionality. Lists available templates, initializes extension projects from templates (default\u002Freact\u002Ftypescript-alt), bundles extensions for upload, and serves locally for development.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1749,1750,1753,1754,1757],{"name":1712,"slug":1713,"type":16},{"name":1751,"slug":1752,"type":16},"Plugin Development","plugin-development",{"name":1735,"slug":1736,"type":16},{"name":1755,"slug":1756,"type":16},"TypeScript","typescript",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:43.853573",{"slug":1760,"name":1761,"fn":1762,"description":1763,"org":1764,"tags":1765,"stars":24,"repoUrl":25,"updatedAt":1773},"webflow-clidevlink","webflow-cli:devlink","export Webflow components to React and Next.js","Export Webflow Designer components to React\u002FNext.js code for external projects. Configure devlink settings in webflow.json, sync design updates with devlink sync, validate generated code, show diffs, and provide integration examples. Use when building with Webflow designs in React\u002FNext.js.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1766,1767,1768,1771,1772],{"name":1712,"slug":1713,"type":16},{"name":22,"slug":23,"type":16},{"name":1769,"slug":1770,"type":16},"Next.js","next-js",{"name":1735,"slug":1736,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:40.182468",{"slug":1775,"name":1776,"fn":1777,"description":1778,"org":1779,"tags":1780,"stars":24,"repoUrl":25,"updatedAt":1789},"webflow-clitroubleshooter","webflow-cli:troubleshooter","troubleshoot Webflow CLI issues","Diagnose and fix Webflow CLI issues including installation problems, authentication failures, build errors, and bundle problems. Uses CLI diagnostic flags (--version, --help, --verbose, --debug-bundler) for troubleshooting.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1781,1782,1785,1788],{"name":1712,"slug":1713,"type":16},{"name":1783,"slug":1784,"type":16},"Configuration","configuration",{"name":1786,"slug":1787,"type":16},"Debugging","debugging",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:48.831648",{"slug":1791,"name":1792,"fn":1793,"description":1794,"org":1795,"tags":1796,"stars":24,"repoUrl":25,"updatedAt":1805},"webflow-code-componentcomponent-audit","webflow-code-component:component-audit","audit Webflow Code Component architecture","Audit Webflow Code Components for architecture decisions - prop exposure, state management, slot opportunities, and Shadow DOM compatibility. Focused on Webflow-specific patterns, not generic React best practices.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1797,1800,1803,1804],{"name":1798,"slug":1799,"type":16},"Architecture","architecture",{"name":1801,"slug":1802,"type":16},"Code Analysis","code-analysis",{"name":1735,"slug":1736,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:46.277768",{"slug":1807,"name":1808,"fn":1809,"description":1810,"org":1811,"tags":1812,"stars":24,"repoUrl":25,"updatedAt":1819},"webflow-code-componentcomponent-scaffold","webflow-code-component:component-scaffold","scaffold Webflow Code Component boilerplate","Generate new Webflow Code Component boilerplate with React component, definition file, and optional styling. Automatically checks prerequisites and can set up missing config\u002Fdependencies.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1813,1814,1815,1818],{"name":22,"slug":23,"type":16},{"name":1735,"slug":1736,"type":16},{"name":1816,"slug":1817,"type":16},"Templates","templates",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:42.638042",{"slug":1821,"name":1822,"fn":1823,"description":1824,"org":1825,"tags":1826,"stars":24,"repoUrl":25,"updatedAt":1833},"webflow-code-componentconvert-component","webflow-code-component:convert-component","convert React components to Webflow Code Components","Convert an existing React component into a Webflow Code Component. Analyzes TypeScript props, maps to Webflow prop types, generates the .webflow.tsx definition file, and identifies required modifications.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1827,1830,1831,1832],{"name":1828,"slug":1829,"type":16},"Migration","migration",{"name":1735,"slug":1736,"type":16},{"name":1755,"slug":1756,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:52.523608",{"slug":1835,"name":1836,"fn":1837,"description":1838,"org":1839,"tags":1840,"stars":24,"repoUrl":25,"updatedAt":1845},"webflow-code-componentdeploy-guide","webflow-code-component:deploy-guide","deploy Webflow Code Components","Step-by-step guide for deploying Webflow Code Components to a workspace. Covers authentication, pre-flight checks, deployment execution, and verification.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1841,1842,1843,1844],{"name":1718,"slug":1719,"type":16},{"name":22,"slug":23,"type":16},{"name":1735,"slug":1736,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:38.947875",{"slug":1847,"name":1848,"fn":1849,"description":1850,"org":1851,"tags":1852,"stars":24,"repoUrl":25,"updatedAt":1859},"webflow-code-componentlocal-dev-setup","webflow-code-component:local-dev-setup","set up local Webflow Code Component projects","Initialize a new Webflow Code Components project from scratch. Creates project structure, installs dependencies, configures webflow.json, and sets up development environment.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1853,1854,1857,1858],{"name":1783,"slug":1784,"type":16},{"name":1855,"slug":1856,"type":16},"Local Development","local-development",{"name":1735,"slug":1736,"type":16},{"name":10,"slug":9,"type":16},"2026-05-18T06:47:50.062783",{"slug":1861,"name":1862,"fn":1863,"description":1864,"org":1865,"tags":1866,"stars":24,"repoUrl":25,"updatedAt":1875},"webflow-code-componentpre-deploy-check","webflow-code-component:pre-deploy-check","validate Webflow Code Components before deployment","Pre-deployment validation for Webflow Code Components. Checks bundle size, dependencies, prop configurations, SSR compatibility, styling setup, and common issues before running webflow library share.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1867,1868,1871,1874],{"name":1718,"slug":1719,"type":16},{"name":1869,"slug":1870,"type":16},"QA","qa",{"name":1872,"slug":1873,"type":16},"Validation","validation",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:51.300653",{"slug":1877,"name":1878,"fn":1879,"description":1880,"org":1881,"tags":1882,"stars":24,"repoUrl":25,"updatedAt":1889},"webflow-code-componenttroubleshoot-deploy","webflow-code-component:troubleshoot-deploy","troubleshoot Webflow Code Component deployments","Debug deployment failures for Webflow Code Components. Analyzes error messages, identifies root causes, and provides specific fixes for common issues.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1883,1884,1885,1888],{"name":1786,"slug":1787,"type":16},{"name":1718,"slug":1719,"type":16},{"name":1886,"slug":1887,"type":16},"Observability","observability",{"name":10,"slug":9,"type":16},"2026-05-18T06:47:45.057571",{"items":1891,"total":1650},[1892,1900,1908,1916,1924,1931,1938],{"slug":1705,"name":1706,"fn":1707,"description":1708,"org":1893,"tags":1894,"stars":24,"repoUrl":25,"updatedAt":1724},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1895,1896,1897,1898,1899],{"name":1712,"slug":1713,"type":16},{"name":1715,"slug":1716,"type":16},{"name":1718,"slug":1719,"type":16},{"name":1721,"slug":1722,"type":16},{"name":10,"slug":9,"type":16},{"slug":1726,"name":1727,"fn":1728,"description":1729,"org":1901,"tags":1902,"stars":24,"repoUrl":25,"updatedAt":1741},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1903,1904,1905,1906,1907],{"name":1712,"slug":1713,"type":16},{"name":1718,"slug":1719,"type":16},{"name":1735,"slug":1736,"type":16},{"name":1738,"slug":1739,"type":16},{"name":10,"slug":9,"type":16},{"slug":1743,"name":1744,"fn":1745,"description":1746,"org":1909,"tags":1910,"stars":24,"repoUrl":25,"updatedAt":1758},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1911,1912,1913,1914,1915],{"name":1712,"slug":1713,"type":16},{"name":1751,"slug":1752,"type":16},{"name":1735,"slug":1736,"type":16},{"name":1755,"slug":1756,"type":16},{"name":10,"slug":9,"type":16},{"slug":1760,"name":1761,"fn":1762,"description":1763,"org":1917,"tags":1918,"stars":24,"repoUrl":25,"updatedAt":1773},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1919,1920,1921,1922,1923],{"name":1712,"slug":1713,"type":16},{"name":22,"slug":23,"type":16},{"name":1769,"slug":1770,"type":16},{"name":1735,"slug":1736,"type":16},{"name":10,"slug":9,"type":16},{"slug":1775,"name":1776,"fn":1777,"description":1778,"org":1925,"tags":1926,"stars":24,"repoUrl":25,"updatedAt":1789},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1927,1928,1929,1930],{"name":1712,"slug":1713,"type":16},{"name":1783,"slug":1784,"type":16},{"name":1786,"slug":1787,"type":16},{"name":10,"slug":9,"type":16},{"slug":1791,"name":1792,"fn":1793,"description":1794,"org":1932,"tags":1933,"stars":24,"repoUrl":25,"updatedAt":1805},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1934,1935,1936,1937],{"name":1798,"slug":1799,"type":16},{"name":1801,"slug":1802,"type":16},{"name":1735,"slug":1736,"type":16},{"name":10,"slug":9,"type":16},{"slug":1807,"name":1808,"fn":1809,"description":1810,"org":1939,"tags":1940,"stars":24,"repoUrl":25,"updatedAt":1819},{"slug":9,"name":10,"logoUrl":11,"githubOrg":9},[1941,1942,1943,1944],{"name":22,"slug":23,"type":16},{"name":1735,"slug":1736,"type":16},{"name":1816,"slug":1817,"type":16},{"name":10,"slug":9,"type":16}]