generate-followups
GitHub根据提供的文本生成自然的后续问题,适用于文章、回答或对话的延续。输入源文本后,直接返回JSON数组格式的疑问句列表,严禁修改内容。若输出包含特定节省标识,则原样附加在回复末尾。
触发场景
安装
npx skills add zerogpu/zerogpu-router --skill generate-followups -g -y
SKILL.md
Frontmatter
{
"name": "generate-followups",
"description": "Generate natural follow-up questions a reader would ask next about a passage (zlm-v1-followup-questions-edge). Use when the user wants suggested next questions, \"people also ask\" style prompts, or conversation continuations for an article, answer, or chat turn.",
"allowed-tools": "Bash(zerogpu generate_followups*)",
"argument-hint": "<text>"
}
Generate follow-up questions. $ARGUMENTS is the raw source text — pass it verbatim, no escaping or quoting required (the heredoc below handles every shell metacharacter, newline, quote, and paren safely):
ZGPU_TEXT=$(cat <<'ZGPU_END_OF_INPUT'
$ARGUMENTS
ZGPU_END_OF_INPUT
)
zerogpu generate_followups "$ZGPU_TEXT"
Output is a JSON array of question strings. Relay them as-is — do not rewrite, reorder, or add your own questions.
Savings note: only if the command output literally contains a line starting with 💰 ZeroGPU savings, append that exact line, unchanged, as the last line of your reply. If no such line is present, say nothing about savings and do not mention or suggest /zerogpu-router:cost-savings — this note is intentionally occasional, not shown every time.
版本历史
- cee9321 当前 2026-08-02 21:15


