@lorekit/cli 1.17.0 → 1.17.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lorekit/cli",
3
- "version": "1.17.0",
3
+ "version": "1.17.1",
4
4
  "description": "Install the LoreKit shared-memory skill and run health checks for the LoreKit MCP server.",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/doctor.mjs CHANGED
@@ -82,8 +82,9 @@ export async function doctor(args) {
82
82
  // 5. Scope.
83
83
  const scope = deriveScope(root);
84
84
  if (scope.hasRemote) {
85
+ log('');
85
86
  record('info', 'read scope', scope.readOrder.join(' → '));
86
- record('info', 'write scope', `${scope.repoScope} (default for "went wrong" memories)`);
87
+ record('info', 'write scope', `${scope.repoScope} (default write target)`);
87
88
  } else {
88
89
  record('warn', 'scope', 'no git remote here — memories fall back to global');
89
90
  }
package/src/telemetry.mjs CHANGED
@@ -32,7 +32,7 @@ import { readLorekitJson } from './config.mjs';
32
32
  // (empty in the source tree, so default export stays off until built/injected).
33
33
  const DEFAULT_ENDPOINT = 'https://ingress.europe-west4.gcp.dash0-dev.com';
34
34
  const DEFAULT_TOKEN = TELEMETRY_TOKEN; // injected from LOREKIT_TELEMETRY_TOKEN at publish
35
- const DEFAULT_DATASET = 'lorekit-cli';
35
+ const DEFAULT_DATASET = '';
36
36
 
37
37
  // Flags worth counting (e.g. how many installs are --global). Bounded on
38
38
  // purpose: only these booleans are ever attached, never free-form values.