Story test
CLI tool that runs tests against a story.
Lets you define a list of checks you expect from your story (e.g. "The hero wins in the end"), and determines whether each one passes or fails.
It does not replace a human editor, but it's a great tool to aid in the editing phase, for both writers and editors:
- Make sure your story's main points are addressed while editing your story.
- Build and grow a repository with standard tests you want to run on manuscripts, and make specific tests for specific genres, etc.
Supports OpenAI, Anthropic, and local Ollama models.
Usage
Create a test file containing assertions about a story:
tests:
- name: author
assertion: The story was written by Edgar Allan Poe.
- name: ending
assertion: The narrator confesses at the end of the story.
Run the tests against one or more Markdown files:
story-test story.tests.yml story.md
story-test story.tests.yml chapter-1.md chapter-2.md
Failed assertions are reported without failing the process by default. For CI, use strict mode:
story-test story.tests.yml story.md --fail-on-test-failure
The default provider is Ollama. For hosted OpenAI usage, set the API key and select the provider explicitly:
export OPENAI_API_KEY=your-key
story-test story.tests.yml story.md --provider openai --model gpt-4.1-mini
For Anthropic:
export ANTHROPIC_API_KEY=your-key
story-test story.tests.yml story.md \
--provider anthropic --model claude-opus-5-5
If you are using a Claude Code authorization token, Anthropic's SDK also accepts:
export ANTHROPIC_AUTH_TOKEN=your-token
Ollama remains available as an optional local provider:
STORY_TEST_PROVIDER=ollama sh install.sh
story-test story.tests.yml story.md --provider ollama --model qwen3:8b
🚀 Getting Started
This repo uses direnv, Devbox, Taskfile, and pre-commit for a reproducible dev environment and automatic schema/YAML validation.
Setup
# Automatically enter devbox via direnv (if available)
direnv allow
# Enter dev environment
devbox shell
# Install pre-commit hooks
task pre-commit:install
Tasks
Run task to see a list of available tasks.
Install the development dependencies with:
task environment:dev:install
For a local user installation, run the bootstrap script from this repository:
sh install.sh
This creates an isolated Python environment and installs the story-test
command. The installed command can then be used from any directory:
story-test path/to/story.tests.yml path/to/story.md
For an Ollama installation, set STORY_TEST_PROVIDER before running the
installer to pull a local model:
STORY_TEST_PROVIDER=ollama STORY_TEST_MODEL=qwen3:30b-a3b sh install.sh
Install Ollama separately only when using the local provider, then download the model through Task:
task environment:ollama:install
To use a model already installed locally:
OLLAMA_MODEL=qwen3:30b-a3b task environment:ollama:install
Run the sample story tests. Failed story assertions are reported but do not fail the task by default:
task test:example-story
The OpenAI and Anthropic providers use their standard OPENAI_API_KEY and
ANTHROPIC_API_KEY environment variables. The Ollama provider uses
STORY_TEST_MODEL and STORY_TEST_CONTEXT_LENGTH and is the default.
The model can be changed with STORY_TEST_MODEL, and the context window can be
changed with STORY_TEST_CONTEXT_LENGTH.
To make failed story assertions fail the task, use the strict variant:
task test:example-story:strict
Run the complete local validation suite:
task test:all
This runs schema validation, Python unit tests, and the sample story tests.
The GitHub Actions workflow validates and builds the package without running an AI provider. Qwen open-weight models are Apache 2.0 licensed and Ollama is MIT licensed; always review the license for the exact model tag you deploy.
Run formatting and pre-commit checks with:
task format:check
task pre-commit:run
Before publishing a release, build and validate both distribution formats:
task package:check
This creates the wheel and source archive under dist/ and validates them with
Twine. Increment the version in pyproject.toml before building a new release.
Features
- JSON structure validation using
jq - Schema validation using
check-jsonschema(temporarily disabled) - CI/CD integration with GitHub Actions
- Versioning schemas with directories like
schemas/v1,schemas/v2 - Documentation with inline schema descriptions
- Code formatting using
prettierorjq - Documentation with
READMEor extended docs folder (pending) - Schema hosting via
$idURLs or SchemaStore (pending)
Release files for story-test 2.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| story_test-2.0.0.tar.gz | 10.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| story_test-2.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 18.7 kB
Release files / story_test-2.0.0.tar.gz
| Download URL | story_test-2.0.0.tar.gz |
|---|---|
| Size | 10.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4beb667944430195f91b607b0b944b65896dcd5b43118d3c3d1794db78b2c249
|
|
BLAKE2b-256 checksum How to use checksums |
1d9e88aa6ec82b92261e559f16e6584104793167d7af5c730bc30ac76ef20e26
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.
Transparency logRelease files / story_test-2.0.0-py3-none-any.whl
| Download URL | story_test-2.0.0-py3-none-any.whl |
|---|---|
| Size | 8.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8a4e6ad1069fe46b0daa6d45b36934418bf44a6316056caf86243713d0827b9a
|
|
BLAKE2b-256 checksum How to use checksums |
686dc7954eae9165ae59697e9f2fb907b93c20ebedcce01ae197ac0bc8f3125c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.
Transparency log