@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.
- package/README.md +28 -6
- 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
|
-
|
|
508
|
+
```md
|
|
509
|
+
## Frontier-ready architecture
|
|
509
510
|
|
|
510
|
-
|
|
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
|
|
513
|
+
The SDK remains dependency-light. Production applications provide their own infrastructure drivers and deployment policies through adapters.
|
|
513
514
|
|
|
514
|
-
##
|
|
515
|
+
## Extensible by design
|
|
515
516
|
|
|
516
|
-
|
|
517
|
+
Nexa is built around stable contracts instead of hardcoded orchestration strategies.
|
|
517
518
|
|
|
518
|
-
|
|
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.
|
|
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": "
|
|
15
|
+
"nexa": "bin/nexa.mjs"
|
|
12
16
|
},
|
|
13
17
|
"exports": {
|
|
14
18
|
".": {
|