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


