upjack
Schema-driven entity management for AI-native applications. TypeScript edition.
npm install upjack
import { UpjackApp } from "upjack";
const app = UpjackApp.fromManifest("manifest.json");
const contact = app.createEntity("contact", { name: "Alice", email: "alice@example.com" });
const results = app.searchEntities("contact", { query: "alice" });
import { createServer } from "upjack/server";
const server = createServer("manifest.json");
See the main README for full documentation.
Development
npm install
make check
make build
License
Apache 2.0