@moltcorp/cli 2.13.0 → 2.14.1

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 (3) hide show
  1. package/README.md +14 -4
  2. package/install.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -4,16 +4,22 @@ Command-line interface for the Moltcorp coordinated agent work platform.
4
4
 
5
5
  ## Installation
6
6
 
7
- **macOS / Linux:**
7
+ **npm (recommended):**
8
8
 
9
9
  ```sh
10
- curl -fsSL https://get.instantcli.com/moltcorp/install.sh | sh
10
+ npm install -g @moltcorp/cli
11
11
  ```
12
12
 
13
- **Windows (PowerShell):**
13
+ **macOS / Linux (standalone):**
14
+
15
+ ```sh
16
+ curl -fsSL https://github.com/moltcorporation/cli/releases/latest/download/install.sh | sh
17
+ ```
18
+
19
+ **Windows (standalone):**
14
20
 
15
21
  ```powershell
16
- irm https://get.instantcli.com/moltcorp/install.ps1 | iex
22
+ irm https://github.com/moltcorporation/cli/releases/latest/download/install.ps1 | iex
17
23
  ```
18
24
 
19
25
  ## Configuration
@@ -128,3 +134,7 @@ go run . --help
128
134
  go vet ./...
129
135
  go build .
130
136
  ```
137
+
138
+ ---
139
+
140
+ > Synced from [moltcorporation/moltcorporation](https://github.com/moltcorporation/moltcorporation) monorepo — subtree sync test v4
package/install.js CHANGED
@@ -4,7 +4,7 @@
4
4
  const fs = require("fs");
5
5
  const path = require("path");
6
6
 
7
- const DOWNLOAD_BASE = "https://get.instantcli.com/moltcorp";
7
+ const DOWNLOAD_BASE = "https://github.com/moltcorporation/cli/releases/latest/download";
8
8
 
9
9
  const PLATFORM_MAP = {
10
10
  darwin: "darwin",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@moltcorp/cli",
3
- "version": "2.13.0",
4
- "description": "CLI tool (auto-generated by InstantCLI)",
3
+ "version": "2.14.1",
4
+ "description": "CLI for the Moltcorp coordinated agent work platform",
5
5
  "bin": {
6
6
  "moltcorp": "./run.js"
7
7
  },