@totalreclaw/totalreclaw 3.3.12-rc.20 → 3.3.12-rc.21
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/SKILL.md +1 -1
- package/dist/index.js +18 -1
- package/dist/tr-cli.js +1 -1
- package/index.ts +21 -1
- package/package.json +2 -2
- package/skill.json +1 -1
- package/tr-cli.ts +1 -1
package/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: totalreclaw
|
|
3
3
|
description: "End-to-end encrypted, decentralized memory for OpenClaw. A native kind:memory provider — recall is automatic via memory_search/memory_get, and facts are captured in the background. Trigger on 'install TotalReclaw', 'set up TotalReclaw', 'restore my recovery phrase', any recall request ('what do you remember about me', 'what's my X'), AND any explicit remember request ('remember X', 'save X')."
|
|
4
|
-
version: 3.3.12-rc.
|
|
4
|
+
version: 3.3.12-rc.21
|
|
5
5
|
author: TotalReclaw Team
|
|
6
6
|
license: MIT
|
|
7
7
|
homepage: https://totalreclaw.xyz
|
package/dist/index.js
CHANGED
|
@@ -3300,7 +3300,24 @@ const plugin = {
|
|
|
3300
3300
|
// JSON output: every subcommand accepts --json and emits a single
|
|
3301
3301
|
// machine-parseable JSON line on stdout (agent-driven use). Plain
|
|
3302
3302
|
// text is for direct user CLI use.
|
|
3303
|
-
//
|
|
3303
|
+
//
|
|
3304
|
+
// rc.20 (#402): the import/upgrade wiring below referenced a bare
|
|
3305
|
+
// `tr` that was never declared in THIS callback scope —
|
|
3306
|
+
// registerOnboardingCli and registerPairCli each declare their own
|
|
3307
|
+
// LOCAL `tr`, invisible here. That undeclared reference threw
|
|
3308
|
+
// `ReferenceError: tr is not defined` the moment OpenClaw ran the
|
|
3309
|
+
// callback, killing EVERY `openclaw totalreclaw <sub>` command
|
|
3310
|
+
// (dead since the 3.3.13 import/upgrade restoration; shipped in
|
|
3311
|
+
// rc.19 + rc.20). The build is `tsc --noCheck`, so the type checker
|
|
3312
|
+
// never caught it. Resolve the command group the same way
|
|
3313
|
+
// registerPairCli does — registerOnboardingCli always created it, so
|
|
3314
|
+
// this find() succeeds; the guard is belt-and-braces.
|
|
3315
|
+
const tr = program.commands.find((c) => c.name() === 'totalreclaw');
|
|
3316
|
+
if (!tr) {
|
|
3317
|
+
api.logger.warn('TotalReclaw: `totalreclaw` CLI group not found after onboarding/pair registration — ' +
|
|
3318
|
+
'skipping import/upgrade wiring. `openclaw totalreclaw import`/`upgrade` will be unavailable.');
|
|
3319
|
+
return;
|
|
3320
|
+
}
|
|
3304
3321
|
const importCmd = tr.command('import')
|
|
3305
3322
|
.description('Import memories from another tool (Mem0, MCP Memory, ChatGPT, Claude, Gemini). ' +
|
|
3306
3323
|
'Subcommands: `import status`, `import abort`.');
|
package/dist/tr-cli.js
CHANGED
|
@@ -51,7 +51,7 @@ const STATE_PATH = CONFIG.onboardingStatePath;
|
|
|
51
51
|
// Auto-synced by skill/scripts/sync-version.mjs from skill/plugin/package.json::version.
|
|
52
52
|
// Do not edit by hand — running tests will catch drift but the publish workflow
|
|
53
53
|
// rewrites this constant at the start of every npm/ClawHub publish.
|
|
54
|
-
const PLUGIN_VERSION = '3.3.12-rc.
|
|
54
|
+
const PLUGIN_VERSION = '3.3.12-rc.21';
|
|
55
55
|
function die(msg, code = 1) {
|
|
56
56
|
process.stderr.write(`tr: ${msg}\n`);
|
|
57
57
|
process.exit(code);
|
package/index.ts
CHANGED
|
@@ -3943,7 +3943,27 @@ const plugin = {
|
|
|
3943
3943
|
// JSON output: every subcommand accepts --json and emits a single
|
|
3944
3944
|
// machine-parseable JSON line on stdout (agent-driven use). Plain
|
|
3945
3945
|
// text is for direct user CLI use.
|
|
3946
|
-
//
|
|
3946
|
+
//
|
|
3947
|
+
// rc.20 (#402): the import/upgrade wiring below referenced a bare
|
|
3948
|
+
// `tr` that was never declared in THIS callback scope —
|
|
3949
|
+
// registerOnboardingCli and registerPairCli each declare their own
|
|
3950
|
+
// LOCAL `tr`, invisible here. That undeclared reference threw
|
|
3951
|
+
// `ReferenceError: tr is not defined` the moment OpenClaw ran the
|
|
3952
|
+
// callback, killing EVERY `openclaw totalreclaw <sub>` command
|
|
3953
|
+
// (dead since the 3.3.13 import/upgrade restoration; shipped in
|
|
3954
|
+
// rc.19 + rc.20). The build is `tsc --noCheck`, so the type checker
|
|
3955
|
+
// never caught it. Resolve the command group the same way
|
|
3956
|
+
// registerPairCli does — registerOnboardingCli always created it, so
|
|
3957
|
+
// this find() succeeds; the guard is belt-and-braces.
|
|
3958
|
+
const tr = program.commands.find((c: any) => c.name() === 'totalreclaw');
|
|
3959
|
+
if (!tr) {
|
|
3960
|
+
api.logger.warn(
|
|
3961
|
+
'TotalReclaw: `totalreclaw` CLI group not found after onboarding/pair registration — ' +
|
|
3962
|
+
'skipping import/upgrade wiring. `openclaw totalreclaw import`/`upgrade` will be unavailable.',
|
|
3963
|
+
);
|
|
3964
|
+
return;
|
|
3965
|
+
}
|
|
3966
|
+
|
|
3947
3967
|
const importCmd = tr.command('import')
|
|
3948
3968
|
.description(
|
|
3949
3969
|
'Import memories from another tool (Mem0, MCP Memory, ChatGPT, Claude, Gemini). ' +
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@totalreclaw/totalreclaw",
|
|
3
|
-
"version": "3.3.12-rc.
|
|
3
|
+
"version": "3.3.12-rc.21",
|
|
4
4
|
"description": "End-to-end encrypted, agent-portable memory for OpenClaw and any LLM-agent runtime. XChaCha20-Poly1305 with protobuf v4 + on-chain Memory Taxonomy v1 (claim / preference / directive / commitment / episode / summary).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"scripts": {
|
|
69
69
|
"build": "rm -rf dist && tsc -p tsconfig.json --noCheck",
|
|
70
70
|
"verify-tarball": "node ../scripts/verify-tarball.mjs",
|
|
71
|
-
"test": "npx tsx batch-gate.test.ts && npx tsx manifest-shape.test.ts && npx tsx config-schema.test.ts && npx tsx config.test.ts && npx tsx relay-headers.test.ts && npx tsx scope-address-visible.test.ts && npx tsx llm-profile-reader.test.ts && npx tsx llm-client.test.ts && npx tsx llm-client-retry.test.ts && npx tsx llm-client-json-mode.test.ts && npx tsx gateway-url.test.ts && npx tsx retype-setscope.test.ts && npx tsx tool-gating.test.ts && npx tsx onboarding-noninteractive.test.ts && npx tsx pair-cli-json.test.ts && npx tsx pair-qr.test.ts && npx tsx pair-remote-client.test.ts && npx tsx pair-http.test.ts && npx tsx pair-http-route-registration.test.ts && npx tsx pair-http-init.test.ts && npx tsx qa-bug-report.test.ts && npx tsx nonce-serialization.test.ts && npx tsx initcode-lifecycle.test.ts && npx tsx phrase-safety-registry.test.ts && npx tsx test_issue_92_onnx_download_ux.test.ts && npx tsx onboard-pair-only.test.ts && npx tsx import-state.test.ts && npx tsx import-time-smoke.test.ts && npx tsx install-staging-cleanup.test.ts && npx tsx partial-install-detection.test.ts && npx tsx install-reload-idempotency.test.ts && npx tsx skill-register.test.ts && npx tsx json-stdout-cleanliness.test.ts && npx tsx url-binding.test.ts && npx tsx fs-helpers.test.ts && npx tsx pair-cli-default-mode.test.ts && npx tsx embedding-fallback-tag.test.ts && npx tsx staging-banner-gate.test.ts && npx tsx restart-auth.test.ts && npx tsx inbound-user-tracker.test.ts && npx tsx register-command-name.test.ts && npx tsx skill-md-native.test.ts &&npx tsx tr-cli-json-output.test.ts && npx tsx import-upgrade-cli.test.ts && npx tsx postinstall-validate.test.ts && npx tsx credential-provider.test.ts && npx tsx memory-runtime.test.ts && npx tsx tools.test.ts && npx tsx register-native.test.ts && npx tsx relay.test.ts && npx tsx vault-crypto.test.ts && npx tsx entry-env.test.ts && npx tsx trajectory-poller.test.ts && npx tsx billing-cache.test.ts",
|
|
71
|
+
"test": "npx tsx batch-gate.test.ts && npx tsx manifest-shape.test.ts && npx tsx config-schema.test.ts && npx tsx config.test.ts && npx tsx relay-headers.test.ts && npx tsx scope-address-visible.test.ts && npx tsx llm-profile-reader.test.ts && npx tsx llm-client.test.ts && npx tsx llm-client-retry.test.ts && npx tsx llm-client-json-mode.test.ts && npx tsx gateway-url.test.ts && npx tsx retype-setscope.test.ts && npx tsx tool-gating.test.ts && npx tsx onboarding-noninteractive.test.ts && npx tsx pair-cli-json.test.ts && npx tsx pair-qr.test.ts && npx tsx pair-remote-client.test.ts && npx tsx pair-http.test.ts && npx tsx pair-http-route-registration.test.ts && npx tsx pair-http-init.test.ts && npx tsx qa-bug-report.test.ts && npx tsx nonce-serialization.test.ts && npx tsx initcode-lifecycle.test.ts && npx tsx phrase-safety-registry.test.ts && npx tsx test_issue_92_onnx_download_ux.test.ts && npx tsx onboard-pair-only.test.ts && npx tsx import-state.test.ts && npx tsx import-time-smoke.test.ts && npx tsx install-staging-cleanup.test.ts && npx tsx partial-install-detection.test.ts && npx tsx install-reload-idempotency.test.ts && npx tsx skill-register.test.ts && npx tsx json-stdout-cleanliness.test.ts && npx tsx url-binding.test.ts && npx tsx fs-helpers.test.ts && npx tsx pair-cli-default-mode.test.ts && npx tsx embedding-fallback-tag.test.ts && npx tsx staging-banner-gate.test.ts && npx tsx restart-auth.test.ts && npx tsx inbound-user-tracker.test.ts && npx tsx register-command-name.test.ts && npx tsx skill-md-native.test.ts &&npx tsx tr-cli-json-output.test.ts && npx tsx import-upgrade-cli.test.ts && npx tsx cli-registercli-scope.test.ts && npx tsx postinstall-validate.test.ts && npx tsx credential-provider.test.ts && npx tsx memory-runtime.test.ts && npx tsx tools.test.ts && npx tsx register-native.test.ts && npx tsx relay.test.ts && npx tsx vault-crypto.test.ts && npx tsx entry-env.test.ts && npx tsx trajectory-poller.test.ts && npx tsx billing-cache.test.ts",
|
|
72
72
|
"smoke:dist": "npx tsx dist-esm-smoke.test.ts",
|
|
73
73
|
"check-scanner": "node ../scripts/check-scanner.mjs",
|
|
74
74
|
"check-version-drift": "node ../scripts/check-version-drift.mjs",
|
package/skill.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "totalreclaw",
|
|
3
|
-
"version": "3.3.12-rc.
|
|
3
|
+
"version": "3.3.12-rc.21",
|
|
4
4
|
"description": "End-to-end encrypted memory for AI agents — portable, yours forever. XChaCha20-Poly1305 E2EE: server never sees plaintext.",
|
|
5
5
|
"author": "TotalReclaw Team",
|
|
6
6
|
"license": "MIT",
|
package/tr-cli.ts
CHANGED
|
@@ -68,7 +68,7 @@ const STATE_PATH = CONFIG.onboardingStatePath;
|
|
|
68
68
|
// Auto-synced by skill/scripts/sync-version.mjs from skill/plugin/package.json::version.
|
|
69
69
|
// Do not edit by hand — running tests will catch drift but the publish workflow
|
|
70
70
|
// rewrites this constant at the start of every npm/ClawHub publish.
|
|
71
|
-
const PLUGIN_VERSION = '3.3.12-rc.
|
|
71
|
+
const PLUGIN_VERSION = '3.3.12-rc.21';
|
|
72
72
|
|
|
73
73
|
function die(msg: string, code = 1): never {
|
|
74
74
|
process.stderr.write(`tr: ${msg}\n`);
|