content-grade 1.0.15 → 1.0.16

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 StanislavBG
3
+ Copyright (c) 2026 ContentGrade
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/bin/telemetry.js CHANGED
@@ -72,13 +72,13 @@ export function initTelemetry() {
72
72
  return { installId: cfg.installId, isNew: false, optedOut: false };
73
73
  }
74
74
 
75
- // First run — generate anonymous install ID, opt-in by default (like Next.js, Astro)
76
- // Users can opt out: content-grade telemetry off, --no-telemetry, or CONTENT_GRADE_NO_TELEMETRY=1
75
+ // First run — generate anonymous install ID, opt-out by default (privacy-first)
76
+ // Users can opt in: content-grade telemetry on
77
77
  const installId = generateId();
78
78
  saveConfig({
79
79
  installId,
80
80
  installedAt: new Date().toISOString(),
81
- telemetryEnabled: true,
81
+ telemetryEnabled: false,
82
82
  });
83
83
 
84
84
  return { installId, isNew: true, optedOut: false };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "content-grade",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "AI-powered content analysis CLI. Score any blog post, landing page, or ad copy in under 30 seconds — runs on Claude CLI, no API key needed.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -26,13 +26,13 @@
26
26
  "landing-page",
27
27
  "cli"
28
28
  ],
29
- "homepage": "https://github.com/StanislavBG/Content-Grade#readme",
29
+ "homepage": "https://www.npmjs.com/package/content-grade",
30
30
  "repository": {
31
31
  "type": "git",
32
- "url": "git+https://github.com/StanislavBG/Content-Grade.git"
32
+ "url": "git+https://github.com/Content-Grade/Content-Grade.git"
33
33
  },
34
34
  "bugs": {
35
- "url": "https://github.com/StanislavBG/Content-Grade/issues"
35
+ "url": "https://github.com/Content-Grade/Content-Grade/issues"
36
36
  },
37
37
  "license": "MIT",
38
38
  "engines": {