/install genstory-story-generator
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.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install genstory-story-generator - After installation, invoke the skill by name or use
/genstory-story-generator - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 136 downloads so far.
How do I install genstory story generator?
Run "/install genstory-story-generator" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is genstory story generator free?
Yes, genstory story generator is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does genstory story generator support?
genstory story generator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created genstory story generator?
It is built and maintained by MuRyanice (@muryanice); the current version is v1.0.0.