Novel setup
Skill chianglianglin/novel-writer/.claude/skills/novel-setup
Multi-author novel writing pipeline as Claude Code skills — no API keys
npx -y skills add chianglianglin/novel-writer --skill novel-setupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Initialize a new novel project by creating the wiki directory structure (characters, plot, world, themes). Run this once before using /novel-write.
SKILL.md
2.2 KB, 529 tokens by cl100k_base, as published. Nobody here has run it
Novel Setup
Set up the story wiki folder for a new novel project.
Steps
1. Gather project details
Ask the user (one message, all at once):
- Novel title — working title for this project
- Genre — e.g. "epic fantasy", "noir thriller", "literary fiction", "science fiction"
- Premise — one or two sentences describing the core story idea
- Wiki directory — where to store story context (default:
./wiki/)
2. Create the wiki directory
Use Bash to create the directory:
New-Item -ItemType Directory -Force -Path "<wiki_dir>"
3. Create project.md
Write a file at <wiki_dir>/project.md with:
# [NOVEL_TITLE]
**Genre:** [GENRE]
**Premise:** [PREMISE]
4. Create the four wiki files
Create each with a template header. Only create files that do not already exist.
<wiki_dir>/characters.md:
# Characters
<!-- Add character entries below. -->
<!-- Format: **Name** — description, key traits, role in story -->
<wiki_dir>/plot.md:
# Plot Events
<!-- Add plot events in chronological order. -->
<!-- Format: **Ch. N / Scene** — what happened, consequences -->
<wiki_dir>/world.md:
# World Facts
<!-- Add world-building facts: geography, history, magic/tech rules, factions, customs -->
<wiki_dir>/themes.md:
# Themes
<!-- Add recurring themes, motifs, and symbolic elements -->
5. Confirm to user
Print:
Novel project initialized.
Wiki: <wiki_dir>/
├── project.md ← title, genre, premise
├── characters.md ← character roster
├── plot.md ← plot events log
├── world.md ← world-building facts
└── themes.md ← themes & motifs
Next: use /novel-write to generate a chapter.
Notes
- If any wiki file already exists, do NOT overwrite it — skip it and tell the user.
- The wiki directory is used by
/novel-writeand/novel-wiki. Keep it in the project root or pass--wiki <path>to those skills.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.