domani-cli 0.4.47 → 0.4.49

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 CHANGED
@@ -14,7 +14,7 @@ domani gives you one account and multiple ways in:
14
14
  - **[Web](https://domani.run)** - Dashboard with a full inbox (compose, reply, threads), DNS editor, domain management
15
15
  - **CLI** - This package. Everything the web app does, from your terminal
16
16
  - **[MCP Server](https://domani.run/mcp)** - typed tools for Claude Code, Cursor, Codex, and any MCP-compatible agent
17
- - **[OpenClaw](https://openclaw.com)** - `clawhub install domani`
17
+ - **[OpenClaw](https://openclaw.com)** - `openclaw skills install @gwendall/domani`
18
18
  - **[Agent Skill](https://domani.run/skill.md)** - Step-by-step guide your agent can follow. Install with `npx skills add domani.run`
19
19
  - **[REST API](https://domani.run/docs)** - Direct HTTP access to everything
20
20
 
@@ -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