@sourcegraph/amp 0.0.1764749493-g6c1751 → 0.0.1764759077-g35efa6
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 +12 -6
- package/dist/main.js +929 -951
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,19 +24,25 @@ Amp's agent has 2 modes:
|
|
|
24
24
|
|
|
25
25
|
See the [Amp Owner's Manual](https://ampcode.com/manual) and [Switch to Amp](https://ampcode.com/manual/switch-from) for more information, and see [ampcode.com/news](https://ampcode.com/news) for what we've recently shipped.
|
|
26
26
|
|
|
27
|
-
## Installation
|
|
27
|
+
## Recommended Installation
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
We recommend using our install script for macOS, Linux and WSL. It supports auto-updating and fast launch via Bun:
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
|
|
32
|
+
curl -fsSL https://ampcode.com/install.sh | bash
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Alternative Installation (npm)
|
|
36
|
+
|
|
37
|
+
If necessary, you can install via npm instead:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm install -g @sourcegraph/amp@latest
|
|
33
41
|
# or
|
|
34
42
|
yarn global add @sourcegraph/amp@latest
|
|
35
|
-
# or
|
|
36
|
-
npm install -g @sourcegraph/amp@latest
|
|
37
43
|
```
|
|
38
44
|
|
|
39
|
-
|
|
45
|
+
Or run without installing:
|
|
40
46
|
|
|
41
47
|
```bash
|
|
42
48
|
npx -y @sourcegraph/amp@latest
|