@memlink/cli 1.0.1 → 1.0.3
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/dist/cli/index.js +4 -21
- package/dist/server/index.js +1 -1
- package/package.json +22 -6
package/dist/cli/index.js
CHANGED
|
@@ -46002,7 +46002,7 @@ function nanoid(size = 21) {
|
|
|
46002
46002
|
}
|
|
46003
46003
|
|
|
46004
46004
|
// src/core/types.ts
|
|
46005
|
-
var MEMLINK_VERSION = "1.0.
|
|
46005
|
+
var MEMLINK_VERSION = "1.0.3";
|
|
46006
46006
|
var DEFAULT_PORT = 4444;
|
|
46007
46007
|
var DEFAULT_HOST = "localhost";
|
|
46008
46008
|
var CONFIG_DIR = ".memlink";
|
|
@@ -79776,7 +79776,7 @@ function copyToClipboard(text) {
|
|
|
79776
79776
|
}
|
|
79777
79777
|
function openUrl(url2) {
|
|
79778
79778
|
const platform = process.platform;
|
|
79779
|
-
const cmd = platform === "darwin" ? "open" : platform === "win32" ?
|
|
79779
|
+
const cmd = platform === "darwin" ? "open" : platform === "win32" ? 'start ""' : "xdg-open";
|
|
79780
79780
|
try {
|
|
79781
79781
|
execSync(`${cmd} "${url2}"`, { stdio: "ignore" });
|
|
79782
79782
|
return true;
|
|
@@ -80046,25 +80046,8 @@ program2.command("skill").description("Install Memlink agent skill for this work
|
|
|
80046
80046
|
console.log();
|
|
80047
80047
|
}
|
|
80048
80048
|
});
|
|
80049
|
-
program2.command("bug").description("Open GitHub to report a bug or send feedback").action(() => {
|
|
80050
|
-
const
|
|
80051
|
-
const template = encodeURIComponent([
|
|
80052
|
-
"**Type:** (Bug Report / Feature Request / Feedback)",
|
|
80053
|
-
"",
|
|
80054
|
-
"**Description:**",
|
|
80055
|
-
"(Write here)",
|
|
80056
|
-
"",
|
|
80057
|
-
"**Steps to reproduce (if bug):**",
|
|
80058
|
-
"1.",
|
|
80059
|
-
"2.",
|
|
80060
|
-
"",
|
|
80061
|
-
"**Expected behavior:**",
|
|
80062
|
-
"",
|
|
80063
|
-
"**Actual behavior:**",
|
|
80064
|
-
""
|
|
80065
|
-
].join(`
|
|
80066
|
-
`));
|
|
80067
|
-
const url2 = `${baseUrl}?body=${template}`;
|
|
80049
|
+
program2.command("bug").description("Open GitHub to report a bug, request a feature, or send feedback").action(() => {
|
|
80050
|
+
const url2 = "https://github.com/rblez/memlink/issues/new/choose";
|
|
80068
80051
|
const small = logoSmall();
|
|
80069
80052
|
if (small)
|
|
80070
80053
|
console.log(`
|
package/dist/server/index.js
CHANGED
|
@@ -70395,7 +70395,7 @@ function nanoid4(size = 21) {
|
|
|
70395
70395
|
}
|
|
70396
70396
|
|
|
70397
70397
|
// src/core/types.ts
|
|
70398
|
-
var MEMLINK_VERSION = "1.0.
|
|
70398
|
+
var MEMLINK_VERSION = "1.0.3";
|
|
70399
70399
|
var DEFAULT_PORT = 4444;
|
|
70400
70400
|
var DEFAULT_HOST = "localhost";
|
|
70401
70401
|
var CONFIG_DIR = ".memlink";
|
package/package.json
CHANGED
|
@@ -1,24 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memlink/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Memlink — Universal memory async and organized for AI agents. Self hosted, Fast, Organized.",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"memory",
|
|
8
|
+
"ai",
|
|
9
|
+
"agents",
|
|
10
|
+
"modelcontextprotocol",
|
|
11
|
+
"memlink",
|
|
12
|
+
"cli",
|
|
13
|
+
"llm"
|
|
14
|
+
],
|
|
6
15
|
"license": "MIT",
|
|
7
16
|
"private": false,
|
|
8
17
|
"type": "module",
|
|
9
|
-
"files": [
|
|
18
|
+
"files": [
|
|
19
|
+
"dist/cli",
|
|
20
|
+
"dist/server",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
10
24
|
"main": "./dist/cli/index.js",
|
|
11
|
-
"publishConfig": {
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
12
28
|
"repository": {
|
|
13
29
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/rblez/memlink.git"
|
|
30
|
+
"url": "git+https://github.com/rblez/memlink.git"
|
|
15
31
|
},
|
|
16
32
|
"bugs": {
|
|
17
33
|
"url": "https://github.com/rblez/memlink/issues"
|
|
18
34
|
},
|
|
19
35
|
"homepage": "https://rblez.com/memlink",
|
|
20
36
|
"bin": {
|
|
21
|
-
"memlink": "
|
|
37
|
+
"memlink": "dist/cli/index.js"
|
|
22
38
|
},
|
|
23
39
|
"exports": {
|
|
24
40
|
".": {
|