domani-cli 0.4.46 → 0.4.48
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 +16 -1
- package/dist/domani.cjs +47 -44
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ Agent plugins can use Domani without placing an API key in a prompt, shell
|
|
|
32
32
|
history, or editor configuration:
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
-
domani login
|
|
35
|
+
domani login --surface mcp
|
|
36
36
|
domani mcp serve
|
|
37
37
|
```
|
|
38
38
|
|
|
@@ -50,6 +50,19 @@ domani login --scopes domains:read,search --label "Project agent" --expires-in 8
|
|
|
50
50
|
The approval screen shows the requested access and the resulting credential is
|
|
51
51
|
stored in the keychain without being printed.
|
|
52
52
|
|
|
53
|
+
After login, prove one complete inbound loop before browsing other tools or
|
|
54
|
+
buying a domain:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
domani email create myagent@domani.run
|
|
58
|
+
domani email webhook myagent@domani.run --url https://my-agent.example/webhook
|
|
59
|
+
domani email webhook-test myagent@domani.run
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Use `--surface plugin`, `--surface skill`, or `--surface api` when that is the
|
|
63
|
+
entry point. This keeps activation attribution consistent without exposing a
|
|
64
|
+
credential.
|
|
65
|
+
|
|
53
66
|
This installs the `domani` command. Or run directly with `npx`:
|
|
54
67
|
|
|
55
68
|
```bash
|
|
@@ -102,6 +115,7 @@ domani email forward hello@startup.dev --forward-to me@gmail.com
|
|
|
102
115
|
# CURSOR_AUTH contains the complete value, e.g. "Bearer sender-key"
|
|
103
116
|
domani email webhook hello@startup.dev --url https://myapp.dev/hooks/email \
|
|
104
117
|
--authorization-env CURSOR_AUTH
|
|
118
|
+
domani email webhook-test hello@startup.dev
|
|
105
119
|
|
|
106
120
|
# Provision domain + mailbox + authenticated event webhook in one call.
|
|
107
121
|
# The secret stays in the environment; only its variable name is in argv.
|
|
@@ -152,6 +166,7 @@ domani email read|unread|star|unstar user@domain --message-ids m1,m2
|
|
|
152
166
|
domani email send user@domain Send an email (--to, --subject, --body, --cc, --bcc)
|
|
153
167
|
domani email forward user@domain Forward inbound to a personal address (--forward-to)
|
|
154
168
|
domani email webhook user@domain Forward inbound as JSON (--url, --authorization-env, --api-key-env, --clear-headers)
|
|
169
|
+
domani email webhook-test user@domain Deliver one signed test event to the configured webhook
|
|
155
170
|
domani email setup --domain <domain> Auto-configure MX, SPF, DKIM, DMARC
|
|
156
171
|
domani email status --domain <domain> Check email DNS health
|
|
157
172
|
domani email connect --domain <domain> <provider> Connect external provider (Gmail, Fastmail, Proton)
|