@contextmirror/claude-memory 0.4.4 → 0.4.6
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/README.md +4 -4
- package/dist/cli.js +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/license/index.js +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@contextmirror/claude-memory)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
[](https://nodejs.org/)
|
|
6
|
-
[](https://discord.gg/JBpsSFB7EQ)
|
|
7
7
|
|
|
8
8
|
Cross-project memory for Claude Code. Give Claude awareness of ALL your projects, not just the one you're in.
|
|
9
9
|
|
|
@@ -268,7 +268,7 @@ claude-memory include my-secret-project
|
|
|
268
268
|
|
|
269
269
|
## Pro Features
|
|
270
270
|
|
|
271
|
-
Activate with `claude-memory activate <key>`. Get a license at https://
|
|
271
|
+
Activate with `claude-memory activate <key>`. Get a license at https://contextmirror.lemonsqueezy.com
|
|
272
272
|
|
|
273
273
|
| Feature | Description |
|
|
274
274
|
|---------|-------------|
|
|
@@ -307,7 +307,7 @@ No. All data stays in `~/.claude-memory/` on your machine. Nothing is sent to an
|
|
|
307
307
|
|
|
308
308
|
Join our Discord for feedback, feature requests, and support:
|
|
309
309
|
|
|
310
|
-
[](https://discord.gg/JBpsSFB7EQ)
|
|
311
311
|
|
|
312
312
|
## License
|
|
313
313
|
|
|
@@ -319,4 +319,4 @@ Nathan (with Claude as co-developer)
|
|
|
319
319
|
|
|
320
320
|
---
|
|
321
321
|
|
|
322
|
-
*[GitHub](https://github.com/
|
|
322
|
+
*[GitHub](https://github.com/contextmirror/claude-memory)*
|
package/dist/cli.js
CHANGED
|
@@ -445,7 +445,7 @@ program
|
|
|
445
445
|
}
|
|
446
446
|
else {
|
|
447
447
|
console.log(` Status: ${status.expiresAt ? 'Expired' : 'Not activated'}`);
|
|
448
|
-
console.log('\n Upgrade at https://
|
|
448
|
+
console.log('\n Upgrade at https://contextmirror.lemonsqueezy.com');
|
|
449
449
|
console.log(' Or run: claude-memory activate <your-key>');
|
|
450
450
|
}
|
|
451
451
|
});
|
package/dist/constants.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export declare const STALE_DATA_HOURS = 24;
|
|
|
7
7
|
export declare const STALE_PROJECT_DAYS = 7;
|
|
8
8
|
export declare const MAX_README_CHARS = 3000;
|
|
9
9
|
export declare const MAX_DESCRIPTION_CHARS = 200;
|
|
10
|
-
export declare const PRODUCT_URL = "https://
|
|
10
|
+
export declare const PRODUCT_URL = "https://contextmirror.lemonsqueezy.com";
|
|
11
11
|
export declare const DISCORD_URL = "https://discord.gg/JBpsSFB7EQ";
|
|
12
12
|
export declare const NPM_REGISTRY_URL = "https://registry.npmjs.org/@contextmirror/claude-memory";
|
|
13
13
|
export declare const LEMONSQUEEZY_VALIDATE_URL = "https://api.lemonsqueezy.com/v1/licenses/validate";
|
package/dist/constants.js
CHANGED
|
@@ -11,7 +11,7 @@ export const STALE_PROJECT_DAYS = 7;
|
|
|
11
11
|
export const MAX_README_CHARS = 3000;
|
|
12
12
|
export const MAX_DESCRIPTION_CHARS = 200;
|
|
13
13
|
// URLs
|
|
14
|
-
export const PRODUCT_URL = 'https://
|
|
14
|
+
export const PRODUCT_URL = 'https://contextmirror.lemonsqueezy.com';
|
|
15
15
|
export const DISCORD_URL = 'https://discord.gg/JBpsSFB7EQ';
|
|
16
16
|
export const NPM_REGISTRY_URL = 'https://registry.npmjs.org/@contextmirror/claude-memory';
|
|
17
17
|
export const LEMONSQUEEZY_VALIDATE_URL = 'https://api.lemonsqueezy.com/v1/licenses/validate';
|
package/dist/license/index.js
CHANGED
|
@@ -124,7 +124,7 @@ export async function activateLicense(key) {
|
|
|
124
124
|
if (!validateKeyFormat(normalizedKey)) {
|
|
125
125
|
return {
|
|
126
126
|
valid: false,
|
|
127
|
-
error: 'Invalid license key format. Get your key from https://
|
|
127
|
+
error: 'Invalid license key format. Get your key from https://contextmirror.lemonsqueezy.com',
|
|
128
128
|
};
|
|
129
129
|
}
|
|
130
130
|
let email;
|
|
@@ -206,6 +206,6 @@ export function getLicenseStatus() {
|
|
|
206
206
|
export function getProFeatureMessage(featureName) {
|
|
207
207
|
return `${featureName} is a Pro feature.
|
|
208
208
|
|
|
209
|
-
Upgrade at https://
|
|
209
|
+
Upgrade at https://contextmirror.lemonsqueezy.com or activate your license:
|
|
210
210
|
claude-memory activate <your-key>`;
|
|
211
211
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contextmirror/claude-memory",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"description": "Cross-project memory for Claude Code - know about all your projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "git+https://github.com/
|
|
12
|
+
"url": "git+https://github.com/contextmirror/claude-memory.git"
|
|
13
13
|
},
|
|
14
14
|
"bugs": {
|
|
15
|
-
"url": "https://github.com/
|
|
15
|
+
"url": "https://github.com/contextmirror/claude-memory/issues"
|
|
16
16
|
},
|
|
17
|
-
"homepage": "https://claude-memory
|
|
17
|
+
"homepage": "https://github.com/contextmirror/claude-memory",
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">=18.0.0"
|
|
20
20
|
},
|