← 返回 Skills 市场
136
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install genstory-story-generator
功能描述
Use when the user wants to generate a story through Genstory with an API key, submit a Genstory story task, poll task status, and return the final Genstory o...
使用说明 (SKILL.md)
Genstory Story Generator
Use this skill when a workflow needs to call Genstory to generate a story and return a hosted story page URL.
Before you start
- Tell the user to create an API key in the Genstory user center at
https://www.genstory.app/api-keys. - Store that key as
GENSTORY_API_KEY. - The intended final result is the online story URL and cover image.
Required flow
- Read
GENSTORY_API_KEYfrom the environment or skill config. - Submit a task to
POST https://www.genstory.app/api/v1/story-tasks. - Poll
GET https://www.genstory.app/api/v1/story-tasks/{task_id}until the task becomessuccessorfailed. - Return the final structured result with:
story.idstory.titlestory.urlstory.cover_urlstory.locale
Submit request
Send Authorization: Bearer ${GENSTORY_API_KEY}.
Minimum JSON body:
{
"prompt": "Write a warm bedtime story about a brave little fox."
}
Recommended fields:
prompttitlecharacter_namescenes_countgeneration_type: defaulttextgeneration_mode: defaultstandardlayout_modepage_specpublic_visibility
Polling behavior
- Treat
pendingandprocessingas in progress. - If status is
failed, surface the API error clearly. - If status is
success, return the hosted story data and encourage the user to open the Genstory URL.
Output contract
Prefer this final shape:
{
"task_id": "task_uuid",
"status": "success",
"story": {
"id": "story_uuid",
"title": "Story title",
"url": "https://www.genstory.app/stories/story-slug",
"cover_url": "https://cdn.example.com/story-cover.webp",
"locale": "en"
}
}
References
- For request and response examples, read
references/api.md.
安全使用建议
This skill appears to do what it says — it will send your prompts and other story fields to https://www.genstory.app and return the hosted story URL and cover image — but there are two practical concerns to resolve before installing:
1) Metadata mismatch: the SKILL.md requires GENSTORY_API_KEY, but the skill metadata does not declare any required environment variables. Ask the publisher to update the manifest to list GENSTORY_API_KEY (and to explain where the key will be stored). That omission is an incoherence you should clarify.
2) Source/trust: the skill lists no homepage and an unknown owner. Confirm you trust the publisher and that you're comfortable sending user-provided story content to Genstory. Treat the API key like a secret: only provide it if you trust genstory.app, and consider using a key scoped with minimum privileges or a separate account for third-party integrations.
Additional practical checks: ensure polling uses reasonable timeouts/rate limits (SKILL.md recommends 3–5s polling and a timeout — confirm the implementation follows that), and verify privacy/retention policies of Genstory if you will send sensitive content. If the publisher cannot fix the manifest or identify themselves, prefer not to install.
功能分析
Type: OpenClaw Skill
Name: genstory-story-generator
Version: 1.0.0
The skill bundle provides instructions and API documentation for an AI agent to interact with the Genstory service (genstory.app) to generate stories. The workflow involves standard API key configuration, task submission via POST, and status polling via GET, with no evidence of data exfiltration, malicious execution, or prompt injection. All activities are consistent with the stated purpose of the skill.
能力评估
Purpose & Capability
The name/description and the SKILL.md are coherent: the skill describes submitting a story generation task to Genstory, polling status, and returning the hosted URL and cover image. The API endpoints and fields in references/api.md align with that purpose.
Instruction Scope
Runtime instructions are narrowly scoped: they tell the agent to read GENSTORY_API_KEY from environment/config, POST to https://www.genstory.app/api/v1/story-tasks, poll the task URL, and return story data. There are no instructions to read other system files, traverse unrelated paths, or call unexpected third-party endpoints.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so nothing is written to disk by an installer. Low risk from install mechanism.
Credentials
SKILL.md clearly requires GENSTORY_API_KEY (to be read from environment or skill config), but the skill metadata lists no required env vars or primary credential. This metadata/manifest mismatch is an incoherence that could cause misconfiguration or hide the fact that an API key will be transmitted to an external service. The requested credential itself is appropriate for the stated purpose, but the metadata omission and lack of provenance are concerning.
Persistence & Privilege
Skill does not request always:true, has no install hooks, and does not request system-level persistence or modifications to other skills. Normal autonomous invocation settings are unchanged.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install genstory-story-generator - 安装完成后,直接呼叫该 Skill 的名称或使用
/genstory-story-generator触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the Genstory Story Generator skill.
- Enables story generation via the Genstory API, returning an online story URL and cover image.
- Guides users to create and configure an API key from https://www.genstory.app/api-keys.
- Submits story generation tasks, polls for status updates, and returns structured story data.
- Surfaces errors clearly and encourages users to visit the generated story online.
元数据
常见问题
genstory story generator 是什么?
Use when the user wants to generate a story through Genstory with an API key, submit a Genstory story task, poll task status, and return the final Genstory o... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 136 次。
如何安装 genstory story generator?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install genstory-story-generator」即可一键安装,无需额外配置。
genstory story generator 是免费的吗?
是的,genstory story generator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
genstory story generator 支持哪些平台?
genstory story generator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 genstory story generator?
由 MuRyanice(@muryanice)开发并维护,当前版本 v1.0.0。
推荐 Skills