@cargo-ai/cli 1.0.48 → 1.0.50

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.
Files changed (2) hide show
  1. package/README.md +26 -1
  2. package/package.json +22 -5
package/README.md CHANGED
@@ -21,6 +21,8 @@ Or run once with `npx` without installing:
21
21
  npx @cargo-ai/cli orchestration workflow list
22
22
  ```
23
23
 
24
+ Using a coding agent? Skip the manual setup — see [Agent Skills](#agent-skills) below to have Claude Code, Codex, or Cursor drive this CLI for you.
25
+
24
26
  ## Authentication
25
27
 
26
28
  A single `cargo-ai login` command supports three channels — pass exactly one of `--email`, `--oauth` or `--token`:
@@ -188,12 +190,35 @@ Other release verbs (`list`, `get <uuid>`, `get-deployed`, `get-draft`, `update-
188
190
 
189
191
  ## Agent Skills
190
192
 
191
- [Cargo Skills](https://github.com/getcargohq/cargo-skills) teaches AI coding agents (Claude Code, Cursor, Windsurf, GitHub Copilot, etc.) how to use the Cargo CLI. Install the skill to let your agent build, run, and manage revenue automation workflows programmatically:
193
+ [Cargo Skills](https://github.com/getcargohq/cargo-skills) teaches AI coding agents (Claude Code, Codex, Cursor, Windsurf, GitHub Copilot, Hermes Agent, etc.) how to use this CLI seventeen skills covering lead sourcing, enrichment, email verification, lead scoring, CRM sync, buying-signal monitoring, orchestration, storage, and workspace-as-code.
194
+
195
+ **Let your agent install everything.** Paste this into Claude Code, Codex, or Cursor and it handles the CLI, sign-in, and skills for its own platform:
196
+
197
+ ```
198
+ Install Cargo by following every step in https://api.getcargo.io/agent-install.txt
199
+ ```
200
+
201
+ **Or install manually.** As a plugin (Claude Code, Codex, Cursor — bundles the skills plus approval and session hooks):
202
+
203
+ ```bash
204
+ /plugin marketplace add getcargohq/cargo-skills # Claude Code
205
+ codex plugin marketplace add getcargohq/cargo-skills
206
+ ```
207
+
208
+ As skills only (any [skills.sh](https://skills.sh)-compatible agent):
192
209
 
193
210
  ```bash
194
211
  npx skills add getcargohq/cargo-skills
195
212
  ```
196
213
 
214
+ Pick one channel — installing both duplicates every skill.
215
+
216
+ On [Hermes Agent](https://github.com/NousResearch/hermes-agent), install from its own hub instead:
217
+
218
+ ```bash
219
+ hermes skills install skills-sh/getcargohq/cargo-skills/cargo-gtm
220
+ ```
221
+
197
222
  ## Development
198
223
 
199
224
  ```bash
package/package.json CHANGED
@@ -1,18 +1,35 @@
1
1
  {
2
2
  "name": "@cargo-ai/cli",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
- "description": "Command-line interface for the Cargo API",
6
+ "homepage": "https://getcargo.ai",
7
+ "bugs": {
8
+ "url": "https://github.com/getcargohq/cargo-skills/issues"
9
+ },
10
+ "description": "GTM automation from your terminal or coding agent — build lead lists, enrich and verify contacts, run plays and workflows, query workspace data with SQL, and deploy a whole Cargo workspace as code.",
7
11
  "keywords": [
8
12
  "cargo",
9
13
  "gtm",
14
+ "go-to-market",
10
15
  "revenue",
16
+ "revops",
11
17
  "enrichment",
18
+ "data-enrichment",
19
+ "lead-enrichment",
20
+ "prospecting",
21
+ "email-finder",
22
+ "sales-automation",
23
+ "outbound",
24
+ "crm",
12
25
  "orchestration",
13
26
  "cli",
14
27
  "agent-skills",
15
- "ai-agents"
28
+ "ai-agents",
29
+ "claude-code",
30
+ "cursor",
31
+ "codex",
32
+ "mcp"
16
33
  ],
17
34
  "engines": {
18
35
  "node": ">=22"
@@ -42,11 +59,11 @@
42
59
  "format:check": "prettier --check ."
43
60
  },
44
61
  "dependencies": {
45
- "@cargo-ai/api": "^1.0.57",
62
+ "@cargo-ai/api": "^1.0.58",
46
63
  "@cargo-ai/app-sdk": "^1.0.6",
47
64
  "@cargo-ai/cdk": "^1.0.43",
48
65
  "@cargo-ai/types": "^1.0.56",
49
- "@cargo-ai/worker-sdk": "^1.0.11",
66
+ "@cargo-ai/worker-sdk": "^1.0.12",
50
67
  "@modelcontextprotocol/sdk": "1.29.0",
51
68
  "commander": "^12.1.0",
52
69
  "tsx": "^4.19.2",