@pson5/core-types
v0.2.0
Published
Core TypeScript types and shared contracts for the PSON5 personalization standard.
Maintainers
Readme
@pson5/core-types
Shared TypeScript contracts for the PSON5 ecosystem.
What It Contains
PsonProfileInitProfileInput- learning session contracts
- simulation contracts
- provider policy contracts
- agent-context contracts
- storage adapter interfaces
Install
npm install @pson5/core-typesUsage
import type { InitProfileInput, PsonProfile } from "@pson5/core-types";
const input: InitProfileInput = {
user_id: "user_123",
domains: ["core", "education"],
depth: "standard"
};
let profile: PsonProfile;Use this package when you need type-safe contracts without pulling in runtime engines.
