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 +1 -1
- package/bin/telemetry.js +3 -3
- package/package.json +4 -4
package/LICENSE
CHANGED
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-
|
|
76
|
-
// Users can opt
|
|
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:
|
|
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.
|
|
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://
|
|
29
|
+
"homepage": "https://www.npmjs.com/package/content-grade",
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "git+https://github.com/
|
|
32
|
+
"url": "git+https://github.com/Content-Grade/Content-Grade.git"
|
|
33
33
|
},
|
|
34
34
|
"bugs": {
|
|
35
|
-
"url": "https://github.com/
|
|
35
|
+
"url": "https://github.com/Content-Grade/Content-Grade/issues"
|
|
36
36
|
},
|
|
37
37
|
"license": "MIT",
|
|
38
38
|
"engines": {
|