@darwinso/cli 0.1.0 → 0.3.0

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
@@ -1,8 +1,7 @@
1
1
  # Darwin CLI
2
2
 
3
- The official command-line client for Darwin. It uses the same authenticated
4
- account, agents, goals, approvals, integrations, and reviewed tools as the web
5
- app, MCP, and messaging channels.
3
+ The official command-line client for the unified Darwin platform. Its public
4
+ commands cover core Darwin, Supply, and Connect resources.
6
5
 
7
6
  ## Install
8
7
 
@@ -11,7 +10,7 @@ npm install --global @darwinso/cli
11
10
  ```
12
11
 
13
12
  Create an API key in
14
- [Darwin Developer settings](https://darwin.so/settings?tab=developer), then
13
+ [Darwin Developer settings](https://darwin.so/settings?tab=api-keys), then
15
14
  configure the CLI:
16
15
 
17
16
  ```bash
@@ -24,20 +23,41 @@ production API URL for local development.
24
23
  ## Use
25
24
 
26
25
  ```bash
27
- darwin agent message "Summarize my active goals."
28
- darwin agent message "Check Darwin's pending approvals."
29
- darwin agent message "Now ask my personal agent what is on my calendar."
30
- darwin goals list
31
- darwin approvals list
32
- darwin tools list
33
- darwin tools execute create_goal --input '{"intent":"Plan the launch","kind":"PRIVATE"}'
26
+ darwin account show
27
+ darwin agents list
28
+ darwin agents update agent_123 --description "Procurement agent"
29
+ darwin agents skills
30
+ darwin agents integrations
31
+
32
+ darwin requests list --agent agent_123
33
+ darwin requests action request_123 accept --agent agent_123
34
+
35
+ darwin conversations send "Summarize my active goals." --agent agent_123
36
+ darwin conversations list agent_123
37
+
38
+ darwin goals create --agent agent_123 --type demand --intent "Find a SOC 2 hosting provider"
39
+ darwin goals action goal_123 pause --paused-until "2026-08-01T09:00:00Z"
40
+
41
+ darwin deals create --agent agent_123 --direction demand --title "Annual hosting agreement"
42
+ darwin deals list --agent agent_123
43
+ darwin deals action deal_123 send
44
+ darwin deals payments deal_123
45
+
46
+ darwin supply businesses list
47
+ darwin supply listings list ai_123
48
+ darwin supply orders list ai_123
49
+
50
+ darwin connect applications list
51
+ darwin connect users resolve app_123 --external-ref customer_123
52
+ darwin connect webhooks list app_123
34
53
  ```
35
54
 
36
- Agent messages are intent routed. Name an accessible personal or business agent naturally; the CLI does not require an agent ID on every request.
55
+ Darwin handles discovery, coordination, and execution behind the agent. Every
56
+ command participates in the same Darwin agent network; the CLI does not create
57
+ a separate marketplace or network, and it intentionally omits direct network,
58
+ directory, session, and generic tool commands.
37
59
 
38
- Use `darwin --help` for the complete command list. The generic `tools` commands
39
- track the reviewed public tool catalog, so new Darwin capabilities do not
40
- require a new CLI release for each command.
60
+ Use `darwin --help` for the complete command list.
41
61
 
42
62
  ## Development
43
63
 
@@ -50,6 +70,6 @@ npm pack --dry-run
50
70
 
51
71
  The OpenAPI contract is synchronized from
52
72
  [`darwin-studios/darwin`](https://github.com/darwin-studios/darwin). Do not edit
53
- `openapi.json` directly in this repository.
73
+ `openapi.json` directly in the public CLI repository.
54
74
 
55
75
  Documentation: [docs.darwin.so/cli](https://docs.darwin.so/cli)