Soft schema conventions and validation tools for Markdown/YAML artifacts
Project description
softschema
Soft schemas are a practice for adding structure gradually to artifacts that mix human context and machine-readable values.
They are useful when a document is valuable as context for humans and agents and also needs a few values that downstream code or agents can read reliably. Keeping prose and structured values in one artifact is more context-efficient and more flexible than splitting them: a reader (human or agent) has only one place to look, and each value can stay as loose prose until a downstream consumer needs it formal.
The practice is language-neutral. This repo ships a spec and an implementation in Python.
It’s generally easiest to do this with Markdown and YAML frontmatter. The YAML carries the structured values. The Markdown body stays readable for humans and agents and offers additional context.
Soft schemas name the general practice; softschema names both this repository’s
Markdown-and-YAML spec and the matching softschema CLI that implements it.
The CLI is a Python package usable as a command-line tool or library for formatting,
compilation, validation, and other common workflows.
Core Idea
A hard schema imposes structure up front: define a rigid contract, then reject anything that doesn’t fit. That suits data that is already uniform, but it is a poor fit for documents a human or agent writes, where most of the content is prose and only a few values need to be machine-readable.
A soft schema adds structure gradually instead. Structure runs along a spectrum, and each value moves along it only when it earns the move:
prose
-> expected sections and vocabulary
-> YAML/frontmatter values for consumed fields
-> schema validation at boundaries
-> pure data or deterministic code when the shape is stable
Promote a value into YAML when a tool reads it, validate it at the boundary when
correctness matters, and tighten enforcement over time.
Each promotion buys efficiency for some downstream consumer, so structure and efficiency
grow together, value by value.
Everything else stays readable Markdown.
The structured values live in the YAML payload, the boundary a tool reads, while the
prose body stays unconstrained.
Structure has real costs in authoring effort and rigidity, and adding it before a
consumer needs it costs more than leaving it loose: a contract with consumers is harder
to loosen than prose is to tighten.
So add structure where it pays for itself.
This fits the file artifacts that pass between steps of an agent process, where each
artifact mixes the context a step produces with the few values the next step consumes.
It works especially well in pipelines built for coding agents, which can call the
softschema CLI to test and validate the code, docs, and data they produce, alongside
the linters, tests, and type checkers they already run.
Artifact Shape
The default shape is Markdown with YAML frontmatter.
Use softschema.contract to name the contract for the enclosed payload:
---
softschema:
contract: example.movies:MoviePage/v1
status: enforced
movie:
title: Spirited Away
release_year: 2001
runtime_minutes: 125
mpaa_rating: PG
directors:
- Hayao Miyazaki
genres:
- Animation
- Adventure
- Family
synopsis: >
Ten-year-old Chihiro and her parents stumble into a mysterious abandoned town
that turns out to be a spirit world...
cast:
- actor: Rumi Hiiragi
character: Chihiro / Sen
- actor: Miyu Irino
character: Haku
ratings:
rotten_tomatoes:
critics_percent: 96
audience_percent: 96
critic_review_count: 225
imdb:
score: 8.6
total_votes: 850000
---
# Spirited Away (2001)
Hayao Miyazaki’s animated fantasy follows ten-year-old Chihiro into a spirit world, where
she works in a bathhouse for the gods to free her parents from a witch’s curse. It won the
2003 Academy Award for Best Animated Feature.
Critics and audiences both score it 96% on Rotten Tomatoes; IMDb users rate it 8.6/10.
The YAML payload is authoritative. The Markdown body overlaps with it but need not match it field for field: here the prose adds the film’s Oscar win and leaves out the cast and genres, while a consumer reads only the YAML.
The example illustrates the structural variety a softschema artifact can carry:
constrained integers (release_year, runtime_minutes), an enum (mpaa_rating
restricted to G, PG, PG-13, R, NC-17, NR), lists of strings (directors,
genres), a list of structured records (cast), and nested objects (ratings). The
full artifact, model, and generated JSON Schema live under
examples/movie_page/.
Contract IDs
Recommended style:
namespace:UpperCamelCaseName/version
Examples:
example.movies:MoviePage/v1example.docs:IncidentReview/v1com.acme.docs:IncidentReview/1.0
The ID names an artifact payload contract, not a required class or import path.
Try the Python Package
Install dependencies:
uv sync --all-extras
Validate the example:
uv run softschema validate examples/movie_page/spirited-away.md \
--model examples.movie_page.model:MoviePage \
--schema examples/movie_page/movie-page.schema.yaml
validate reads softschema.contract, softschema.status, and the single top-level
envelope key from the YAML by default.
Use --contract, --status, or --envelope only to override or disambiguate.
Read the bundled docs from the CLI:
uv run softschema docs --list
uv run softschema docs --list --json
uv run softschema docs guide
uv run softschema docs example-artifact
uv run softschema skill --brief
The examples are plain files under examples/. The CLI can print them so an agent or
human can copy from them, but it does not scaffold or mutate another project.
Compile the example schema sidecar:
uv run softschema compile examples.movie_page.model:MoviePage \
--contract example.movies:MoviePage/v1 \
--out examples/movie_page/movie-page.schema.yaml
Repository Layout
docs/ guide, spec, Python package design, and workflow docs
examples/movie_page/ complete example with model, host integration, artifact, schema
packages/python/ Python implementation and tests
packages/typescript/ future TypeScript/Zod notes only
skills/softschema/ agent-facing usage guidance
The root pyproject.toml builds the Python package from
packages/python/src/softschema. This keeps the first release simple while leaving room
for a future TypeScript package.
Docs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file softschema-0.1.1.tar.gz.
File metadata
- Download URL: softschema-0.1.1.tar.gz
- Upload date:
- Size: 51.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79ffa00cde1cba5d84c13ce647e3c837463d0013355f5ea06fdbf2abee009470
|
|
| MD5 |
4cfee884f052855d475d25fa5a545e4d
|
|
| BLAKE2b-256 |
154a1446e8b9a47a453cbd7f93c5ad332a6a01840b52970223d209abb984d98b
|
File details
Details for the file softschema-0.1.1-py3-none-any.whl.
File metadata
- Download URL: softschema-0.1.1-py3-none-any.whl
- Upload date:
- Size: 57.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f73d7cd3e988b72387d3833c37c7039a5bb2b468f3b32e9f389505c9b0ec5e60
|
|
| MD5 |
1a98653a8cfcdf40c61006f274eb8119
|
|
| BLAKE2b-256 |
fba2a88ee11b3e58b77ac41e76f9f400ca15b38171bf1f02e0095ea376f50219
|