npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cedar-os/backend

v0.0.12

Published

Backend helper functions for Cedar OS

Downloads

772

Readme

@cedar-os/backend

Backend helper functions for Cedar OS that enable seamless integration between Cedar OS frontend capabilities and AI agents using Mastra.

Installation

npm install @cedar-os/backend
# or
yarn add @cedar-os/backend
# or
pnpm add @cedar-os/backend

Features

  • 🔄 JSON Schema Extraction: Extract JSON schemas directly from Cedar OS frontend tools and state setters
  • 🎯 Type Safety: Full TypeScript support with proper type inference
  • 🔧 Zero Configuration: Works out of the box with Cedar OS additionalContext
  • Direct Integration: JSON schemas work directly with experimental_output - no conversion needed

Phase 1 - JSON Schema Extraction (Current)

This package extracts JSON schemas directly from Cedar OS additionalContext for use with AI agent structured output.

Quick Start

import {
	getFrontendToolSchemas,
	getStateSetterSchemas,
	getFrontendToolSchema,
	getStateSetterSchema,
} from '@cedar-os/backend';

// Extract all frontend tool schemas (returns JSON Schemas directly)
const frontendSchemas = getFrontendToolSchemas(requestBody);

// Extract all state setter schemas (returns JSON Schemas directly)
const setterSchemas = getStateSetterSchemas(requestBody);

// Extract a specific frontend tool schema
const notificationSchema = getFrontendToolSchema(
	requestBody,
	'showNotification'
);

// Extract a specific state setter schema
const addNodeSchema = getStateSetterSchema({
	requestBody,
	setterKey: 'addNode',
	stateKey: 'nodes',
});

// Use directly with experimental_output
const response = await agent.generate({
	messages: [{ role: 'user', content: body.prompt }],
	experimental_output: {
		schema: notificationSchema, // JSON Schema works directly
	},
});

API Reference (Phase 1)

Schema Extractors

getFrontendToolSchema(requestBody, toolName)

Extract a single frontend tool schema from additionalContext.

  • Parameters:
    • requestBody: CedarRequestBody - The request body containing additionalContext
    • toolName: string - The name of the frontend tool
  • Returns: Record<string, unknown> | null - The JSON Schema or null if not found

getFrontendToolSchemas(requestBody)

Extract all frontend tool schemas from additionalContext.

  • Parameters:
    • requestBody: CedarRequestBody - The request body containing additionalContext
  • Returns: Record<string, Record<string, unknown>> - Object mapping tool names to JSON schemas

getStateSetterSchema({ requestBody, setterKey, stateKey })

Extract a single state setter schema from additionalContext.

  • Parameters:
    • requestBody: CedarRequestBody - The request body containing additionalContext
    • setterKey: string - The key of the state setter
    • stateKey: string - The key of the state being set
  • Returns: Record<string, unknown> | null - The JSON Schema or null if not found

getStateSetterSchemas(requestBody)

Extract all state setter schemas from additionalContext.

  • Parameters:
    • requestBody: CedarRequestBody - The request body containing additionalContext
  • Returns: Record<string, Record<string, unknown>> - Object mapping setter keys to JSON schemas

Utilities

getJsonSchema(jsonSchema)

Extract and validate a JSON Schema object.

  • Parameters:
    • jsonSchema: unknown - The JSON Schema object
  • Returns: Record<string, unknown> | null - The validated JSON Schema or null if invalid

Coming Soon

  • Phase 2: Mastra tool creation utilities
  • Phase 3: Combined utilities and structured output schemas
  • Phase 4: Complete integration examples

Development Status

This package is under active development. The current Phase 1 implementation provides JSON Schema extraction that works directly with experimental_output. Future phases will add Mastra tool creation and full integration capabilities.

License

MIT