@claritylabs/cl-pipelines-docs
v0.1.1
Published
Documentation content for CL-Pipelines durable execution primitives
Readme
@claritylabs/cl-pipelines-docs
Documentation content for @claritylabs/cl-pipelines. This package contains the raw MDX files and navigation metadata — no rendering code.
Usage
Install and read at build time:
npm install @claritylabs/cl-pipelines-docsimport fs from "fs";
import path from "path";
const docsRoot = path.join(
process.cwd(),
"node_modules/@claritylabs/cl-pipelines-docs",
);
const nav = JSON.parse(fs.readFileSync(path.join(docsRoot, "meta.json"), "utf-8"));Contents
meta.json— navigation structure (sections and pages)**/*.mdx— documentation pages with YAML frontmatter
Frontmatter
title: string # Page title
description: string # One-line summary
tocSections: # Optional — table of contents entries
- { id: string, label: string, level?: 2 | 3 }MDX components
The MDX files reference these components (provided by the consuming app, not this package):
Callout— info/warning/error boxesCard/Cards— navigation cardsTabs/Tab— tabbed contentSection— scroll-anchor wrapper
Live docs
https://claritylabs.inc/docs/pipelines
License
Apache-2.0
