generate-followups
GitHub调用 ZeroGPU API 生成与输入文本相关的后续问题,适用于文章、回答或对话的延伸。直接透传输出结果,不修改内容。
触发场景
安装
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.
版本历史
- cee9321 当前 2026-08-02 21:16


