@nylorun/create-agent 0.5.0-beta → 0.6.0-beta
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/CHANGELOG.md +18 -0
- package/compatibility.json +3 -3
- package/dist/compatibility.json +3 -3
- package/dist/starter/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.0-beta
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c5bbb1a: Breaking beta: make Harness `run()` a direct async state-in/state-out executor with
|
|
8
|
+
serializable pauses, application `info`, cancellation signals, awaited recording, and
|
|
9
|
+
agent-level output schemas. Runtime owns session scheduling with memory-default or exclusive
|
|
10
|
+
local storage and imports Harness contracts. Isolate Node adapters under `runtime/node`, stream
|
|
11
|
+
observations incrementally, and add opt-in bounded token previews with Studio reconciliation.
|
|
12
|
+
Migrate consumers and deployment guidance together; legacy event records remain archived, not
|
|
13
|
+
automatically replayed. Starter docs cover memory-default sessions and opt-in
|
|
14
|
+
`localSessions` from `@nylorun/runtime/node`. Studio tests cover capability-manifest discovery
|
|
15
|
+
with legacy `middleware` fallback.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Update the tested Harness, Runtime, and Studio compatibility combination.
|
|
20
|
+
|
|
3
21
|
## 0.5.0-beta
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/compatibility.json
CHANGED
package/dist/compatibility.json
CHANGED
package/dist/starter/README.md
CHANGED
|
@@ -7,4 +7,4 @@ Edit agents under `agents/` and compose your Hono app in `src/index.ts`.
|
|
|
7
7
|
|
|
8
8
|
Development orchestration is provided by the installed `nylorun` CLI. Use `npm run dev -- --no-studio` for the application alone. Copy `.env.example` to `.env` and fill in `MODEL_PROVIDER`, `MODEL`, and `MODEL_PROVIDER_API_KEY`, or run `npm run configure`. Custom OpenAI-compatible providers also use `MODEL_PROVIDER_BASE_URL`. Hosting providers can supply these variables directly; no credential files are required for API keys. The single `tsconfig.json` builds your sources; `npm run check` checks types without emitting files.
|
|
9
9
|
|
|
10
|
-
`src/index.ts` exports the Hono app. `nylorun dev` and `nylorun start` supply the Node server and load `.env` without overriding process variables. OAuth state, when used, lives in ignored `.nylorun/auth.json`.
|
|
10
|
+
`src/index.ts` exports the Hono app. `nylorun dev` and `nylorun start` supply the Node server and load `.env` without overriding process variables. OAuth state, when used, lives in ignored `.nylorun/auth.json`. Sessions use memory storage by default and disappear on process restart. For a single Node host, explicitly configure `localSessions({ root: ".data/sessions" })` from `@nylorun/runtime/node`. Shared storage alone does not provide distributed scheduling. See https://docs.nylorun.com/docs/run-agents/deploy for hosting guidance.
|