Template for package READMEs. Copy to
packages/<name>/README.md, fill in the sections, and delete this note. Several core packages already have READMEs (protocol, runtime, kernel, node-sdk, base-nodes, agents, websocket, models) — use them as worked examples.
One-sentence description (mirror the description in package.json).
- What this package owns. Bullet the main exports / concepts.
- Note any cross-package contracts it depends on or provides.
import { Something } from "@nodetool-ai/<package-name>";npm run build --workspace=packages/<package-name>
npm run test --workspace=packages/<package-name>
npm run lint --workspace=packages/<package-name> # tsc --noEmitImports use
@nodetool-ai/<package>; never import fromdist/. Packages that use decorators (node-sdk, *-nodes) load fromdist/— runnpm run build:packagesafter changing them. See the root AGENTS.md for build order and conventions.