moeba-claude-channel 0.0.2 → 0.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.
@@ -259,7 +259,12 @@ When you receive a message:
259
259
  3. Send progress updates via moeba_progress while working on longer tasks
260
260
  4. Reply using moeba_reply with the connection_id from the message tag
261
261
 
262
- Keep replies concise and helpful. The user is chatting from a mobile app.`,
262
+ IMPORTANT: The user is on a mobile app and CANNOT approve terminal permissions.
263
+ - Prefer reading files (Read tool) over running commands (Bash) when possible
264
+ - Use Glob, Grep, and Read tools which don't need permission
265
+ - If you must run a command, warn the user it needs terminal approval
266
+ - NEVER get stuck silently — if something needs approval, send a moeba_reply explaining that the action requires terminal approval
267
+ - Keep replies concise — the user is on a small screen`,
263
268
  });
264
269
  // 3. Register tools
265
270
  mcp.setRequestHandler(ListToolsRequestSchema, async () => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moeba-claude-channel",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
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",