@cargo-ai/cli 1.0.49 → 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.
- package/README.md +26 -1
- package/package.json +5 -1
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
|
|
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,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cargo-ai/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.50",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
|
+
"homepage": "https://getcargo.ai",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/getcargohq/cargo-skills/issues"
|
|
9
|
+
},
|
|
6
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",
|