content-grade 1.0.30 → 1.0.32
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/bin/content-grade.js +5 -3
- package/package.json +1 -1
package/bin/content-grade.js
CHANGED
|
@@ -98,7 +98,7 @@ function incrementUsage() {
|
|
|
98
98
|
|
|
99
99
|
// Upgrade links — Free → Pro → Business → Team
|
|
100
100
|
const UPGRADE_LINKS = {
|
|
101
|
-
free: 'https://
|
|
101
|
+
free: 'https://content-grade.github.io/Content-Grade/#pricing', // Pro $9/mo — pricing page
|
|
102
102
|
pro: 'https://buy.stripe.com/bJefZjafO2Tz36Z2W48k80b', // Business $29/mo
|
|
103
103
|
business: 'https://buy.stripe.com/cNiaEZfA8cu9bDv4088k80c', // Team $79/mo
|
|
104
104
|
};
|
|
@@ -136,7 +136,7 @@ function showFreeTierCTA(count) {
|
|
|
136
136
|
|
|
137
137
|
if (remaining === 0) {
|
|
138
138
|
// Last free run — strong CTA, no escape hatch
|
|
139
|
-
console.log(` ${RD}${B}${count}/${limit} free analyses used —
|
|
139
|
+
console.log(` ${RD}${B}${count}/${limit} free analyses used — limit reached.${R}`);
|
|
140
140
|
blank();
|
|
141
141
|
console.log(` ${WH}Pro removes the cap. Analyze your entire content backlog,${R}`);
|
|
142
142
|
console.log(` ${WH}run it in CI on every draft, batch-score a whole directory.${R}`);
|
|
@@ -144,7 +144,8 @@ function showFreeTierCTA(count) {
|
|
|
144
144
|
console.log(` ${D}Used by 1,100+ developers. $9/mo, cancel anytime.${R}`);
|
|
145
145
|
blank();
|
|
146
146
|
console.log(` ${MG}${B}→ Get Pro: ${CY}${UPGRADE_LINKS.free}${R}`);
|
|
147
|
-
console.log(` ${
|
|
147
|
+
console.log(` ${WH} After purchase → get your key: ${CY}https://content-grade.onrender.com/my-license${R}`);
|
|
148
|
+
console.log(` ${WH} Have a key? ${CY}content-grade activate <key>${R}`);
|
|
148
149
|
} else if (remaining === 1) {
|
|
149
150
|
// 1 run left — tease Pro features
|
|
150
151
|
console.log(` ${YL}${B}${count}/${limit} free analyses used — 1 left.${R}`);
|
|
@@ -243,6 +244,7 @@ function checkFreeTierLimit() {
|
|
|
243
244
|
console.log(` ${D}Used by 1,100+ developers.${R}`);
|
|
244
245
|
blank();
|
|
245
246
|
console.log(` ${MG}${B}→ ${CY}${UPGRADE_LINKS.free}${R}`);
|
|
247
|
+
console.log(` ${D} After purchase → get your key: ${CY}https://content-grade.onrender.com/my-license${R}`);
|
|
246
248
|
console.log(` ${D} Already have a key? ${CY}content-grade activate <key>${R}`);
|
|
247
249
|
hr();
|
|
248
250
|
blank();
|
package/package.json
CHANGED