nbspec 0.1.0

Notebook-first OpenSpec orchestration for spec-driven development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Core library for nbspec: notebook-first OpenSpec orchestration.
//!
//! Exposes change operations behind a library boundary so that the CLI
//! binary and the planned MCP surface are both thin wrappers over the
//! same core functions.

pub mod archives;
pub mod changes;
pub mod cli;
pub mod configuration;
pub mod grammar;
pub mod merging;
pub mod operations;
pub mod provenance;
pub mod rendering;
pub mod schemata;
pub mod validation;
pub mod worknotes;