Story Cog - Storytelling Powered by CellCog
Create compelling stories with AI - from short fiction to novels to screenplays to immersive worlds.
Prerequisites
This skill requires the cellcog skill for SDK setup and API calls.
clawhub install cellcog
Read the cellcog skill first for SDK setup. This skill shows you what's possible.
Quick pattern (v1.0+):
# Fire-and-forget - returns immediately
result = client.create_chat(
prompt="[your story request]",
notify_session_key="agent:main:main",
task_label="story-creation",
chat_mode="agent" # Agent mode for most stories
)
# Daemon notifies you when complete - do NOT poll
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
Genre expectations: Readers have expectations. Honor them or subvert them intentionally, but know what they are.
Character drives plot: Give CellCog clear character motivations. Plot emerges from characters wanting things.
Specific details: "A coffee shop" is generic. "A coffee shop with mismatched furniture and a cat named Hemingway" is memorable.
Emotional truth: Even in fantasy, the emotions should feel real. Specify the emotional journey you want.
Show, don't tell: Ask for scenes, not summaries. "Write the moment she realizes..." not "Describe that she was sad."
Iterate: First drafts are starting points. Use CellCog to revise, expand, and refine.
1---2name: story-cog3description: Creative writing and storytelling powered by CellCog. Create stories, novels, screenplays, fan fiction, world building, character development, narrative design. AI-powered creative writing assistant.4---5
6# Story Cog - Storytelling Powered by CellCog
7
8Create compelling stories with AI - from short fiction to novels to screenplays to immersive worlds.
9
10---
11
12## Prerequisites
13
14This skill requires the `cellcog` skill for SDK setup and API calls.
15
16```bash
17clawhub install cellcog
18```
19
20**Read the cellcog skill first** for SDK setup. This skill shows you what's possible.
21
22**Quick pattern (v1.0+):**
23```python
24# Fire-and-forget - returns immediately
25result = client.create_chat(
26 prompt="[your story request]",
27 notify_session_key="agent:main:main",
28 task_label="story-creation",
29 chat_mode="agent" # Agent mode for most stories
30)
31# Daemon notifies you when complete - do NOT poll
32```
33
34---
35
36## What Stories You Can Create
37
38### Short Fiction
39
40Complete short stories:
41
42- **Flash Fiction**: "Write a 500-word horror story that ends with a twist"
43- **Short Stories**: "Create a 3,000-word sci-fi story about first contact"
44- **Micro Fiction**: "Write a complete story in exactly 100 words"
45- **Anthology Pieces**: "Create a short story for a cyberpunk anthology"
46
47**Example prompt:**
48> "Write a 2,000-word short story:
49>
50> Genre: Magical realism
51> Setting: A small Japanese village with a mysterious tea shop
52> Theme: Grief and healing
53>
54> The protagonist discovers that the tea shop owner can brew memories into tea.
55>
56> Tone: Melancholic but hopeful. Studio Ghibli meets Haruki Murakami."
57
58### Novel Development
59
60Long-form fiction support:
61
62- **Novel Outlines**: "Create a detailed outline for a fantasy trilogy"
63- **Chapter Drafts**: "Write Chapter 1 of my mystery novel"
64- **Character Arcs**: "Develop the protagonist's arc across a 3-act structure"
65- **Plot Development**: "Help me work through a plot hole in my thriller"
66
67**Example prompt:**
68> "Create a detailed outline for a YA fantasy novel:
69>
70> Concept: A magic school where students' powers are tied to their fears
71> Protagonist: 16-year-old who's afraid of being forgotten
72> Antagonist: Former student whose fear consumed them
73>
74> Include:
75> - Three-act structure
76> - Major plot points
77> - Character arcs for 4 main characters
78> - Magic system explanation
79> - Potential sequel hooks"
80
81### Screenwriting
82
83Scripts for film and TV:
84
85- **Feature Scripts**: "Write the first 10 pages of a heist movie"
86- **TV Pilots**: "Create a pilot script for a workplace comedy"
87- **Short Films**: "Write a 10-minute short film script about loneliness"
88- **Scene Writing**: "Write the confrontation scene between hero and villain"
89
90**Example prompt:**
91> "Write a cold open for a TV drama pilot:
92>
93> Show concept: Medical thriller set in a hospital hiding dark secrets
94> Tone: Tense, mysterious, hook the audience immediately
95>
96> The scene should:
97> - Introduce the hospital setting
98> - Hint at something wrong without revealing it
99> - End on a moment that makes viewers need to know more
100>
101> Format: Standard screenplay format"
102
103### Fan Fiction
104
105Stories in existing universes:
106
107- **Continuations**: "Write a story set after the events of [series]"
108- **Alternate Universes**: "Create an AU where [character] made a different choice"
109- **Crossovers**: "Write a crossover between [universe A] and [universe B]"
110- **Missing Scenes**: "Write the scene that happened between [event A] and [event B]"
111
112### World Building
113
114Create immersive settings:
115
116- **Fantasy Worlds**: "Design a complete magic system for my novel"
117- **Sci-Fi Settings**: "Create the political structure of a galactic empire"
118- **Historical Fiction**: "Research and outline 1920s Paris for my novel"
119- **Mythology**: "Create a pantheon of gods for my fantasy world"
120
121**Example prompt:**
122> "Build a complete world for a steampunk fantasy:
123>
124> Core concept: Victorian era where magic is industrialized
125>
126> I need:
127> - Geography (3 major nations)
128> - Magic system and its limitations
129> - Social structure and conflicts
130> - Key historical events
131> - Major factions and their goals
132> - Technology level and aesthetics
133> - 5 interesting locations with descriptions"
134
135### Character Development
136
137Deep character work:
138
139- **Character Bibles**: "Create a complete character bible for my protagonist"
140- **Backstories**: "Write the backstory of my villain"
141- **Dialogue Voice**: "Help me develop a unique voice for this character"
142- **Relationships**: "Map out the relationships between my ensemble cast"
143
144---
145
146## Story Genres
147
148| Genre | Characteristics | CellCog Strengths |
149|-------|-----------------|-------------------|
150| **Fantasy** | Magic, world building, epic scope | Deep world creation, consistent magic systems |
151| **Sci-Fi** | Technology, speculation, ideas | Hard science integration, future extrapolation |
152| **Mystery/Thriller** | Suspense, clues, twists | Plot structure, misdirection, pacing |
153| **Romance** | Emotional depth, relationships | Character chemistry, emotional beats |
154| **Horror** | Fear, atmosphere, dread | Tension building, psychological depth |
155| **Literary** | Theme, style, meaning | Nuanced prose, thematic depth |
156
157---
158
159## Chat Mode for Stories
160
161| Scenario | Recommended Mode |
162|----------|------------------|
163| Short stories, scenes, character work, outlines | `"agent"` |
164| Complex narratives, novel development, deep world building | `"agent team"` |
165
166**Use `"agent"` for most creative writing.** Short stories, individual scenes, and character development execute well in agent mode.
167
168**Use `"agent team"` for narrative complexity** - novel-length outlines, intricate plot development, or multi-layered world building that benefits from deep thinking.
169
170---
171
172## Example Prompts
173
174**Complete short story:**
175> "Write a complete 2,500-word science fiction short story:
176>
177> Title: 'The Last Upload'
178> Concept: In a world where consciousness can be uploaded, one person chooses to be the last to die naturally
179>
180> Structure: Non-linear, moving between their final day and key memories
181> Tone: Philosophical, bittersweet
182>
183> End with an ambiguous moment that makes readers question their own choice."
184
185**Character development:**
186> "Create a complete character bible for a morally complex antagonist:
187>
188> Setting: Modern political thriller
189> Role: Senator who believes they're saving the country through corrupt means
190>
191> Include:
192> - Detailed backstory (childhood, formative events)
193> - Psychology (fears, desires, defense mechanisms)
194> - Relationships (family, allies, enemies)
195> - Speech patterns and mannerisms
196> - Their 'truth' they tell themselves
197> - What would make them change"
198
199**World building:**
200> "Design the magic system for a fantasy novel:
201>
202> Constraints:
203> - Magic has a real cost (not just tiredness)
204> - Some people are born with it, some earn it
205> - It should enable interesting conflicts
206>
207> I need:
208> - How magic works mechanically
209> - Its limitations and costs
210> - How society treats magic users
211> - How it's learned/controlled
212> - 5 example uses (combat, utility, creative)
213> - Potential for abuse and safeguards"
214
215---
216
217## Tips for Better Stories
218
2191. **Genre expectations**: Readers have expectations. Honor them or subvert them intentionally, but know what they are.
220
2212. **Character drives plot**: Give CellCog clear character motivations. Plot emerges from characters wanting things.
222
2233. **Specific details**: "A coffee shop" is generic. "A coffee shop with mismatched furniture and a cat named Hemingway" is memorable.
224
2254. **Emotional truth**: Even in fantasy, the emotions should feel real. Specify the emotional journey you want.
226
2275. **Show, don't tell**: Ask for scenes, not summaries. "Write the moment she realizes..." not "Describe that she was sad."
228
2296. **Iterate**: First drafts are starting points. Use CellCog to revise, expand, and refine.