plugins marketplace
← All plugins

story-skills

v0.3.1

A suite of cross-referenced skills and CLI maintenance tools for end-to-end story writing powered by markdown. Covers story initialization, character management, worldbuilding, plot structure, chapter writing, revision, validation, reporting, indexing, word counts, and manuscript export.

CodexClaude Code7 skills

by Daniel DewhurstMIT144updated 1 month ago

Source

git clone https://github.com/danjdewhurst/story-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

story-skills/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/chapter-writing/SKILL.md
├── skills/character-management/SKILL.md
├── skills/plot-structure/SKILL.md
├── skills/revision-continuity/SKILL.md
├── skills/story-init/SKILL.md
├── skills/story-maintenance/SKILL.md
└── skills/worldbuilding/SKILL.md

Skills7

chapter-writingskills/chapter-writing/SKILL.md

This skill should be used when the user asks to "write a chapter", "next chapter", "chapter outline", "draft chapter", "continue the story", "write a scene", "outline a chapter", or wants to write prose for a story project.

character-managementskills/character-management/SKILL.md

This skill should be used when the user asks to "create a character", "update a character", "add a character", "build a family tree", "character relationships", "character timeline", "character arc", "character profile", or needs to manage characters in a story project.

plot-structureskills/plot-structure/SKILL.md

This skill should be used when the user asks to "create a plot arc", "story structure", "add a plot point", "story timeline", "track foreshadowing", "pacing", "act structure", "story arc", "plot outline", or wants to plan and manage the narrative structure of a story.

revision-continuityskills/revision-continuity/SKILL.md

This skill should be used when the user asks to revise a chapter, edit prose, continuity check, find inconsistencies, audit character state, check timeline consistency, line edit, developmental edit, polish a draft, or prepare existing story material for the next revision pass.

story-initskills/story-init/SKILL.md

This skill should be used when the user asks to "start a new story", "initialize a story project", "create a story", "new book", "set up a story", or wants to begin a new fiction writing project from scratch.

story-maintenanceskills/story-maintenance/SKILL.md

This skill should be used when the user asks to validate, reindex, repair registries, check links, check continuity, count words, summarize a story project, import an existing manuscript, export a manuscript, run the story CLI, or perform deterministic maintenance on a Story Skills markdown project.

worldbuildingskills/worldbuilding/SKILL.md

This skill should be used when the user asks to "create a location", "add a location", "magic system", "political system", "build the world", "add culture", "world history", "technology system", "religion", "economy", or wants to develop any aspect of a story's world and setting.

Manifests2

.codex-plugin/plugin.json
{
  "name": "story-skills",
  "version": "0.3.1",
  "description": "A suite of cross-referenced skills and CLI maintenance tools for end-to-end story writing powered by markdown. Covers story initialization, character management, worldbuilding, plot structure, chapter writing, revision, validation, reporting, indexing, word counts, and manuscript export.",
  "author": {
    "name": "Daniel Dewhurst",
    "url": "https://github.com/danjdewhurst"
  },
  "homepage": "https://github.com/danjdewhurst/story-skills",
  "repository": "https://github.com/danjdewhurst/story-skills",
  "license": "MIT",
  "keywords": [
    "story",
    "writing",
    "fiction",
    "characters",
    "worldbuilding",
    "chapters",
    "revision"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Story Skills",
    "shortDescription": "Plan stories, manage characters and worlds, and write chapters.",
    "longDescription": "Story Skills adds end-to-end fiction-writing workflows for Codex: story initialization, character management, worldbuilding, plot structure, chapter writing, revision and continuity audits, and deterministic project maintenance with markdown registries and YAML frontmatter.",
    "developerName": "Daniel Dewhurst",
    "category": "Productivity",
    "capabilities": [
      "Plan",
      "Write"
    ],
    "defaultPrompt": [
      "Start a new story.",
      "Create a character profile.",
      "Write the next chapter.",
      "Continuity-check my latest chapter.",
      "Validate my story project."
    ],
    "brandColor": "#7C3AED"
  }
}
.claude-plugin/plugin.json
{
  "name": "story-skills",
  "version": "0.3.1",
  "description": "A suite of cross-referenced skills and CLI maintenance tools for end-to-end story writing powered by markdown. Covers story initialization, character management, worldbuilding, plot structure, chapter writing, revision, validation, reporting, indexing, word counts, and manuscript export.",
  "author": {
    "name": "Daniel Dewhurst"
  },
  "license": "MIT",
  "keywords": [
    "story",
    "writing",
    "fiction",
    "characters",
    "worldbuilding",
    "chapters",
    "revision"
  ]
}