@doow/cli 0.1.0 → 0.1.2
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 +60 -0
- package/dist/cli.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,6 +25,66 @@ doow reports expense # generate expense report
|
|
|
25
25
|
doow chat # interactive chat with Derek or Mina
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
## Commands
|
|
29
|
+
|
|
30
|
+
### Identity & setup
|
|
31
|
+
|
|
32
|
+
| Command | Description |
|
|
33
|
+
|---------|-------------|
|
|
34
|
+
| `doow login` | Authenticate (PKCE browser flow or device-code for headless) |
|
|
35
|
+
| `doow logout` | Revoke tokens and clear local credentials |
|
|
36
|
+
| `doow whoami` | Show current user and organization |
|
|
37
|
+
| `doow profiles` | Switch between multiple organizations |
|
|
38
|
+
|
|
39
|
+
### Applications & spend
|
|
40
|
+
|
|
41
|
+
| Command | Description |
|
|
42
|
+
|---------|-------------|
|
|
43
|
+
| `doow apps` | List, inspect, compare, and manage SaaS applications |
|
|
44
|
+
| `doow dashboard` | Spend breakdown, renewal timeline, and key metrics |
|
|
45
|
+
| `doow expenses` | View expenses synced from banking, accounting, or billing integrations |
|
|
46
|
+
| `doow insights` | Surface apps that need attention — underused, overspent, or duplicated |
|
|
47
|
+
| `doow search <query>` | Full-text search across apps, contracts, team members, and more |
|
|
48
|
+
|
|
49
|
+
### Contracts & renewals
|
|
50
|
+
|
|
51
|
+
| Command | Description |
|
|
52
|
+
|---------|-------------|
|
|
53
|
+
| `doow contracts` | Manage PAYG, Enterprise, and subscription contracts — create, update, track renewals |
|
|
54
|
+
| `doow overages` | Track usage overages against contract limits |
|
|
55
|
+
| `doow usage-tuples` | Record metered usage (seats, API calls, storage) against contracts for billing reconciliation |
|
|
56
|
+
|
|
57
|
+
### Licensing
|
|
58
|
+
|
|
59
|
+
| Command | Description |
|
|
60
|
+
|---------|-------------|
|
|
61
|
+
| `doow licenses` | Manage seat-based, usage-based, and prepaid licenses — assign users, track utilization, manage spend pools and credit vintages |
|
|
62
|
+
|
|
63
|
+
### Cards & payments
|
|
64
|
+
|
|
65
|
+
| Command | Description |
|
|
66
|
+
|---------|-------------|
|
|
67
|
+
| `doow cards` | Issue virtual/physical cards, fund, freeze, map to apps, view transactions |
|
|
68
|
+
|
|
69
|
+
### Team & org
|
|
70
|
+
|
|
71
|
+
| Command | Description |
|
|
72
|
+
|---------|-------------|
|
|
73
|
+
| `doow team` | Invite members, manage departments, activate/deactivate users |
|
|
74
|
+
| `doow integrations` | Connect SSO, HRIS, and billing providers — view sync logs, trigger syncs |
|
|
75
|
+
|
|
76
|
+
### Reports
|
|
77
|
+
|
|
78
|
+
| Command | Description |
|
|
79
|
+
|---------|-------------|
|
|
80
|
+
| `doow reports` | Export expense, contract, license, card, and department reports as CSV or PDF — download or email |
|
|
81
|
+
|
|
82
|
+
### AI assistant
|
|
83
|
+
|
|
84
|
+
| Command | Description |
|
|
85
|
+
|---------|-------------|
|
|
86
|
+
| `doow chat` | Interactive chat with Derek (spend analyst) or Mina (procurement advisor) |
|
|
87
|
+
|
|
28
88
|
## MCP server
|
|
29
89
|
|
|
30
90
|
```bash
|
package/dist/cli.cjs
CHANGED
|
@@ -33863,7 +33863,7 @@ async function startStdioServer(options) {
|
|
|
33863
33863
|
await server.connect(transport);
|
|
33864
33864
|
}
|
|
33865
33865
|
|
|
33866
|
-
const VERSION = "0.1.
|
|
33866
|
+
const VERSION = "0.1.2" ;
|
|
33867
33867
|
const ASCII_LOGO = `
|
|
33868
33868
|
_
|
|
33869
33869
|
__| | ___ ___ __ __
|