agentledger-runtime 1.0.4 → 1.0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # AgentLedger Node / TypeScript Runtime
2
2
 
3
- This directory contains the dependency-free Node/TypeScript-compatible runtime-core baseline for AgentLedger 1.0.2.
3
+ This directory contains the dependency-free Node/TypeScript-compatible runtime-core baseline for AgentLedger 1.0.5.
4
4
 
5
5
  It runs a native local runtime loop, participates in the shared Python/Go/TypeScript/Rust conformance gate, and should be treated as runtime-core aligned; concrete production adapters are shipped separately as they mature.
6
6
 
@@ -20,3 +20,20 @@ node src/cli.js conformance
20
20
  ```
21
21
 
22
22
  Package surface: `agentledger-runtime`. See `../README.md` for package metadata and API examples.
23
+
24
+
25
+ ## Travel Assistant
26
+
27
+ `travel_assistant/travel_assistant.js` is a larger interactive demo. Treat it as an example app, not part of the npm package release gate.
28
+
29
+ Run from the repository root:
30
+
31
+ ```bash
32
+ node typescript/examples/travel_assistant/travel_assistant.js
33
+ ```
34
+
35
+ Or pass a custom local state root:
36
+
37
+ ```bash
38
+ node typescript/examples/travel_assistant/travel_assistant.js .agentledger-ts
39
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentledger-runtime",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "private": false,
5
5
  "description": "Dependency-free Node/TypeScript-compatible runtime for AgentLedger.",
6
6
  "type": "module",
package/src/cli.js CHANGED
@@ -194,7 +194,7 @@ export function validateFixtures() {
194
194
  }
195
195
 
196
196
  function usage() {
197
- return `AgentLedger TypeScript Runtime 1.0.4\n\nUsage:\n agentledger-ts doctor\n agentledger-ts version\n agentledger-ts quickstart\n agentledger-ts conformance\n agentledger-ts contract validate\n agentledger-ts contract export\n\nProject: https://github.com/yaogdu/AgentLedger`;
197
+ return `AgentLedger TypeScript Runtime 1.0.5\n\nUsage:\n agentledger-ts doctor\n agentledger-ts version\n agentledger-ts quickstart\n agentledger-ts conformance\n agentledger-ts contract validate\n agentledger-ts contract export\n\nProject: https://github.com/yaogdu/AgentLedger`;
198
198
  }
199
199
 
200
200
  export async function runRuntimeSmoke() {
@@ -577,11 +577,11 @@ export async function main(args = process.argv.slice(2)) {
577
577
  return 0;
578
578
  }
579
579
  if (args.length === 1 && args[0] === 'version') {
580
- console.log('agentledger-ts 1.0.4');
580
+ console.log('agentledger-ts 1.0.5');
581
581
  return 0;
582
582
  }
583
583
  if (args.length === 1 && args[0] === 'doctor') {
584
- console.log(JSON.stringify({ language: 'typescript', version: '1.0.4', status: 'ok', runtime_core_parity: true }, null, 2));
584
+ console.log(JSON.stringify({ language: 'typescript', version: '1.0.5', status: 'ok', runtime_core_parity: true }, null, 2));
585
585
  return 0;
586
586
  }
587
587
  if (args.length === 1 && args[0] === 'quickstart') {