@distributionos/cli 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/plan.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@distributionos/cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "DistributionOS repo setup CLI for agent onboarding and first-party analytics.",
5
5
  "homepage": "https://distributionos.dev",
6
6
  "repository": {
package/src/plan.js CHANGED
@@ -311,9 +311,9 @@ function analyticsSummary(analytics) {
311
311
  if (analytics.status === 'enabled') {
312
312
  return `contract ${analytics.contractVersion}; install script in ${analytics.layoutTarget ?? 'reviewed shared layout'}`;
313
313
  }
314
- if (analytics.status === 'disabled') {
315
- return 'tracker is not enabled yet; create tracker in DistributionOS first';
316
- }
314
+ if (analytics.status === 'disabled') {
315
+ return 'tracker will be created or fetched during apply before analytics is installed';
316
+ }
317
317
  return 'contract not fetched; print manual guidance only';
318
318
  }
319
319