Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Ai Creative Writing Storytelling

ASecurity

AI creative writing and storytelling powered by CellCog. Novels, short stories, screenplays, fan fiction, poetry. World building, character development, narrative design across fantasy, sci-fi, mystery, romance, horror, and literary fiction.

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
ai-agentspythongoapi

Works with

cursorcliapi

Security Analysis

A92/100
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill ai-creative-writing-storytelling --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Ai Creative Writing Storytelling?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Ai Creative Writing Storytelling
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-ai-creative-writing-storytelling/badge)](https://www.skillsdirectory.com/skills/rondoflow-ai-creative-writing-storytelling)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: ai-creative-writing-storytelling
description: "AI creative writing and storytelling powered by CellCog. Novels, short stories, screenplays, fan fiction, poetry. World building, character development, narrative design across fantasy, sci-fi, mystery, romance, horror, and literary fiction."
category: "Content & Writing"
author: community
version: "1.0.10"
icon: pencil
---

# Story Cog - Storytelling Powered by CellCog

Create compelling stories with AI - from short fiction to novels to screenplays to immersive worlds.

## How to Use

For your first CellCog task in a session, read the **cellcog** skill for the full SDK reference — file handling, chat modes, timeouts, and more.

**OpenClaw (fire-and-forget):**
```python
result = client.create_chat(
    prompt="[your task prompt]",
    notify_session_key="agent:main:main",
    task_label="my-task",
    chat_mode="agent",
)
```

**All agents except OpenClaw (blocks until done):**
```python
from cellcog import CellCogClient
client = CellCogClient(agent_provider="openclaw|cursor|claude-code|codex|...")
result = client.create_chat(
    prompt="[your task prompt]",
    task_label="my-task",
    chat_mode="agent",
)
print(result["message"])
```


---

## What Stories You Can Create

### Short Fiction

Complete short stories:

- **Flash Fiction**: "Write a 500-word horror story that ends with a twist"
- **Short Stories**: "Create a 3,000-word sci-fi story about first contact"
- **Micro Fiction**: "Write a complete story in exactly 100 words"
- **Anthology Pieces**: "Create a short story for a cyberpunk anthology"

**Example prompt:**
> "Write a 2,000-word short story:
> 
> Genre: Magical realism
> Setting: A small Japanese village with a mysterious tea shop
> Theme: Grief and healing
> 
> The protagonist discovers that the tea shop owner can brew memories into tea.
> 
> Tone: Melancholic but hopeful. Studio Ghibli meets Haruki Murakami."

### Novel Development

Long-form fiction support:

- **Novel Outlines**: "Create a detailed outline for a fantasy trilogy"
- **Chapter Drafts**: "Write Chapter 1 of my mystery novel"
- **Character Arcs**: "Develop the protagonist's arc across a 3-act structure"
- **Plot Development**: "Help me work through a plot hole in my thriller"

**Example prompt:**
> "Create a detailed outline for a YA fantasy novel:
> 
> Concept: A magic school where students' powers are tied to their fears
> Protagonist: 16-year-old who's afraid of being forgotten
> Antagonist: Former student whose fear consumed them
> 
> Include:
> - Three-act structure
> - Major plot points
> - Character arcs for 4 main characters
> - Magic system explanation
> - Potential sequel hooks"

### Screenwriting

Scripts for film and TV:

- **Feature Scripts**: "Write the first 10 pages of a heist movie"
- **TV Pilots**: "Create a pilot script for a workplace comedy"
- **Short Films**: "Write a 10-minute short film script about loneliness"
- **Scene Writing**: "Write the confrontation scene between hero and villain"

**Example prompt:**
> "Write a cold open for a TV drama pilot:
> 
> Show concept: Medical thriller set in a hospital hiding dark secrets
> Tone: Tense, mysterious, hook the audience immediately
> 
> The scene should:
> - Introduce the hospital setting
> - Hint at something wrong without revealing it
> - End on a moment that makes viewers need to know more
> 
> Format: Standard screenplay format"

### Fan Fiction

Stories in existing universes:

- **Continuations**: "Write a story set after the events of [series]"
- **Alternate Universes**: "Create an AU where [character] made a different choice"
- **Crossovers**: "Write a crossover between [universe A] and [universe B]"
- **Missing Scenes**: "Write the scene that happened between [event A] and [event B]"

### World Building

Create immersive settings:

- **Fantasy Worlds**: "Design a complete magic system for my novel"
- **Sci-Fi Settings**: "Create the political structure of a galactic empire"
- **Historical Fiction**: "Research and outline 1920s Paris for my novel"
- **Mythology**: "Create a pantheon of gods for my fantasy world"

**Example prompt:**
> "Build a complete world for a steampunk fantasy:
> 
> Core concept: Victorian era where magic is industrialized
> 
> I need:
> - Geography (3 major nations)
> - Magic system and its limitations
> - Social structure and conflicts
> - Key historical events
> - Major factions and their goals
> - Technology level and aesthetics
> - 5 interesting locations with descriptions"

### Character Development

Deep character work:

- **Character Bibles**: "Create a complete character bible for my protagonist"
- **Backstories**: "Write the backstory of my villain"
- **Dialogue Voice**: "Help me develop a unique voice for this character"
- **Relationships**: "Map out the relationships between my ensemble cast"

---

## Story Genres

| Genre | Characteristics | CellCog Strengths |
|-------|-----------------|-------------------|
| **Fantasy** | Magic, world building, epic scope | Deep world creation, consistent magic systems |
| **Sci-Fi** | Technology, speculation, ideas | Hard science integration, future extrapolation |
| **Mystery/Thriller** | Suspense, clues, twists | Plot structure, misdirection, pacing |
| **Romance** | Emotional depth, relationships | Character chemistry, emotional beats |
| **Horror** | Fear, atmosphere, dread | Tension building, psychological depth |
| **Literary** | Theme, style, meaning | Nuanced prose, thematic depth |

---

## Chat Mode for Stories

| Scenario | Recommended Mode |
|----------|------------------|
| Short stories, scenes, character work, outlines | `"agent"` |
| Complex narratives, novel development, deep world building | `"agent team"` |

**Use `"agent"` for most creative writing.** Short stories, individual scenes, and character development execute well in agent mode.

**Use `"agent team"` for narrative complexity** - novel-length outlines, intricate plot development, or multi-layered world building that benefits from deep thinking.

---

## Example Prompts

**Complete short story:**
> "Write a complete 2,500-word science fiction short story:
> 
> Title: 'The Last Upload'
> Concept: In a world where consciousness can be uploaded, one person chooses to be the last to die naturally
> 
> Structure: Non-linear, moving between their final day and key memories
> Tone: Philosophical, bittersweet
> 
> End with an ambiguous moment that makes readers question their own choice."

**Character development:**
> "Create a complete character bible for a morally complex antagonist:
> 
> Setting: Modern political thriller
> Role: Senator who believes they're saving the country through corrupt means
> 
> Include:
> - Detailed backstory (childhood, formative events)
> - Psychology (fears, desires, defense mechanisms)
> - Relationships (family, allies, enemies)
> - Speech patterns and mannerisms
> - Their 'truth' they tell themselves
> - What would make them change"

**World building:**
> "Design the magic system for a fantasy novel:
> 
> Constraints:
> - Magic has a real cost (not just tiredness)
> - Some people are born with it, some earn it
> - It should enable interesting conflicts
> 
> I need:
> - How magic works mechanically
> - Its limitations and costs
> - How society treats magic users
> - How it's learned/controlled
> - 5 example uses (combat, utility, creative)
> - Potential for abuse and safeguards"

---

## Tips for Better Stories

1. **Genre expectations**: Readers have expectations. Honor them or subvert them intentionally, but know what they are.

2. **Character drives plot**: Give CellCog clear character motivations. Plot emerges from characters wanting things.

3. **Specific details**: "A coffee shop" is generic. "A coffee shop with mismatched furniture and a cat named Hemingway" is memorable.

4. **Emotional truth**: Even in fantasy, the emotions should feel real. Specify the emotional journey you want.

5. **Show, don't tell**: Ask for scenes, not summaries. "Write the moment she realizes..." not "Describe that she was sad."

6. **Iterate**: First drafts are starting points. Use CellCog to revise, expand, and refine.

---

## If CellCog is not installed

Run `/cellcog-setup` (or `/cellcog:cellcog-setup` depending on your tool) to install and authenticate.
**OpenClaw users:** Run `clawhub install cellcog` instead.
**Manual setup:** `pip install -U cellcog` and set `CELLCOG_API_KEY`. See the **cellcog** skill for SDK reference.

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →