generate-followups
GitHub调用 ZeroGPU API 生成与输入内容相关的后续问题,适用于“人们也问”或对话延续场景。原样返回 JSON 格式的问题列表,不修改内容,仅在输出包含特定节省信息时附带显示。
Trigger Scenarios
Install
npx skills add zerogpu/zerogpu-router --skill generate-followups -g -y
SKILL.md
Frontmatter
{
"name": "generate-followups",
"metadata": {
"openclaw": {
"install": [
{
"bins": [
"zerogpu"
],
"kind": "node",
"package": "zerogpu-cli"
}
],
"requires": {
"bins": [
"zerogpu"
]
}
}
},
"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>"
}
Sends your input to ZeroGPU's hosted API for inference — this is not local processing. Don't pass secrets, credentials, or regulated data you aren't cleared to share with a third party. See the plugin README's "Data & privacy" section.
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 the cost-savings skill — this note is intentionally occasional, not shown every time.
Version History
- cee9321 Current 2026-08-02 21:16


