@cardmagic/messages 1.2.1 → 1.3.0
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 -2
- package/dist/index.js +0 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -20,13 +20,25 @@ Fuzzy search and browse Apple Messages (iMessage/SMS) from the command line, as
|
|
|
20
20
|
|
|
21
21
|
## Installation
|
|
22
22
|
|
|
23
|
+
### Homebrew
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
brew install cardmagic/tap/messages
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### npm
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g @cardmagic/messages
|
|
33
|
+
```
|
|
34
|
+
|
|
23
35
|
### Claude Code Plugin (recommended)
|
|
24
36
|
|
|
25
37
|
Install as a plugin to get skills (auto-invoked) and slash commands:
|
|
26
38
|
|
|
27
39
|
```bash
|
|
28
40
|
# Add the marketplace
|
|
29
|
-
claude plugin marketplace add cardmagic/
|
|
41
|
+
claude plugin marketplace add cardmagic/ai-marketplace
|
|
30
42
|
|
|
31
43
|
# Install the plugin
|
|
32
44
|
claude plugin install messages@cardmagic
|
|
@@ -59,7 +71,7 @@ cd messages
|
|
|
59
71
|
make install
|
|
60
72
|
|
|
61
73
|
# Then add as plugin OR MCP server:
|
|
62
|
-
claude plugin marketplace add cardmagic/
|
|
74
|
+
claude plugin marketplace add cardmagic/ai-marketplace
|
|
63
75
|
claude plugin install messages@cardmagic
|
|
64
76
|
# OR
|
|
65
77
|
claude mcp add --transport stdio messages -- messages --mcp
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cardmagic/messages",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"mcpName": "io.github.cardmagic/messages",
|
|
5
5
|
"description": "Fuzzy search and browse Apple Messages/iMessage from CLI or MCP server",
|
|
6
6
|
"license": "MIT",
|
|
@@ -48,15 +48,15 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
51
|
-
"better-sqlite3": "
|
|
52
|
-
"chalk": "5.
|
|
53
|
-
"commander": "
|
|
54
|
-
"minisearch": "7.
|
|
51
|
+
"better-sqlite3": "12.6.2",
|
|
52
|
+
"chalk": "5.6.2",
|
|
53
|
+
"commander": "14.0.3",
|
|
54
|
+
"minisearch": "7.2.0",
|
|
55
55
|
"node-typedstream": "1.4.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@types/better-sqlite3": "7.6.
|
|
59
|
-
"@types/node": "^
|
|
58
|
+
"@types/better-sqlite3": "7.6.13",
|
|
59
|
+
"@types/node": "^25",
|
|
60
60
|
"oxlint": "^1.36.0",
|
|
61
61
|
"typescript": "^5.7.0",
|
|
62
62
|
"vitest": "^4.0.16"
|