@nexalab/agent-sdk 0.1.0 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +28 -6
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -505,14 +505,36 @@ Recommended production wiring:
505
505
  - Use `pnpm harness` as the production readiness gate.
506
506
  - Use `pnpm smoke` and `pnpm pack:check` before publishing.
507
507
 
508
- ## Is It Frontier?
508
+ ```md
509
+ ## Frontier-ready architecture
509
510
 
510
- Yes, this is now a frontier-style agent SDK architecture: native tool calling, structured streaming, durable storage adapters, policy/approvals, evals, telemetry, replay, workflows, routing, multi-agent coordination, vector memory, queue contracts, package smoke checks, and a production harness.
511
+ Nexa Agent SDK is designed with a frontier-style agent architecture: native tool calling, structured streaming, durable storage adapters, policy and approvals, evals, telemetry, replay, workflows, routing, multi-agent coordination, vector memory, queue contracts, package smoke checks, and an extensible `ModelHarness` contract.
511
512
 
512
- The SDK intentionally stays dependency-light. Production apps still provide their actual infrastructure drivers and deployment policy through adapters.
513
+ The SDK remains dependency-light. Production applications provide their own infrastructure drivers and deployment policies through adapters.
513
514
 
514
- ## Open-core architecture
515
+ ## Extensible by design
515
516
 
516
- This package is designed as the fully-capable public half of an open-core split — see [docs/architecture/open-core-audit.md](./docs/architecture/open-core-audit.md), [open-core-target.md](./docs/architecture/open-core-target.md), and [open-core-migration.md](./docs/architecture/open-core-migration.md) for the module-by-module classification, target architecture, and phased plan. In short: everything in this repository is public and production-capable; strategic/proprietary intelligence (e.g. a future `FrontierHarness`) is designed to live in a separate private repository that *implements* this SDK's public contracts (`ModelHarness`, `ModelRoute`, `ContextEngineConfig`, ...) rather than forking or being vendored into it.
517
+ Nexa is built around stable contracts instead of hardcoded orchestration strategies.
517
518
 
518
- `pnpm verify:boundaries`, `pnpm verify:secrets`, and `pnpm verify:publish-safety` (all folded into `pnpm prepublish:check`) guard against private code or secrets ever entering an npm-published tarball from this repo.
519
+ Developers can extend or replace major runtime behaviors through interfaces for:
520
+
521
+ - model harnesses
522
+ - providers
523
+ - tools
524
+ - context
525
+ - memory
526
+ - storage
527
+ - routing
528
+ - telemetry
529
+ - evals
530
+
531
+ This makes it possible to build custom agent architectures without forking the core SDK.
532
+
533
+ ## Release safety
534
+
535
+ The repository includes automated checks for package boundaries, accidental credential exposure, and npm tarball contents:
536
+
537
+ ```bash
538
+ pnpm verify:boundaries
539
+ pnpm verify:secrets
540
+ pnpm verify:publish-safety
package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "@nexalab/agent-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.5",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/pixelitylab/nexalab-agentsdk.git"
7
+ },
4
8
  "private": false,
5
9
  "description": "Reusable agentic SDK extracted from Nexa Agent OS.",
6
10
  "license": "Apache-2.0",
@@ -8,7 +12,7 @@
8
12
  "main": "dist/index.js",
9
13
  "types": "dist/index.d.ts",
10
14
  "bin": {
11
- "nexa": "./bin/nexa.mjs"
15
+ "nexa": "bin/nexa.mjs"
12
16
  },
13
17
  "exports": {
14
18
  ".": {