agentledger-runtime 1.0.5 → 1.1.0
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 +1 -1
- package/package.json +1 -1
- package/src/cli.js +3 -3
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.
|
|
3
|
+
This directory contains the dependency-free Node/TypeScript-compatible runtime-core baseline for AgentLedger 1.1.0.
|
|
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
|
|
package/package.json
CHANGED
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
|
|
197
|
+
return `AgentLedger TypeScript Runtime 1.1.0\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
|
|
580
|
+
console.log('agentledger-ts 1.1.0');
|
|
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
|
|
584
|
+
console.log(JSON.stringify({ language: 'typescript', version: '1.1.0', status: 'ok', runtime_core_parity: true }, null, 2));
|
|
585
585
|
return 0;
|
|
586
586
|
}
|
|
587
587
|
if (args.length === 1 && args[0] === 'quickstart') {
|