agenticmail 0.5.41 → 0.5.42
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 +33 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -421,6 +421,39 @@ AGENTICMAIL_DOMAIN=yourdomain.com # Custom domain
|
|
|
421
421
|
|
|
422
422
|
---
|
|
423
423
|
|
|
424
|
+
## Troubleshooting
|
|
425
|
+
|
|
426
|
+
### OpenClaw plugin ID mismatch warning
|
|
427
|
+
|
|
428
|
+
If you see this warning when starting the OpenClaw gateway:
|
|
429
|
+
|
|
430
|
+
```
|
|
431
|
+
plugin id mismatch (manifest uses "agenticmail", entry hints "openclaw")
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
This is harmless. OpenClaw infers the plugin ID from the npm package name (`@agenticmail/openclaw`) but the manifest declares `"id": "agenticmail"`. The plugin loads and works correctly.
|
|
435
|
+
|
|
436
|
+
### OpenClaw plugin path not found
|
|
437
|
+
|
|
438
|
+
If OpenClaw reports the plugin path not found, the `plugins.load.paths` in `~/.openclaw/openclaw.json` points to the wrong location. Find the correct path:
|
|
439
|
+
|
|
440
|
+
```bash
|
|
441
|
+
npm prefix -g
|
|
442
|
+
# Plugin is at: <prefix>/lib/node_modules/@agenticmail/openclaw
|
|
443
|
+
```
|
|
444
|
+
|
|
445
|
+
Update the path in `~/.openclaw/openclaw.json` accordingly.
|
|
446
|
+
|
|
447
|
+
### `agenticmail: command not found`
|
|
448
|
+
|
|
449
|
+
If you installed locally with `npm install agenticmail`, use `npx agenticmail` instead. For a global install:
|
|
450
|
+
|
|
451
|
+
```bash
|
|
452
|
+
npm install -g agenticmail
|
|
453
|
+
```
|
|
454
|
+
|
|
455
|
+
---
|
|
456
|
+
|
|
424
457
|
## License
|
|
425
458
|
|
|
426
459
|
[MIT](./LICENSE) - Ope Olatunji ([@ope-olatunji](https://github.com/ope-olatunji))
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agenticmail",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "Email and SMS infrastructure for AI agents
|
|
3
|
+
"version": "0.5.42",
|
|
4
|
+
"description": "Email and SMS infrastructure for AI agents — the first platform to give agents real email addresses and phone numbers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|