comment-review-ai-responder

Generates publishable markdown replies to approved article comments using article context and web search.

2|Updated Jun 18, 2026
One-click install
npx skills add https://github.com/zero-yx/static_flow --skill comment-review-ai-responder-zero-yx
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: comment-review-ai-responder
Source: https://github.com/zero-yx/static_flow/tree/main/skills/comment-review-ai-responder
Command: npx skills add https://github.com/zero-yx/static_flow --skill comment-review-ai-responder-zero-yx

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Blog and knowledge-base authors receive reader comments that require thoughtful, article-grounded replies, but manually drafting each response is slow and inconsistent. This Skill turns one approved comment task into a ready-to-publish markdown reply automatically. ## Core Features & Use Cases - Context-grounded replies: Fetches the full article content via the local HTTP API (with sf-cli fallback) so answers are tied to the actual article text, selected quote, and anchor context. - Thread-aware responses: Incorporates quoted comment threads and prior AI replies when responding to nested discussions. - Rich markdown output: Produces valid markdown with optional Mermaid 10.x diagrams, cited web sources, and explicit uncertainty statements, written atomically to a backend-provided result file. - Use Case: A reader highlights a paragraph about memory allocation and asks a follow-up question; the backend approves the comment task, and this Skill generates a technical reply with an example and a flowchart, saved for publication in the comment thread. ## Quick Start Run this skill with the backend-provided comment task payload to generate a markdown reply for the approved comment and write it to the result file path.

Frequently Asked Questions about comment-review-ai-responder

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate AI replies to article comments automatically?▼

Provide a JSON task payload with the article ID, comment text, and optional selected quote, then let the skill fetch the article content and write a markdown reply to the result file path. The backend triggers it via the approve-and-run admin endpoint.

How does the skill fetch article content for comment replies?▼

It first calls the local backend HTTP API endpoint for the article's raw content. Only if the HTTP request fails or returns empty content does it fall back to an sf-cli query against the LanceDB content database.

Can the reply include Mermaid diagrams in markdown?▼

Yes, Mermaid diagrams are allowed inside fenced code blocks with the mermaid language tag. Syntax must be valid for Mermaid 10.x, with quoted node labels for punctuation and quoted decision node text.

What happens if the article context is insufficient to answer a comment?▼

The skill inspects more of the article content and proactively uses web search for external or fast-changing facts. Uncertainty is stated explicitly inside the markdown reply rather than giving shallow answers.

Does this skill write replies directly to the database?▼

No, it only writes the markdown reply to the file path given in the COMMENT_AI_RESULT_PATH environment variable. The backend reads that file and persists all database updates itself.