@ectplsm/relic 0.1.0 → 0.1.1
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 +14 -22
- package/dist/interfaces/cli/index.js +0 -0
- package/dist/interfaces/mcp/index.js +0 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -53,10 +53,7 @@ relic gemini --engram motoko
|
|
|
53
53
|
## Installation
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
|
|
57
|
-
cd relic
|
|
58
|
-
npm install
|
|
59
|
-
npm link
|
|
56
|
+
npm install -g @ectplsm/relic
|
|
60
57
|
```
|
|
61
58
|
|
|
62
59
|
## Quick Start
|
|
@@ -100,24 +97,19 @@ Relic also runs as an [MCP](https://modelcontextprotocol.io/) server, allowing a
|
|
|
100
97
|
|
|
101
98
|
### Setup (Claude Desktop)
|
|
102
99
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
3. Restart Claude Desktop.
|
|
100
|
+
Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
|
|
101
|
+
|
|
102
|
+
```json
|
|
103
|
+
{
|
|
104
|
+
"mcpServers": {
|
|
105
|
+
"relic": {
|
|
106
|
+
"command": "relic-mcp"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
Restart Claude Desktop.
|
|
121
113
|
|
|
122
114
|
### Available Tools
|
|
123
115
|
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ectplsm/relic",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "PROJECT RELIC — Engram injection system for AI constructs",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"type": "module",
|
|
18
18
|
"main": "dist/interfaces/cli/index.js",
|
|
19
19
|
"bin": {
|
|
20
|
-
"relic": "dist/interfaces/cli/index.js"
|
|
20
|
+
"relic": "dist/interfaces/cli/index.js",
|
|
21
|
+
"relic-mcp": "dist/interfaces/mcp/index.js"
|
|
21
22
|
},
|
|
22
23
|
"scripts": {
|
|
23
24
|
"dev:cli": "tsx src/interfaces/cli/index.ts",
|