moeba-claude-channel 0.0.7 → 0.0.9
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/.claude-plugin/marketplace.json +15 -0
- package/.claude-plugin/plugin.json +12 -0
- package/.mcp.json +9 -0
- package/README.md +8 -0
- package/package.json +4 -2
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "moeba-marketplace",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "Moeba",
|
|
5
|
+
"email": "hello@moeba.co.za"
|
|
6
|
+
},
|
|
7
|
+
"plugins": [
|
|
8
|
+
{
|
|
9
|
+
"name": "moeba-channel",
|
|
10
|
+
"source": ".",
|
|
11
|
+
"description": "Chat with Claude Code from the Moeba mobile app",
|
|
12
|
+
"version": "0.0.9"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "moeba-channel",
|
|
3
|
+
"description": "Chat with Claude Code from the Moeba mobile app. Two-way bridge that lets you send messages from your phone and get responses from your Claude Code session.",
|
|
4
|
+
"version": "0.0.9",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Moeba",
|
|
7
|
+
"email": "hello@moeba.co.za"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://moeba.co.za",
|
|
10
|
+
"repository": "https://github.com/jaspergreen/moeba-claude-channel",
|
|
11
|
+
"license": "MIT"
|
|
12
|
+
}
|
package/.mcp.json
ADDED
package/README.md
CHANGED
|
@@ -85,6 +85,14 @@ To enable Claude Code to auto-respond to incoming messages:
|
|
|
85
85
|
claude --dangerously-load-development-channels server:moeba
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
+
For fully unattended operation (no permission prompts — Claude can read/write files, run commands, etc.):
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
claude --dangerously-load-development-channels server:moeba --dangerously-skip-permissions
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
> **Warning:** Only use `--dangerously-skip-permissions` in trusted environments. Any message from an authenticated Moeba user can trigger file operations and command execution.
|
|
95
|
+
|
|
88
96
|
## Requirements
|
|
89
97
|
|
|
90
98
|
- [Claude Code](https://claude.ai/code) v2.1.80+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "moeba-claude-channel",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Claude Code channel for Moeba — chat with Claude Code from the Moeba app",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/moeba-channel.js",
|
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
+
".claude-plugin",
|
|
13
|
+
".mcp.json",
|
|
12
14
|
"README.md"
|
|
13
15
|
],
|
|
14
16
|
"scripts": {
|
|
@@ -25,7 +27,7 @@
|
|
|
25
27
|
"license": "MIT",
|
|
26
28
|
"repository": {
|
|
27
29
|
"type": "git",
|
|
28
|
-
"url": "https://github.com/moeba-
|
|
30
|
+
"url": "https://github.com/jaspergreen/moeba-claude-channel"
|
|
29
31
|
},
|
|
30
32
|
"dependencies": {
|
|
31
33
|
"@modelcontextprotocol/sdk": "^1.12.1"
|